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 Wanet Telecoms Ltd 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. VBProgrammer666

    How do u do a join File in Sql inside the VB

    Add a space after a.tsknbr=b.tsknbr before you close the quote.
  2. VBProgrammer666

    how to retrieve PC name

    Strongm - don't want to get into a pissing contest with you,but....I think your blanket dismissal of Environ is a bit of an overkill. I believe Environ has its uses. I work as a developer on production support of a large scale, thin-client intranet based app used by thousands of employees on a...
  3. VBProgrammer666

    how to retrieve PC name

    How about this? Environ("computername")
  4. VBProgrammer666

    Code to Trigger an event instead of - txtName_LostFocus

    1.) To reinforce what CCLINT said - use the Validation event for your controls instead of LostFocus. And I also agree that using a single separate validation procedure called from the applicable event is the way to go. You want to avoid repeating code as much a possible. 2.)I don't believe the...
  5. VBProgrammer666

    Simple vb message box question

    Ladyhawk, Why is it better to use OR for the buttons argument instead of using a +? In MSDN, Microsoft shows the + being used for the constants in their Msgbox example and I've never had a problem with it. Thanks!
  6. VBProgrammer666

    3 Tier VB 6 Solution

    In general, when designing 3-tier or n-tier apps using VB's Windows based forms, I start by breaking up the tiers as follows (of course these tiers can be on one computer or a bunch of computers): 1) Presentation layer - Everything that the end user sees goes here. None of the Business Rules...
  7. VBProgrammer666

    *Implements & Interfaces*

    In ILookUp, make your functions Public. Joe
  8. VBProgrammer666

    connection problem

    Is there a reason you're using ODBC and not the SQL Server OLE DB provider?
  9. VBProgrammer666

    Returning a recordset from a dll

    Was the dll created using VB? You don't give much info about the dll...do you have any info on it? You'll need to know the name of the function that accepts the customer name as an argument and returns the recordset. Do you know if the returned recordset is an ADO recordset? Do you need to...
  10. VBProgrammer666

    Bug in VB 6.0 Package Deployment wizard

    Some thoughts.... P&D has a bug where is incorrectly tries to register type libraries using the DLLSelfRegister macro, see the Microsoft Knowledge base article number Q299645. I don't think this causes the install to hang, though. You should also look into the setup.lst file, use article...
  11. VBProgrammer666

    Is it possible to put Events in an Interface ?

    FYI - In VB6, you can't use the statement Implements WithEvents But this link might help: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnvbdev00/html/vb00d20.asp

Part and Inventory Search

Back
Top