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 SkipVought 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: *

  • Users: Abaka
  • Order by date
  1. Abaka

    SQL HELP

    User entering all three fields in a text box so the problem is to send a query to get all address: You may create one field ad4 in the Db. Just add all add1+ad2+ad3 and everything in one field.(not a good solution) or Just add a single field ad1 add all the field Else create the user interface...
  2. Abaka

    SQL HELP

    or you can get rid off , before send it to database
  3. Abaka

    SQL HELP

    For exact word searching use like: say user enter address to text1. I belive even if there is a comma it will work Select from Table where address1 like '" & text1.text &"'
  4. Abaka

    MDI form add items to form

    Except few controls may be a timer you cannot add any cotrols to MDI forms.
  5. Abaka

    Can you convert Access database to an executable non-Access dbase

    I THING YOU HAVE TO DEVELOP A SOFTWARE WITH VB OR C++. SO USER CAN ACCESS THROUGH THE SOFTWARE. YOU DON'T NEDD MS ACCESS INSTALLED IN THE USER COMPUTER.
  6. Abaka

    Crystal Reports Bar coding - Theory? Help in practice?

    IS IT POSSIBLE ME TO CHANGE THE CR LABEL SIZE USING VB FORM SAY A VALUE FROM A TEXT BOX. THANKS
  7. Abaka

    Is there a command to go back to the top of a loop structure?

    GO TO is redundent?.........
  8. Abaka

    Unrecognized database format - ERROR 3343

    Some time Ms.jet engine can also cause this problem If you are using MS jet.engine check the version of Jet and try to upgrade 4.0 Good luck
  9. Abaka

    Passing Variables

    I think you are passing a string instead of long? what about pass val(text) Good luck
  10. Abaka

    Flexgrid Row selection problem after empty flexgrid.

    Hope This would help you?......... FlexMembers.Cols = 8 With FlexMembers .ColWidth(0) = 600 .ColWidth(1) = 2200 ' name of the field .ColWidth(2) = 2200 ' .ColWidth(3) = 2220 ' .ColWidth(4) = 2200 ' .ColWidth(5) = 2200 ' .ColWidth(6) = 2200 ' .ColWidth(7) =...
  11. Abaka

    ADO problem

    There may be other events fired just before the "unload me" check all the relevent events.
  12. Abaka

    timeout error

    Make sure all the ADO objects created properly and unload them properly. check the appropriate event to trap the error Good luck
  13. Abaka

    Unselect radio button

    try this on option1_click event If otption1.value =true then option1.value =false else option1.value=false end if
  14. Abaka

    BATCH

    Create an array to hold the values of recors and if the user agreed then use rs!batchupdate or else use rs!cancelupdate
  15. Abaka

    Closing Forms

    Use boolean variables to close the forms
  16. Abaka

    When I press cancel, puts zero (0) by default

    What about this way: put code under keypres event and .....(your code) if Keyascii =27 then exit sub

Part and Inventory Search

Back
Top