No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
How do you pass the data in a field on one form to a field in another form? | |
I have an input box in my program and I want to be able to control the flow when the 'cancel' button is pushed. Any help would be appreciated. | |
How can I stop processing in a sub so that the user can choose an option button for input? | |
When I enter a decimal into a field by the time it gets written to a recordset it has been changed to zero if the value is less than one and it is rounded up if the value is greater than one. Any suggestions? | |
All of a sudden I'm getting this error message in vb 5.0: Run- time error '3027' Can't Update Database or object is read-only. Can anyone help me with this? Thanks | |
Could someone please suggest a way I can get the following sub to work? I'm trying to check to see if a field in a datagrid has been changed. I get runtime error 424 Object Required. Thanks [Private Sub DbGrid1_BeforeUpdate(Cancel As Integer) If DBGrid1.Columns(1).Value.DataChanged = True Then ' Check for … | |
How can I run some code when I click on an arrow of a data control? | |
The following code comes up with a number that has 13 digits past the decimal point. How can I cut this down to 2 decimal places? [Let drivetimeexpense = (rstdrivinginfo.timefromhome * rstdrivinginfo.numberoftrips * 2 / 60) * 20] | |
From the posts in this website I see how to open an Excel spreadsheet from VB 5.0 but I don't see any examples of moving data (not an array) from vb to excel. Can anyone show me an example? Do you know of any books that would have this information? … | |
My vb 5.0 program is adding 2 identical records to a table each time I run it. Does anyone know what would cause this? Thanks | |
Has anyone ever had a form freeze up in vb 5.0? When I run by program the form is displayed in the smaller size and the 3 buttons at the top of the screen (the minus sign, the box and the X) are not functional. | |
I am trying to refresh a data control but I keep getting the following message no matter what I try: Run-time error 3464 Data type mismatch in criteria expression. If I leave the where clause out I don't get the error message. [CODE]Private Sub cmdseektask_Click() Dim strsql As String, temp … | |
I've created 2 tables in Access and have created a form for each table in VB5. Each autonumber field is the primary key of it's table. When the first form comes up the autonumber field has a value but when I go to the second form the field is left … | |
I've got a bunch of fields displayed in a form and I can change them on the screen and the changes are saved in the database. How can I make them so they cannot be changed? |