| Thread | Last Post | Replies |
|
| My Form Will Not Respond To Me.AllowEdits | 14 Apr 2005 03:10 GMT | 5 |
I have a form were I changed the lock property to yes for every field to keep Users from editing the data by mistake. The reason I locked every field and not the form was to leave one field open to pick companyname and bring up the record for that companyname. (I should also mention ...
|
| Update controls programmatically | 14 Apr 2005 02:21 GMT | 3 |
I have a form with several unbound text boxes presented to ask users to input common data to be passed to several controls in several related records on a subform. For example: Main form
|
| records aren't appending...don't see an error! | 14 Apr 2005 02:20 GMT | 3 |
This is too weird. This is pretty straight forward...assign an invoice # and then append to the InvoiceMain table. It assigns the # and runs through the code with no errors, but it doesn't append the InvoiceMain table. If I do it through a query instead of Sql, it works fine. ...
|
| Make MDE File Causes Access 2003 to Stop Responding | 14 Apr 2005 02:19 GMT | 3 |
Has this happened to anyone else? I have a form which is sort of like a switchboard form. The form contains 2 list boxes which are populated with select statements. The form also has a custom menu that contains the Make MDE File. Here's what happened.
|
| Is an Amphersand ("&") Allowable in a Command Button Caption? | 14 Apr 2005 01:26 GMT | 2 |
Is an amphersand allowable in a command button caption? While it shows okay when editing the caption, as soon as I close the caption edit, the "&" disappears. I have tried: &, "&", and \&. Any help will be appreciated!
|
| How do I programmatically delete a link to a table in a linked file where the table has been deleted? | 14 Apr 2005 01:08 GMT | 2 |
I can't seem to figure this out. I have a database where all the tables are in a separate back-end linked file. There were some tables in the initial version of the database that I want to delete.
|
| unselecting the "filter" toolbar button | 13 Apr 2005 23:46 GMT | 1 |
We have a form on which the user can "Find" customers by first/last name and phone number. When the users enters their criteria and clicks "Find", the following code runs...
|
| moving from VBA to VB | 13 Apr 2005 23:23 GMT | 7 |
I'd like to move from VBA to VB. What would I have to use to build forms and reports? Would the MS Visual Studio be enough? Thanks
|
| public variables | 13 Apr 2005 23:14 GMT | 1 |
i have a default year variable defined in a public module. i get the value from a table on login. i display the value when i'm in the customer form so i know what year the prices are for.
|
| My Cancel Button Is Not Working | 13 Apr 2005 22:07 GMT | 6 |
My cancel button is not working. It's opening my add form even if I click on the cancel button. Below is my code. Thanks in advance for any suggestions...... Private Sub AddNewRcd_Click()
|
| finding a name on list | 13 Apr 2005 21:12 GMT | 2 |
i have a form with a list of customers for finding a name on the list user write's the name in a text box the code i'm using is: Private Sub TextBox_KeyUp(KeyCode As Integer, Shift As Integer)
|
| Print to PDF From Access | 13 Apr 2005 21:09 GMT | 2 |
How can we specifiy a printer in VBA code?.. The problem is that when I print some report, I want them to print to PDF File instead of the Default Printer Thanks!
|
| Prevent move next on Enter | 13 Apr 2005 20:34 GMT | 1 |
I'm using the folto prevent users from 'tabbing' out of a field. Private Sub ControlName_KeyDown(KeyCode As Integer, Shift As Integer) If KeyCode = vbKeyTab And Shift = 0 Then KeyCode = 0
|
| use password prompt for editing form | 13 Apr 2005 19:57 GMT | 8 |
In my application I created a user login form with username and password. Data is retrieved from a user table using listview control and Dlookup functions. So far so good.
|
| Passing arguments | 13 Apr 2005 19:35 GMT | 2 |
The intent: In a form, I have a data entry subform linked to a recordset. In the same form a have a graph. I want the graph to be refreshed based on a query generated by the subform based on the click event of the control in
|