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: idono
  • Order by date
  1. idono

    populate combo box from external recordset

    You my friend, have been moved into the genius category. Thanks a bunch!
  2. idono

    populate combo box from external recordset

    I am trying to populate a combo box on a form from an ADO recordset. Obviously, I'm not having much luck. It appears that the additem property does not exist for the control. I tried all of these and it says an object is required: Forms!frmGroup.Group.ItemData(X).Add rst.Fields![m-user]...
  3. idono

    Cannot distribute vb.net application

    You are an absolute genius! Here is a big thank you and a Merry Christmas.
  4. idono

    Cannot distribute vb.net application

    This is what I got from that. Pardon me for having you tell me what it all means. I'm pretty new to vb.net. *** Assembly Binder Log Entry (12/18/2003 @ 1:05:35 PM) *** The operation failed. Bind result: hr = 0x80070002. The system cannot find the file specified. Assembly manager loaded...
  5. idono

    Cannot distribute vb.net application

    Good suggestion! I ran them both and the following is what I got. Application Description MEPrints.exe AXInterop.SHDocVw, Version=1.1.0.0, Culture=neutral, PublicKeyToken=null I'm not sure what all that means other than it didn't bind. Any ideas?
  6. idono

    Cannot distribute vb.net application

    Ok, losing lots of hair on this one. I have created my first vb.net app and would like to distribute it to my users. Problem is I used an active X web browser that requires the shdocvw.dll library. In doing this a wrapper library was created AxInterop.ShDocVw.dll. When I run the install on...
  7. idono

    Create look up field in table

    How can you create a lookup field like you do in Access? I am pretty new to SQL and I see nothing to automate the process. Is it possible?
  8. idono

    Automate replication

    Is it possible to automate the replication of an Access 2000 database. We have two front ends and a backend. I would like to have a user when done with the database (on-close) have it synchronize. Does this sound possible?
  9. idono

    not able to use request.form("") to see calling form info

    I pulled a rookie mistake. I had the button enclosed in the form tags, but not the multi-select listbox. Therefore, it was not posting the data selected but the value of the button itself. Sorry, it just took some looking at it before it showed up. Thank you for all of your posts.
  10. idono

    not able to use request.form("") to see calling form info

    Yes, after I hit the next button on the first page this page displayed the else portion of your code.
  11. idono

    not able to use request.form("") to see calling form info

    Thank you for the responses, but I think something else is wrong? I can use Response.Write to put anything I want on the page. But when I call anything from Request.Form I get nothing. What do you suppose would make the Request.Form information null/blank/empty?
  12. idono

    not able to use request.form("") to see calling form info

    I'm using the below code to view items selected from a multiple list on one page. I cannot write the information to screen or to the textbox. Please advise. <% LANGUAGE=&quot;VBSCRIPT&quot; %> <form name=&quot;Suggestion&quot; method=&quot;Post&quot; action=&quot;confirm.asp&quot;> <table>...
  13. idono

    Adobe printing with reader using VB6

    Hello all, I have an application that opens acrobat reader and prints several pdfs. On my machine it works, but on the users it will not. I get &quot;429 ActiveX cannot create component&quot;. The line that causes the app to bomb is... Set AVDoc = CreateObject(&quot;AcroExch.AVDoc&quot;) Am...
  14. idono

    Set an object on a form using variables

    I have a form that when click is trying to update another form. I have done this in VBA Access but cannot get it to work in VB. Here is an example in VBA: Forms(nameofform).Controls(nameofcontrol) = variable I keep getting an error because forms in true VB only has one property - count. Can...
  15. idono

    Send variables when calling query

    To answer your question, yes I have but parameters in the query. It still doesn't prompt me for the input. One reason for this may be the fact that When I call this query I have an Excel workbook open that the query information will be stored in. Here is a snippet of the code. 'open the...
  16. idono

    Send variables when calling query

    Hello, I have a query set up in my database that requires two dates. It is parameterized so it asks for the dates when it is run. The problem I am having is calling this query from code. It doesn't ask for the dates. Set rs = db.OpenRecordset(&quot;qryClosedThisWeek&quot;) produces the...
  17. idono

    update a list box from a dropdown when button clicked

    Obviously I'm new. I have a dropdown box that is populated from a database. Now when I click a button I would like the selected to display in a listbox. This may be better handled with a multiselect, but I don't know how to do that either. The idea is to select multiple names and then pass...
  18. idono

    test to see if form is open or get the calling form

    For you my friend, have a star. That was easy and just what I needed. Thanks
  19. idono

    test to see if form is open or get the calling form

    How can I test to see if a form is open, other than the current form. Or maybe even find out the name of the calling form. Any suggestions

Part and Inventory Search

Back
Top