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 Chriss Miller 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: billybobk
  • Content: Threads
  • Order by date
  1. billybobk

    How to add a column of values

    I need to add a column of values to one table (TableA) in the right order. The new column on TableA is 1ColX and is empty. Another table (TableB) has the values for 1ColX in 2Colx, and both tables have a column called CustKey. Each record inserted into 1ColX should then have the same CustKey as...
  2. billybobk

    Why use "Select 1 from......."

    Hi all, I started working at a new company and have discovered the pervasive usage of "Select 1 from.." in their stored procedures. Why? It just returns 1. Here's one use: ============================================== if exists (select 1 from dbo.sysobjects a join sysindexes b ON a.id =...
  3. billybobk

    Want a popup during PDW install?

    Merry Christmas and Happy New Year! If I want a message to pop up during an install made with the PDW (I want a popup that says something like "Be sure to read the ReadMe file for further setup instructions, you doofus" that they can click OK to unload, is this possible? Thanks...
  4. billybobk

    Check then set default driver and DSN

    Hi folks, in some of mt VB apps it is necessary for the user to go into the control panel, ODBC settings, and then choose the default driver (Microsoft dBase driver) then type in the System DSN (Goldmine) prior to using the product. Although this isn't THAT big a deal, I'd rather have the...
  5. billybobk

    Add-in manager without PDW

    Hi all, I got a new dev computer so I had to re-install Visual Studio (6) on it, then since I want to package an app for distribution, I went to the Add-in Manager to add the Package/Deploy wizard, and much to my display is isn't there! What am I missing or forgetting please?? Thanks --Bill...
  6. billybobk

    Terminal server breaks connect string.

    I'm accessing a .dbf database over the network and using ADO to do so. The ADO application works fine. Now when I open the database using Terminal Server, then try to run the app, I get this error: 80004005 [ODBC driver manager] data source name not found and no defauld driver specified. I tried...
  7. billybobk

    Folks, This topic always gener

    Folks, This topic always generates lively responses, every time it comes up which is often. I believe the experts here, because they are experts. But I wonder this: there are machine-specific licensing apps that seem to pull some kind of number out of a machine when you install it, then you...
  8. billybobk

    Program ignores ErrorHandler

    Why would the ErrrorHandler get ignored, and raise a 'Run-time error' instead? The code: ======================================== Private Sub cmdDDE_Click() On Error GoTo ErrorHandler 'other stuff here ErrorHandler: Select Case Err.Number Case 282 ' "Can't find dde conn&quot...
  9. billybobk

    "Resume without error" error...

    With this code: ==================================== ErrorHandler: Select Case Err.Number Case 9 ' "subscript out of range" error. Exit Sub Case Else Resume Next End Select Resume ==================================== both the 'Resume next' and...
  10. billybobk

    Act API's?

    Hi all. I'm new to this ACT forum, so please 'scuse me if this is an "old" topic. Essentially, what I need to know is where I will find VB/Act api's. Put another way, I have developed some VB apps that interact with the GoldMine CRM as add-ons, (they communicate with Goldmine thru ADO...
  11. billybobk

    Your favorite ConnectionString

    Hi all. What's your favorite DSN-less ADO connectionstring to SQL Server 7.0? Thanks! (VB 6.0) --Bill One may not reach the dawn save by the path of the night --Kahlil Gibran
  12. billybobk

    Package only the .ocx and .dll

    For the installation to the server I'll use the PDW to package all of the files associated with my program. But for the app to be run from a workstation (over the network), the workstation only will need the .ocx's and the MDAC installed. So I want to distribute a disk with an installer for just...
  13. billybobk

    Run only in system tray.

    I've seen programs that, when they run, aren't visible except that an icon appears in the system tray, then disappears when the program quits. Anybody know how this little trick is accomplished? Thanks. --Bill One may not reach the dawn save by the path of the night --Kahlil Gibran
  14. billybobk

    Randomize query

    Is it possible to write a query that will pull one random record each time from a table? Here's an example of what I mean: Customers send us thank you's in appreciation for our product. We put the text of these thank you's into a table called "tblThanks" The record id is a guid...
  15. billybobk

    Quick PDW Question

    The Package and Deploy Wizard creates 1. Support, 2.Cab, 3.Setup.exe, 4.Setup.lst. I want to zip the installer for people to download as a self-extracting installer. Do I need to include the Support folder, or can I leave it out? Thanks... --Bill One may not reach the dawn save by the path of...
  16. billybobk

    ACT api's

    Hi all, this is my first question to this particular forum so pardon me if I'm asking a question that has been asked many times b4. Is there a list of ACT api's out there somewhere (for use with VB 6.0)? Or are they even needed? I'm developing an app which ultimately will write data into the act...
  17. billybobk

    Love this forum! No kidding.....

    OK folks, I've fallen in love -- with a code forum! Doh! One year ago, almost to the day, I was forced to start seriously learning VB (or starve to death in an unemployment line!) and over a year, I have learned so much from you pros at tek tips, that now I'm becoming one. Becoming -- not...
  18. billybobk

    Password broke the query!

    Some of you might recall this query from a previous thread of mine: ----------------------------------- cnn.Open "Provider=Microsoft.Jet.OLEDB.4.0;" & _ "Data Source=c:\common\;" & _ "Extended Properties=dBASE IV;" & _ "User...
  19. billybobk

    Query fails on non-indexed field

    This works: SELECT accountno FROM tblTable WHERE Key5 = '' (Key5 is indexed) This fails: SELECT accountno FROM tblTable WHERE Secr = '' (Secr is NOT indexed) Anybody ever seen this b4? Thanks! --Bill One may not reach the dawn save by the path of the night --Kahlil Gibran
  20. billybobk

    Unicode compliant?

    I created an app that picks up names from a table and displays them in a combobox BUT WAIT! 'Johannes Hoek' (with the umlat over the e) shows in the box as 'Johannes Ho+k'. Looks like a unicode issue. Can VB apps be set to be unicode-compliant? Thanks! --Bill One may not reach the dawn save by...

Part and Inventory Search

Back
Top