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

  1. ledsoft

    Pop up windows and passing some values to it and from it???

    I have performed something similar to this recently but I used Session Variables to pass my info. On the first page Session("MyNewSessionVar")= Your value On second page MyVar=Session("MyNewSeesionVar") Hope this might help until a better solution comes through. Bruce
  2. ledsoft

    Report Keeps crashing Access on open Preview, Print, and design

    I have has similar problems running Access 2000. When printing certain reports on WinXP with the Office Service Pack 2 everything is OK. If I move that db to W2K no SP and Access 2000 no SP, those reports crash. On a W2K (latest updates from MS) with Access 2000 no SP, everythin is OK. It...
  3. ledsoft

    Auto Create Access 2000 forms with Text boxes

    Thanks guys for your help. The users that use this appl. are not very computer literate at all, so this has to be automated as much as possible. I have been a programmer for several years and I never need to do anything like this before. Thanks once again guys. Call on me if I can be of any...
  4. ledsoft

    Auto Create Access 2000 forms with Text boxes

    I am in the need of assistance to create a Form based upon a queries results. After creating the Form, I need to save it as a specific name and make it appear as a subform to the Form that triggers the routine. I have serached the MS site and found a tidbit of code but it did not work very...
  5. ledsoft

    ADO version to DOA's 'CreateQueryDef'

    I am in need of an ADO verion to the DOA's 'CreateQueryDef'. I am using MS Access 2000 and I want to try to keep libraries to a minimum. Plus, I don't want to introduce any headaches by having two different types of db references in one environment. Thanks, Bruce
  6. ledsoft

    Access 2K Code to build and save query

    It says "Object Required" error 424. I had been using ADO, but I don't see an option in its area to do this. DAO does though. Any ideas for ADO on how to define. Sorry, Bruce
  7. ledsoft

    Access 2K Code to build and save query

    I need help in an Access 2000 db. I need to create queries based upond selection and store the results as a query so the the end user can create report off of it. The problem is that I am not able to find anything about being able to programatically creating and saving the query in Access...
  8. ledsoft

    View Access Report inside a Access Form

    OOPS... Its inside an Access 2000 DB. Thanks.
  9. ledsoft

    View Access Report inside a Access Form

    Is there a way that I can use an object (or some other way) that I can physically use in a Access Form for viewing a report? The forms open in modal and pop-up, so the report is always hiding behind the form. I need to enter data based upon what the report displays. The report is way too busy...
  10. ledsoft

    Retrieving ASP DropDown Value

    I must be doing something wrong here. Can you assist please? As you can see, I tried a couple of different ways. Thanks. <script language=&quot;VBSCRIPT&quot;> Function ProcessID(SelectedID) request.form(&quot;d1&quot;) response.write SelectedID End Function </script> <select...
  11. ledsoft

    Retrieving ASP DropDown Value

    Sample of populating from ADO. <select name=&quot;d1&quot; size=&quot;1&quot; onClick=&quot;ProcessID(d1)&quot; > <% Do While Not ors.EOF %> <option value=&quot;<% = ors(&quot;planid&quot;) %>&quot;><% = ors(&quot;planid&quot;) %></option> <% ors.movenext %> <% loop %> </select>
  12. ledsoft

    Retrieving ASP DropDown Value

    I have a dropdown called MyID that is populated from a MySQL database. This I thought would be the nerve racking part. But, it turns out I was able to find easy to follow samples. The problem is, after I populate the dropdown, how do I get the value that was selected by the end user? Any...

Part and Inventory Search

Back
Top