Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. mje397

    How to design a question having multiple responses

    I want to include a question in a form which has multiple responses. For eg. Q11. Which of the following colors do you like ( check all that apply) 1. Red 2. Blue 3. White 4. Green What property (combo, option, option group) can I use for this? . I tried most of them, but they...
  2. mje397

    Form Navigation

    I have an issue with navigating through various items in a form. Right now I can move from one box to another by pressing either 1. Enter 2. Tab 3. UP Arrow ( backward movement) 4. Down Arrow ( forward movement) However I want to move from one box to next only when I press enter or tab. Can...
  3. mje397

    Controling Navigation in a Form

    Is it possible to control the navigation between the various entities in a form .. for eg I have Combobox 1 Combobox 2 Combobox 3 If value of "combobox 1" is say 2 then go to "combobox 2" or else go to combobox 3.. Thnx in advance
  4. mje397

    Saving data using forms

    thnx mph1,, I added a command button .. made it easier.. But when I press enter,, it is not going to the next field.I am forced to press TAB for moving to the next record.. Is there anything that I can do so that when I press enter it goes to the next step.. Thnx in advance
  5. mje397

    Saving data using forms

    I am populating a database using a form. Is there any way I can save the details automatically after each record at the end of the form before starting to input the next record. Thnx
  6. mje397

    Help with Forms- Option Group

    Thnx Aceman,, I am populating a table in Access using a frorm. Say for example,, I have a column named "PURPOSE OF TRIP" the possible entries are 1, 2, 3, or 4 where the numbers correspond to work, school, shopping, other. I am using a combo box in the form for this application. Now if the...
  7. mje397

    Help with Forms- Option Group

    hi aceman,, I have changed my application a bit.. I have a combo box in a form with the following options. Work, School,Shopping, and Other The associated id's are 1, 2, 3, and 4 If the user selects work, 1 will be stored in the database if he selects 2 school will be stored Now if he...
  8. mje397

    Help with Forms- Option Group

    I am creating a form with an option group with the following work -1 school -2 shopping -3 other -4 If user selects 4, I want to input the text he is typing into the table or else input the number . Plzz help on how to do this
  9. mje397

    Making a dialogue box appear when a user opens a database

    Is it possible to make a dialogue box ( or form ) apear when a user opens a database. thanks
  10. mje397

    Access Query to Write to an Excel Pivot Table

    Is there any way we can run a query in Access to write to or create a Pivot Table in Excel?
  11. mje397

    Arrays in VBA

    Sorry for the misunderstanding!! I am trying to traverse through my column values by using an index. Say for ex. I have a column called demand having demand at various periods( say 100).. Can I index each demand with the period using a counter in a loop?
  12. mje397

    Arrays in VBA

    Can I use arrays to specify elements fo a column in VBA say for eg., Dim Counter As Integer Counter=1 and can I use rst!Store(Counter) to indicate the first value in my Store Column? Is there any other way to do this?
  13. mje397

    SQL syntax query in VBA

    What I am trying to do is, Go to a particular record, ( by using rst.Filter=strSQL) do some calculations and then go to the next record. when I was using FIND instead of FILTER , i was using the code rst.Find strSQL,1,adSearchForward How will I traverse from one record to next when I use...
  14. mje397

    SQL syntax query in VBA

    hi PHV,, It worked,, but I had another statement in my coding. rst.Find strSQL,1,adSearchForward when I replaced it with rst.Filter=strSQL,1,adSearchForward its giving me an error.. Any idea how to go about !!!!!!!!!
  15. mje397

    SQL syntax query in VBA

    This is my code Dim strSQL As String strSQL = "Store='Store1' AND Product='HardDrive'" rst.Find strSQL However when it comes to rst I am getting the following error " Arguments are of wrong type, are out of acceptable range or are in conflict with each other" Both Store and Product are in...
  16. mje397

    SQL syntax query in VBA

    Can I declare an SQL statement in a string declared as "strSQL" like this strSQL= "Store='Store1'AND Product='HardDrive'" I want to go to that location for which store is Store1 and Product = HardDrive. However its giving some error.
  17. mje397

    Stepwise addition of elements of a column?

    I have an access table with just one column having numbers 1 2 3 4 5 ... Can I create another column with numbers 1,3,6,10,....( ie. Sum of numbers ) using query or any other method.. It should look like this 1 1 2 3 3 6 4 10 5 15 6 21 Thanks

Part and Inventory Search

Back
Top