Search results

  1. S

    Option Buttons and Combo Boxes

    I have a Data collection program that has option group with 2 buttons. Say, Retail and Wholesale. When I choose Retail option than the combo box should populate from tblRetail by using the drop down menu. Once the selection is made from the tblRetail and other fields are entered Save button...
  2. S

    Date and Time Picker

    Hey this is just great....I will give it a shot....Thanks again....sharad
  3. S

    Date and Time Picker

    I am looking for Date and Time Picker for Access 97. Is there a posting somewhere I could find it? Would appreciate. Thanks.
  4. S

    ActiveX Error

    I'm working with Access 97 on a windows XP environment and I have a simple create database connection snippet that is giving me the following Error: "Run Time Error 429" ActiveX component can't create object. This is failing on the the line reading: Set Brent = OpenDatabase("c:\abc.mdb") Dim...
  5. S

    Calculations for lbs. and ozs.

    I have a Form where these calculations are done for additive to be added to the product. User enters the name, weight of the product and at the Click of the Calculate Button calculations are done. I have been using the following code: Dim lbs As Double Dim ozs As Integer lbs =...
  6. S

    Error while Updating the Table

    I have a Form that I use to enter the data into the Table. I have the code posted below. When I click Add Record some text Fields change to "False", others change to "0" and date fields end up changing the dates to 1899, etc. I cannot update the table. I am stumped ! Need all the help I can get...
  7. S

    System generated Message Boxes on Update

    You are right as to Setwarnins False could cause problems in detecting actual problems. I tested it several times and everything works fine. The users were getting annoyed to have the Message Boxes pop up. After that I tried the code; DoCmd.Setwarnings False <Run the Query> DoCmd.Setwarnings...
  8. S

    Use combobox to set control properties?

    Can you attach your file file ? Are you using Access 97 ?:cool:
  9. S

    System generated Message Boxes on Update

    I have this Database program I am working with. The program works fine but when I click Add Record button it INSERTS the data into the Table. Howerver, before it appends it displays this Message Boxes warning that you are about to append a row, etc. Is there any way to control these system...
  10. S

    Upper Case for first letter

    Mile - O - Phile Thanks again for your input in re: Upper Case. The code Text0 = StrConv(Text0, vbProperCase) converts all the first letters of all the words in a sentence to Caps. The other code converts only the firt letter to Caps :)
  11. S

    Search a Record in the text box

    Users to search from a Form using the Data from the Table. :)
  12. S

    Search a Record in the text box

    I have a Database where Item Name is stored in a table. Item Name could have 1 or more Items. How would I go about doing a search of the Record to locate any of these Items ? Appreciate any help. :confused:
  13. S

    Upper Case for first letter

    Upper Case Text0 = UCase(Left(Text0,1)) & LCase(Right(Text0,Len(Text0)-1)) This is it. This worked great. 2nd Code did not work, maybe I did not give enough time.Thanks guys. :) :)
  14. S

    Upper Case for first letter

    When data is entered in a text box and Add Record button updates Table how do I make the first letter to show in Upper Case ? Thanks :confused:
  15. S

    Autonumber by year

    Auto Number Interestingly enough I had similar issue. I got it resolved somehow and it is working fine. In this case ActionItemID is a Table with AutoNumber. Start the Number with 0 and it should return : 2003-1, 2003-2, etc. and in the following Years it should be return : yyyyy.nnn 'Add...
  16. S

    Text date into date field

    Any particular reason you are using Combo Box for Dates? Try txt Box. That might do it. Keep us posted and Good Luck. :cool:
  17. S

    Error in Append Query

    Thanks for your input Wayne. I will look into it and see if I am in "Synch". In the meantime here is the code. It is a long drawn out affair. So, I am sending just partial code. It did work for a while untill I added the code to check if the fields were all entered. Only part where I was...
  18. S

    Error in Append Query

    I am having trouble with this QA Tracking Program I am try to get it going. When data entry form is filled correctly - all fields entered - by the user and Add Record button is clicked I am getting the error message as follows: Microsoft Access can't Append all the records in the Append Query...
  19. S

    Problem with Append Query

    I have trouble with this Tracking Program I am trying to get it going. When all the fields are entered correctly in the Data Entry Form and I try to Add Record to the table some fields convert to False and the record date and due date change to 12/31/99 in the table. It does not correctly add...
  20. S

    Global Date format ?

    Regional stting for computer Good call Colin...that was cool:)
Back
Top Bottom