| Thread | Last Post | Replies |
|
| Programming code changes between Access 97 and later versions | 03 May 2006 07:00 GMT | 1 |
I am currently trying to learn VBA from a book called Access VBA programming for Dummies which has been written with Access 2000 , 2003 users in mind. I am using Access 97. While most of the code seems to be the same, I have hit a problem with a reference to the current database. ...
|
| Subform referencing issue and Access 2003 Security | 03 May 2006 03:10 GMT | 4 |
This is a very strange issue, but I'll try to be clear. I have a main form with two separate subforms. (The subforms are not nested.) Each subform is in datasheet view because it should look like spreadsheet data. The main form is in standard form view.
|
| linked table/adding a field | 03 May 2006 03:02 GMT | 3 |
My MS Access application is the front end to a SQL database. I add a field to the SQL table (1 bit). Then, in MS Access, I refresh the links through table manager. Sounds correct, but non of the previous data can be changed!!!
|
| Using Seek Method in a linked table | 03 May 2006 02:51 GMT | 9 |
I have a dialog box that is supposed to find records in a table that match records in another table and update one of three dates based on the selection made in the dialog. I'm using the Seek method in VBA. However, when I split the database, this no longer works, as Seek ...
|
| Database datatype | 03 May 2006 00:01 GMT | 1 |
Access 2003: If I wanted to create an object variable as a reference object to the CurrentDb object property of the Application object, other than the generic Object datatype, is there a specific datatype that will work?
|
| Compact Databases | 02 May 2006 23:58 GMT | 1 |
I find myself in a situtation. I have about a million backend .MDB's and all of them need to be compacted. Let it be known that I am being lazy. I really don't wont to write a compact program if someone has allready done it and is will to share. :)
|
| Navigating to a directory | 02 May 2006 23:56 GMT | 1 |
I use this code to allow my user to select a specific file. Dim dlg As Variant Dim stPath As String ' Browse to the file to attach.
|
| Is it possible to get the userID of Windows 2000 Pro? | 02 May 2006 23:55 GMT | 1 |
I am making up a program where i use an userID and i need the userID of the session in Windows 2000 Pro to use it in my program. I wanted to know if it's possible with Visual Basic to get that or if there is a specific reference to add to enter in the system.
|
| calendars | 02 May 2006 22:50 GMT | 1 |
I have been asked to create a program to monitor holidays and sick leave. The user wants to be able to call up a screen that shows a calendar type screen with every day of the year on it, and a code input for the days the staff member was off (ie AL for annual leave).
|
| VB record set not refreshing with new id focus. | 02 May 2006 22:44 GMT | 6 |
I have a three forms 1 (main), 2 (sub), 3(subsub). My third level sub form gets its data from a query which gets an id passed in by the 2nd level sub form. I'm having problems with getting this query to refresh or reload when the id has changed. My query for the 3rd level ...
|
| Confusing result | 02 May 2006 20:28 GMT | 1 |
I am trying to get the following to run: Dim Directors As ADODB.Recordset Set Directors = New ADODB.Recordset Directors.Open "tbl_Directors", CurrentProject.Connection, adOpenStatic
|
| Modifying Existing VBA code programatically | 02 May 2006 20:26 GMT | 2 |
Is there a means up updating VBA code programatically (i.e.: using a sub linked to a control's click event, to modify an existing function)? I'm trying to create a change password form that modifies an If..Then statement in my password verification function. For example, in the ...
|
| compile error: label not defined | 02 May 2006 20:16 GMT | 3 |
I have a compile error I can't understand. I placed >< around the line that the debugger highlights. Any help is greatly appreciated - THANKS! Private Sub Country_Region_DblClick(Cancel As Integer) On Error GoTo Err_Country_Region_DblClick
|
| Round() Function not returning exepcted results | 02 May 2006 18:28 GMT | 4 |
OS:WinXP Access 2k3 (2k file format) Im trying to round currency using the Round() function for example: If Rst_Inventory_Master![Taxable-Burlington] = True Then
|
| Importing data from file | 02 May 2006 17:29 GMT | 1 |
I have tracking devices fitted to the company's fleet of vehicles. They write data to a .pos file. The .pos file consists of a zero terminated string containing the position info for every point. These are stored at 128 byte intervals within the file.
|