Forum: Visual Basic 4 / 5 / 6 May 1st, 2009 |
| Replies: 4 Views: 478 & "'" & stafid.Text & "', " _
& "'" & rooid.Text & "', " _
& "'" & date1.Text & "', " _
& "'" & time1.Text & "', " _
& "'" & areq.Text & "')"
... |
Forum: Visual Basic 4 / 5 / 6 May 1st, 2009 |
| Replies: 0 Views: 285 Am trying to print a report and also save it to a snapshot.
The problem is that it runs off a query which works off two date fields (user entry).
When I run it, it asks for the date twice,... |
Forum: Visual Basic 4 / 5 / 6 Dec 15th, 2008 |
| Replies: 3 Views: 846 Thanks will try both
Should have explained what I was doing better.
Am running an update system over network to 2 remote TabletPC (when they get connected) been trying to show what was going... |
Forum: Visual Basic 4 / 5 / 6 Dec 11th, 2008 |
| Replies: 1 Views: 761 Public sfso
Set sfso = CreateObject("Scripting.FileSystemObject")
If sfso.FileExists(RemoteDatabase) Then
If dbRemoteDatabase.State = 0 Then
dbRemoteDatabase.Open "Provider =... |
Forum: Visual Basic 4 / 5 / 6 Dec 11th, 2008 |
| Replies: 0 Views: 389 is there a way to disconnect a user/s from a database and/or display a msgbox to the users telling them that there are about to be disconnected?
ms access 2003 |
Forum: Visual Basic 4 / 5 / 6 Dec 11th, 2008 |
| Replies: 3 Views: 846 Is there a way to enter a pause state between commands running? |
Forum: Visual Basic 4 / 5 / 6 Dec 5th, 2008 |
| Replies: 3 Views: 2,522 Not completely sure what you exactly want.
Here is my code to disable some user input and enable other
Instead of keypress use keydown
Select Case KeyCode
Case 0 to 7
KeyCode = 0
Case... |
Forum: Visual Basic 4 / 5 / 6 Dec 4th, 2008 |
| Replies: 1 Views: 761 Try to do 3 things.
The 1st see if a database exists in a certain location:
if it dose then connect.
else show error message.
The 2nd see if the database is open:
if open the display a... |