Forum: Visual Basic 4 / 5 / 6 Sep 17th, 2008 |
| Replies: 14 Views: 1,867 Please give the line of code where u r connecting to the database |
Forum: Visual Basic 4 / 5 / 6 May 9th, 2007 |
| Replies: 5 Views: 2,997 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: Visual Basic 4 / 5 / 6 Oct 22nd, 2006 |
| Replies: 3 Views: 8,545 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,578 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,637 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,921 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,823 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. |