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

    dll error

    Turned out an object needed to be instantiated. Works fine after that.
  2. sjulian

    dll error

    I have been given a dll by a trusted business partner and am trying to use it in a vb 2010 application I am writing. When I run the app in the IDE debug mode I get the error: “Unable to find an entry point named 'OpenDBConnection' in DLL 'c:\ims\mtcomponents\mtexecutedbchanges.dll'" I get the...
  3. sjulian

    Completion of Leave event sub closes form

    Thank you all! Antzelinaki, I found it before your last post, but you pointed me in the right direction. I was calling the problem sub from code that would exit the form, so that when the problem sub completed, the form closed. As always, it is something small that causes the biggest problems...
  4. sjulian

    Completion of Leave event sub closes form

    Form show command is first block of code in my post above. Code used to actually close the form: Private Sub sbExitRoutine() 'sbClearForm sets lbls, txtbox, & combos = "" sbClearForm() Me.Close() End Sub Thanks for looking at this, I'm stumped.
  5. sjulian

    Completion of Leave event sub closes form

    I have since worked around above problem but have encountered it again in different circumstances which leads me to believe the problem is not with the Leave event but with the way am calling and or trying to close a form. In this case the form is opened by clicking a menu item on the main form...
  6. sjulian

    Completion of Leave event sub closes form

    My program calls a form with frmAddLocation.ShowDialog() Form has a couple of combo boxes and a some text boxes. On the leave event of the zipcode combo box I check the user entered zipcode against a master table and if it is not found, allow the user to add the zip after prompting for the...
  7. sjulian

    Never written a line of code in any of the .NET development tools - Where should I start?

    I've gotten a lot of use out of http://visualbasic.about.com/
  8. sjulian

    max prepared statements error

    I am programming in Visual Basic 2010 and a Sybase database, using ADO. I have received errors from the database "max prepared statements count exceeded". I discovered how to raise the max count allowed, but my concern is that I am possibly leaving something "out there" that I should be closing...
  9. sjulian

    Problem sending text message through email

    I showed this to my systems guy and he said it makes sense, but right now it isn't worth it to try to get our mail server administrators to make any changes. Since the workaround is working, we'll just leave it as is. Thanks to Borvik and Qik3Coder!
  10. sjulian

    Problem sending text message through email

    Had blinders on . . . just tried another outside email address (not a cell phone text) and it failed with the same error as the text messages.
  11. sjulian

    Problem sending text message through email

    Trying to send FROM a regular email TO the sprint and verizion addresses. Made a workaround by sending message to address that uses Outlook and setting up auto forward. Works, but I'd prefer do to it right.
  12. sjulian

    Problem sending text message through email

    My Visual Basic 2010 application needs to send a text message to three phones under certain conditions. Written and tested on a Win7 machine it works fine. After installing on the production machine, a Win Server 2003, the following error occurs: "5 Mailbox unavailable. The server response was...
  13. sjulian

    Loop through registry subkey

    I am working in VB2010 and have spent the morning searching for this and have had no luck. I need to loop through HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Services and check the names of the subkeys for a particular pattern, then when the subkey(s) I'm looking for are located, read some of the...
  14. sjulian

    Adding items to comboboxes added at runtime

    I also want to be able to set some properties of the comboboxex and don't see how to do that either.
  15. sjulian

    Code bookmarks

    Not as good as VB6, but it worked. Thanks!
  16. sjulian

    Code bookmarks

    Is there a way to clear all bookmarks?
  17. sjulian

    Adding items to comboboxes added at runtime

    I want to add comboboxes to a form based on the number of records in a db table. Each combo box is to be populated with the same choices. I found code for adding the comboboxes, but have been unable to determine how to add items to them. I am adding the comboboxes with the code below: Private...
  18. sjulian

    Program closes, no error

    Fixed it, tho I don't know why it worked then didn't. Perhaps fix is a workaround, but it is a difference that makes no difference where the user is concerned. Originally the form containing the code calling the ReportView form stayed loaded while the ReportView code executed. I modified the...
  19. sjulian

    Program closes, no error

    TLowder: I tried creating a very simple report that runs fine in Crystal IDE. I added it to the db containing the reports for this app and still get the same results. I commented out the .showfirstpage and at this point I don't remember why I put it in. I was probably having trouble getting...
  20. sjulian

    Program closes, no error

    I tried the print statements (see below) all items printed and it still closes. I also tried rolling back the 1/12/11 Windows Security Update. I have opened the CR Report in the Crystal IDE and report still works ok. Still getting the same results. I can't help but think there is a problem...

Part and Inventory Search

Back
Top