Forum: Visual Basic 4 / 5 / 6 Sep 17th, 2008 |
| Replies: 14 Views: 1,886 Please give the line of code where u r connecting to the database |
Forum: PHP Sep 8th, 2008 |
| Replies: 7 Views: 683 Having a dot in the username will not work because most SQL languages use the dot as a relation. So an username like "Jesus.Christ" will try to create a table called 'Christ" in the schema "Jesus".... |
Forum: ASP Jul 1st, 2008 |
| Replies: 5 Views: 1,351 As I had already specified, use Google to search for free Editors. As for ASP tutorials, there are lots of sites offering those for free. You can try http://www.w3schools.com/asp/ for example.
I... |
Forum: ASP Jun 30th, 2008 |
| Replies: 5 Views: 1,351 What sort of tools are you looking for ? Editors / IDEs ? Try Google. Of course you can write ASP in Notepad. I personally use MS InterDev, so if you have it you can try it. |
Forum: Visual Basic 4 / 5 / 6 May 9th, 2007 |
| Replies: 5 Views: 3,043 I am not sure if there is a direct way of getting the path of another app. One way could be having the 2nd app write it's path somewhere (in a text file for example) when it's launched. Then the 1st... |
Forum: ASP Apr 30th, 2007 |
| Replies: 7 Views: 3,908 Why aren't you checking the confirmation before going to the delete page ? I presume in the page that offers both delete and update, you have 2 buttons for delete and update. So when the user clicks... |
Forum: ASP Apr 29th, 2007 |
| Replies: 7 Views: 3,908 Shouldn't it be Request.Querystring("act") ? |
Forum: Visual Basic 4 / 5 / 6 Oct 22nd, 2006 |
| Replies: 3 Views: 8,675 Do you know how to connect to databases (Access in this case) and read data ? If you don't, u should read that first. This login screen is quite easy to do, if you have that knowledge |
Forum: Visual Basic 4 / 5 / 6 Oct 18th, 2006 |
| Replies: 4 Views: 1,585 What is "My" ? As far as I know there is no in-built VB object called "My". If you are trying to use an object you created then you have to include the reference to that object.
For example If you... |
Forum: Visual Basic 4 / 5 / 6 Oct 8th, 2006 |
| Replies: 2 Views: 1,643 difficult to say without actually seeing the problem. Does the form have any code in the form_load section ? if yes, could u post it here ? |
Forum: Visual Basic 4 / 5 / 6 Sep 25th, 2006 |
| Replies: 4 Views: 1,951 Remove the Single Quotes from the criteria expression. It should be
Let strsql = "SELECT * from bidtest where bidnumber = " & CInt(temp)
Single Quotes are used for String & Date Datatypes,... |
Forum: Visual Basic 4 / 5 / 6 Apr 20th, 2006 |
| Replies: 9 Views: 6,914 If u are using the filenames of the mp3 files, u can try the ShellExecute API function. It will open the file named in the arguement list wih the default application for the file. |