Hi there community! I'm having a little problem with two scripts that seem to be conflicting with each other inside a web page. whicever one I load first will work but the second wont - I skimmed through then to see if there were any conflicting var or function names but couldn't find anything... any suggestions? This is an analog clock script inside an absolute positioned div:
vafo
Posts
-
Javascript conflicts -
DLL based authentication on Classic ASPHello! I have been asked to develop user authentication for a lan site based on a certain dll that will be provided - I have no ideia where to start. Would someone be kind enough to provide any tips or tutorials or examples regarding dll based authentication in classic ASP? I reckon its a pretty vague question, but I've been looking into ISAPI based authentication and I still have no clue. Thanks in advance,
-
SQLCE Connection ProblemsCan't build, unrecogized escape sequence error after each dash...seen this before..
string dbconn = "@C:\\Documents and Settings\\Vasco\\Ambiente de trabalho\\Serviços de Informática\\ChokweMobile\\ChokweDB.sdf"; SqlCeConnection conn = new SqlCeConnection("Data Source=" + dbconn);
And after some correcting... <pre> string dbconn = @"C:\Documents and Settings\Vasco\Ambiente de trabalho\Serviços de Informática\ChokweMobile\ChokweDB.sdf"; SqlCeConnection conn = new SqlCeConnection("Data Source=" + dbconn); Returns Path not valid. And...
string dbconn = @".\ChokweDB.sdf";
The database file cannot be found. Check the path to the database. [ Data Source = .\ChokweDB.sdf ] The database IS o the same folder as the application - and it really IS there and the name is spelled correctly..
modified on Thursday, April 23, 2009 7:10 AM
-
SQLCE Connection ProblemsHello! I am facing some problems on the development of my mobile simlpe application connecting to an SQLCE database. After searching a bunch of sites, tutorials and Q&A's my code seems to be correct and I can't figure out what's going wrong. This is my code:
SqlCeConnection conn = new SqlCeConnection("Data Source=ChokweDB.sdf"); SqlCeCommand insertForm1 = new SqlCeCommand("INSERT INTO Form1Table (p1,p2,p3,p4,entrevistador,data) values ('" + p1.Text + "','" + p2.Text + "','" + p3Value + "','" + p4Value + "','" + txtEntrevistador.Text + "','" + txtData.Text + "')", conn); conn.Open(); insertForm1.ExecuteNonQuery(); conn.Close();
My database is placed in the home directory of the application (filename ChokweDB.sdf). When I run the code, MVS2008 will simply not find the database:
The database file cannot be found. Check the path to the database. [ Data Source = ChokweDB.sdf ]
Why oh why? What am I missing?
-
Radio Buttons Styling (Windows Mobile 6)Placing them inside a panel was the answer. Thanks.
-
Radio Buttons Styling (Windows Mobile 6)I have a very basic question but have lost some time wondering and digging the webs for an answer already - should be extra easy to answer tho: I am developing a windows form for Windows Mobile 6 in C#, using Visual Studio 2008. I have two sets of radiobuttons in a form, and I want to separate them. I have learned I should use the WS_GROUP option, but the dumb question is... "Where/how do I set this WS_GROUP option?" Appreciate some reply - thank you for your attention