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

    Converting a VB6 Function to .NET

    I have a function in VB6 with a calling list that looks like this Public Function GetPol(Policy_Name As String, Optional Obj As Object = Nothing) As Variant The purpose of this thing is that it can be invoked with multiple different class objects as the second argument. The code sorts out what...
  2. Golom

    Licensing Issue with Rich Text Box (I Think)

    I have a small application that I've been attempting to install on other machines. They are all XP-Pro laptops that have a third-party Web-Based application installed. That application requires that the .NET 2.0 framework be installed followed by a download of the various application components...
  3. Golom

    Immediate Window Oddity

    I just did this x=cdate("04/22/2002") ? vartype(x) 7 ? typename(7) Integer ? typename(vartype(x)) Long Why is the TypeName(7) returning "Integer" but TypeName(VarType(x)) (which should resolve to the same thing) is returning "Long"?
  4. Golom

    Maximize the Sum

    Here's one that I found in an old (1986) book on programming called Programming Pearls by John Bentley The challenge is; given an array of numeric values such as 31, -41, 59, 26, -53, 58, 97, -93, -23, 84 write a program to find the maximum sum of a sub-array of contiguous values in the...
  5. Golom

    A or An?

    I know that the rule is "A" before a consonant sound and "An" before a vowel ... so why does An UNION query just sound wrong? No! No! You're not thinking ... you're only being logical. - Neils Bohr
  6. Golom

    Menu & Toolbar Problems in IDE / XP

    I recently installed VB6 on a new XP-SP2 system and there seem to be a few weird problems with menu items and toolbars in the IDE. The Standard tool bar is missing the "Find", "Undo" and "Redo" buttons and the "View" menu is missing the "Call Stack" option. If I select "Customize / Reset" for...
  7. Golom

    Printing in Win98 & XP

    The problem is that the following (much condensed) code does what it's supposed to in Win98SE but not in XP. The intent is to change the default printer to one specified in a setup table; change to a specific font that is an internal font for the printer (specifically font '15 cpi'); and print...
  8. Golom

    Pop up the Calculator in XP

    I'm using the following chunk of code to pop up the calculator in Win 98 Public Sub ShowCalculator() Dim StringLen As Long Dim strWinPath As String Dim strSysFileName As String Static ProgID As Long Dim WindowHandle As Long...
  9. Golom

    Inserting From A Union Has Problems.

    Although I've managed my way around the problem with some code, I am curious about what the problem is with the following. I'm attempting to INSERT INTO a table with the following SQL INSERT INTO CompletedOrders ( Code, Description, Quantity, Customer, Phone ) SELECT...
  10. Golom

    "bespoke" Means ???

    I see references in many of the forums to "bespoke" work or "bespoke" applications. I assume that these come from our UK bretheren (of all possible genders, of course). My on-line dictionary (Merriam-Webster) says "to hire, engage, or claim beforehand". ... but what exactly does this mean in...
  11. Golom

    HELP ain't HELPFUL

    I've recently upgraded from Access '97 to Access 2003 (i.e. Access XP) ... brave new world, stay ahead of the curve, etc. In the '97 version of things, using HELP was fairly straight-forward ... type in a word or words and it gave you a list of several possible sections of the documentation...
  12. Golom

    Icon Images in Windows Explorer

    I need assistance in recovering from my own incompetence. I have a VB application that displays and Edits icons (*.ico). It works fine but ... I opened an icon file with it by double clicking on the file in Windows Explorer. It came up with the standard "select an application to open this...
  13. Golom

    Different results from Stored Query and VB SQL Retrieval

    I have two tables as follows. TABLE CANBE NAME Seq Canbe ACCEPT_RET 1 STOCK ACCEPT_RET 2 SUBDETAIL ACCEPT_RET 3 SUBDEPT ACCEPT_RET 4 DEPT ACCEPT_RET 5 COMPANY ... etc. TABLE SET NAME LEVEL VALUE SET ACCEPT_RET DEPT 34 No ACCEPT_RET DEPT 37 No ACCEPT_RET DEPT 99 No ACCEPT_RET SUBDEPT 77...

Part and Inventory Search

Back
Top