| Thread | Last Post | Replies |
|
| How to copy linked table to a different database as a local table? | 07 Oct 2005 20:19 GMT | 4 |
I'm fairly new to VBA and am getting nowhere. Performing the task manually provides options for linked, local, structure only etc., but within VBA (using DoCmd.CopyObject) all I seem able to do is create another linked table.
|
| Create a recordset | 07 Oct 2005 15:58 GMT | 3 |
The code below I use to output a field of data as I build it into a SQL INSERT statement. When the original table is updated (tPath Field) it is OK, but when inserting tPath via SQL, after the string gets to 188 charactors it exports garbage like this: 颼ᩢǡĀ退ꝲ壡锖ϡĀ᠀怈颼ᩢǡĀ .
|
| Using calculated query field in Recordset | 07 Oct 2005 15:53 GMT | 5 |
Is it possible to reference a calculated field in a recordset? Here is the code i have. I have a query that searches the email body field and gets a string from that field. So the only true field in the query is [body]. However, the text
|
| Can "Null" values be inserted into a table? | 07 Oct 2005 15:41 GMT | 15 |
When the following VBA Code is executed I get a run-time error: strSQL = "Insert Into myTable Values (" & _ Chr$(34) & rst.Fields(0) & Chr$(34) & ", " & _ rst.Fields(1) & ")"
|
| treeView key change tracking | 07 Oct 2005 14:29 GMT | 10 |
I am using a TreeView object to show a Bill of Materials and to output the views path to excel for analysis. TreeView does not allow you to use the same key twice in a veiw. My key is created by concatenating "a" to my part key (this is because treeveiw keys
|
| Toggle Breakpoints not working | 07 Oct 2005 13:24 GMT | 3 |
For some reason, if I insert a breakpoint the code does not stop at breakpoint, as VBA usually does. Does anyone know of a setting I must have inadvertantly changed? Also, in the same database, if an error occurs in the underlying code of a
|
| Bookmark/cmdDelete Record in a Sub-Form | 07 Oct 2005 13:07 GMT | 2 |
Hi; It is time to overcome this obstacle. Have an sfrm, (datasheet), that records what a customer purchases; both inventory items and services. The user selects either inventory item or
|
| VBA Controlled fields on a report | 07 Oct 2005 03:47 GMT | 3 |
I'm trying to build a report where some fields are created on the fly using some vba. I've tried using textboxes and labels, but I don't seem to be able to modify either's values from vba code. How do I do this? Thanks,
|
| How do I translate this into a connection string? | 07 Oct 2005 03:31 GMT | 2 |
I need to connect to a remote DB so I can make a report making app. I called my IT people for a connection string and after a month of pulling teeth and twisting arms, I finally got this .ini file from them that might be useful or it might not. I cant seem to figure out whats my ...
|
| MS Access 2000 and MS Access XP | 07 Oct 2005 02:21 GMT | 1 |
I have an application in VB 6.0 that uses an MS Access 2000 database. The application is used for Data Entry, Modifications and maintenance. Some reports were generated using ASP from the said database, that were made available through the application as well as Intranet.
|
| tabbing does not seem to work | 07 Oct 2005 01:31 GMT | 7 |
I have an interactive form that gathers information from the user. The questions change depending on the previous answers, so upcoming questions are hidden until needed. My problem is the following: on the 'lostfocus' event of each control I have
|
| automatic update of database over internet | 07 Oct 2005 00:32 GMT | 4 |
I have a split, secured, multiuser db running with the AutoFEupdater. I regularly send updates of the FE to my contact person on site via email and he places the new FE in the right folder on the network drive. I think it would be cool to have the FE update itself via the internet ...
|
| Making calculated Negative numbers a different color in access 200 | 07 Oct 2005 00:28 GMT | 3 |
I have a MSAccess 2003 database which has a calculated field. This field may return a negative number. Is it possible to have negative numbers display in a different color (such as red) then the positive numbers in a calculated field?(I do know how to set the static colors.) ...
|
| Copy a table using code | 06 Oct 2005 23:39 GMT | 1 |
I'm building a form that allows the user to enter a table of about 30-50 records, then click a button to run a couple of append queries to dump the new records to their appropriate locations in other tables. To start, when the form opens, I want to create a copy of an existing ...
|
| Date for this month | 06 Oct 2005 22:48 GMT | 5 |
I get data from a mainframe. The date is in this format: 20051003. How can I build a where clause in a sql statement to only return the records for this month, using the system time.
|