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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by idono

  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...

Part and Inventory Search

Back
Top