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

    SSTAB Next/Back

    Use the .TAB property of the SSTab control like this... Next button If SSTab1.Tab < (SSTab1.Tabs - 1) Then SSTab1.Tab = SSTab1.Tab + 1 Previous button If SSTab1.Tab > 0 Then SSTab1.Tab = SSTab1.Tab - 1 Net_Giant What fun is a technology if you can't crash the OS?
  2. NetGiant

    PRINTING THE RESULTS OF A SQL SEARCH ON A DATAREPORT

    Maybe I'm not thinking clearly without my usual dose of coffee but ... it looks like you're showing the report (modally) *before* the connection is open and the query has been run. Do you ever set the recordset of ADODC2? Try changing the OpenReport() method to something like this ... Private...
  3. NetGiant

    wininet

    Check out the www.vbip.com site for tons of articles, tutorials and code related to net programming with VB. Net_Giant What fun is a technology if you can't crash the OS?
  4. NetGiant

    Tracking memory used by application

    Very nice. I think I'll start using your method. Thanks for pointing it out to me. Net_Giant What fun is a technology if you can't crash the OS?
  5. NetGiant

    End-user electronic forms

    Wild suggestions that I don't know much about but may help you in your search ... Adobe Acrobat can do forms and their viewer is an ActiveX component. Maybe you can automate their form processing. MS Word can also work with documents as forms. The down side to both of those is that you...
  6. NetGiant

    Tracking memory used by application

    Try this routine. I didn't write it and I've forgotten where I found it but I think it may give you what you're looking for - the amount of memory used by your VB app. You could even adapt it to work on other processes but I'll leave that up to you. :-) This is my first TGML code posting so...
  7. NetGiant

    VB6: TabStrip, can you swap tabs ?

    Edit the FRM file manually. Make a backup *before* you attempt the change in case things get out of hand and the file gets mangled. The TabStrip properties in the form probably look like this ... Begin MSComctlLib.TabStrip TabStrip1 Height = 735 Left =...
  8. NetGiant

    &quot;Run-time error '3708': Parameter object is improperly defined. Incons

    Can you post the procedure declaration (not the code, just the name and parameter list stuff). Net_Giant What fun is a technology if you can't crash the OS?
  9. NetGiant

    &quot;Run-time error '3708': Parameter object is improperly defined. Incons

    Try setting the ActiveConnection property before appending the parameter. Net_Giant What fun is a technology if you can't crash the OS?
  10. NetGiant

    Copying text from notepad and outputting as .txt with tags

    Is there a reason why you're using notepad and not a textbox in your VB app? Reading the file into a variable and working with it from there would probably be better. Somnething like this ... Dim astrLines() As String Dim intFile As Integer Dim strBuffer As String ' Read contents file...
  11. NetGiant

    &quot;Run-time error '3708': Parameter object is improperly defined. Incons

    Try specifying the length of the input parameter in the optional size parameter to CreateParameter. Use something like this... Set prmId = cmdId.CreateParameter("ID", adVarChar, adParamInput, Len(mgrID), mgrID) Net_Giant What fun is a technology if you can't crash the OS?
  12. NetGiant

    Declaring DLL - works only sometimes

    It sounds like this is the sequence of events. 1) app is started in IDE 2) DLL function invoked successfully 3) current directory on the drive with the app is changed 4) app is closed 5) app is started again in IDE 6) DLL cannot be found because it is not in the current directory (changed in...
  13. NetGiant

    Listview control

    How many items are you adding to the listview? Net_Giant What fun is a technology if you can't crash the OS?
  14. NetGiant

    Listview control

    Are you adding items to a standard Listview control? Have you tried the bound Listview control - DataList? I haven't used it but it may help. If you can't use a bound control try ... 1) Set the control's .Visible property to false so it won't try to update it's display after every item is...
  15. NetGiant

    Declaring DLL - works only sometimes

    Wild shot in the dark ... does your app change the active directory? Try this: temporarily move the DLL to one of the system directories (WinNT or WinNT\System32) and see if your app will run more than just the first time. Windows 2000 and XP (and NT?) use a different search method when trying...
  16. NetGiant

    Screen Scaping once and for all

    We use Rumba where I work. I tried using the examples/help files on the NetManage site years ago. They haven't changed at all. The most recent version of *any* file in their example section is from March of 98. Are they still selling Rumba? I eventually found some EHLLAPI code a guy posted on...
  17. NetGiant

    Program Crashes after weeks

    I know that a lot of people do it and I'm not trying to start a message war but ... MS specifically advises *against* using any MS Office apps in an unattended environment. Check these knowledgebase articles for more info - Q257757 & Q259971. It's kinda funny that they all but admit that the...
  18. NetGiant

    How do I retrieve Column Names from SQL Server using ADO

    Uh. If you're getting a recordset then you already have the column names. Check the YourRecordset.Fields(0).Name property. Try this snippet. Dim objField as ADODB.Field For Each objField In YourRecordset.Fields With objField Debug.Print .Name Debug.Print .Type Debug.Print...
  19. NetGiant

    Version Tracking VB Projects

    VB 6 Enterprise comes with MS Visual SourceSafe which lets you keep track of different versions of files. It also allows you to compare files and display the differences side-by-side. Net_Giant What fun is a technology if you can't crash the OS?
  20. NetGiant

    Mark records to keep track

    OK. Let me ask that question a different way ... Suppose you run the app, add a few records, close the app and then run the app again. How can you tell what records were added when you ran the app before? Net_Giant What fun is a technology if you can't crash the OS?

Part and Inventory Search

Back
Top