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 Mike Lewis 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: ruru9292
  • Order by date
  1. ruru9292

    Select records based on Multi Entries

    This statement works and generate my new table. thanks a million for all who help out.
  2. ruru9292

    Select records based on Multi Entries

    I did change it to command below and still not making new table. again if I open my query and run it it generates this table with no problem. db.Execute strSQL
  3. ruru9292

    Select records based on Multi Entries

    Okay Here the actual code and debug result for two entries only on the form. Private Sub Command3_Click() Dim cn As DAO.Database Dim rs As DAO.Recordset, tst As DAO.Recordset Dim StCr, Crt As String Dim strSQL As String Set db = CurrentDb Set rs =...
  4. ruru9292

    Select records based on Multi Entries

    I am using the method above because I tried to use this statement below and did not work. every time I add it on my query criteria line it automatically changes the 0 to "0". I welcome any other method that will do multi selection. WHERE Instr(";" & [Forms]![myform]![UserEntry] & ";", ";" &...
  5. ruru9292

    Unable to delete large number of records.

    I tested the query on another computer and it works fine. it seems there is some issues with the memory size on the first computer. Thanks
  6. ruru9292

    Select records based on Multi Entries

    Hello, I am trying to pull mutiple order from MyTbl and make new table Called NewTbl based on entries a user can type on a continious form. This form is bound to table called MySelectTbl. The user types on each row one order #. I am using the code below to read all the entries the user enter...
  7. ruru9292

    Unable to delete large number of records.

    Hello, Any one can tell me why I can not delete more than about 100 records at one time? Requirements: I have two databases one is the current and other is archive. I want to select old records from the first DB and dump them in the second DB. So first I am running a query that appends all...
  8. ruru9292

    Select records based on Multi Entries

    Hello, I am trying to run a query that pull all the records base on an entry a user make on a form. for example. Consider selecting all records where multi OrderNo entered by the user on a form seperating them by ; . I am using the select statement below but getting no result. if I enter one...
  9. ruru9292

    Open Crystal Report From MicroSoft Access

    Thank you Vidru, that link helps.
  10. ruru9292

    Run Crystal Report

    Thank you PHV. I was able to open the report, but in a design view. Is there a way to let it run once I pass this command Application.FollowHyperlink "\path\to\report.rpt? Thanks again.
  11. ruru9292

    Open Crystal Report From MicroSoft Access

    Hello, Is there a way to run crystal report by clicking a button on microsfot access form? Please advice Thank you.
  12. ruru9292

    Run Crystal Report

    Hello, I am trying to run a crystal report from the code. is there a simple way to do that? thank you in advance.
  13. ruru9292

    ComboBox skip displaying some records

    Thanks Roy-Vidar for your Link. It helps a lot.
  14. ruru9292

    ComboBox skip displaying some records

    Thanks Willir. The link works great.
  15. ruru9292

    ComboBox skip displaying some records

    I have a simple query attached to my combobox and bound to hidden column 1. this query retrieve around 22,000 sorted records. when I type a name it search and retrieve the record then display it on my form. Consider I have the data below: ID first name: --- ------- 1 bob 2 jerry 3...
  16. ruru9292

    run-time error 3061

    Hello, Thanks PH. it helps in a way that I have to make MyQry generate new table called MyQryTbl as shown in my query below. is there a way to run my Select query instead of Make table query directly without generating new table? below is my Code. ... Thanks again. Private Sub Form_Load()...
  17. ruru9292

    run-time error 3061

    Hello, I am trying to enable some fields on my form if some criteria in my query is valid. However I am getting error 3061 too few parameters: expected 2. for simple explanation, I put two fields abc & xyz on my form, and onloading form I am calling sub to enabled these fields if they match...
  18. ruru9292

    Prevent records from editing

    Thanks for the details, however; if I use Onload from the subform itself the Me.Allowedits works, but when I call the function from the main form it does not. my requirement is that Onload from the main form x, I am calling a global function to disable record editing only on my subform z. I...
  19. ruru9292

    Allow/prevent editing on a subform

    Thanks you all for the details, however; my requirement is that Onload from the main form x, I am calling a function to disable record editing only on my subform zFrm. I tried all the command below with no luck. Form_z.Form.AllowEdits = False Form_z.AllowEdits = False z.Form.AllowEdits =...

Part and Inventory Search

Back
Top