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

    MSHFlexGrid - highlight band 0 and its children ???

    MSHFlexGrid, Help!! I would like to select a record in band 0 (zero) and make its children highlighted also? Is there and easy way to do this? Thanks Jim
  2. Jimreaper

    Hierarchical FlexGrid - format 2nd bands Column "caption"

    Found it. .ColHeaderCaption(1, 0) = "col name"
  3. Jimreaper

    Hierarchical FlexGrid - format 2nd bands Column "caption"

    Hello all, I have a Hierarchical Recordset passed from a Business object set to a Hierarchical FlexGrid on my UI. I'm trying to change the Column captions on all bands by using the .formatString property however it only changes the first band level Column captions. Does anyone know how to...
  4. Jimreaper

    create, write and save a text file

    Zemp, Thanks! it's perfect, this is all I needed. Dim sText As String sText = "test" Dim l_strFileToSave As String l_strFileToSave = App.Path & "\attachments\test.txt" Open l_strFileToSave For Output Access Write As #1 Print #1, sText Close #1 works like a champ. Jim
  5. Jimreaper

    create, write and save a text file

    Hello, What's the easyies way to : -create a local txt file -write to it. ex( file = strSomeText ) -save the file using vb 6 Thanks
  6. Jimreaper

    blob streaming problem - trailer and header ???

    I found the problem. In case anyone has the same. It turns out MS Access 97 corrupted the files. I used an ODBC linked Access table to upload the initial blob files. I guess Access needs the Header.
  7. Jimreaper

    blob streaming problem - trailer and header ???

    Help! I'm trying to save a binary blob , temporarily stored in a disconnected recordset, from oracle 9i to a local file using adodb.stream. For some reason the file is corrupted at the beginning and end of the binary string. Either the DB or VB is adding a Header and Trailer of some sort...
  8. Jimreaper

    Copy or pass an instance of a class mod from form to form

    Does anyone know the best way to copy or pass an instance of a class mod from form to form. Ex. frmLogin has an instance of class ClsUser called objClsCurrentUser A cmdOk within frmLogin shows frmMain. I would like to use or set the instance objClsCurrentUser and its current properties...
  9. Jimreaper

    Commit Question

    Hello all, What is the proper SQL to use for this senario: Insert all records into table1 from table2 and commit after every 10000 rows until complete. Thanks for helping a beginner. Jim
  10. Jimreaper

    Commit Question

    Hello all, What is the proper SQL to use for this senario: Insert all records into table1 from table2 and commit after every 10000 rows until complete. Thanks for helping a beginner. Jim
  11. Jimreaper

    From a beginner - SQL question

    PRIMARY KEY COL1 COL2 1 a 2 a 3 b 4 c 5 b 6 c 7 a 8 a Question: What is the correct syntax to use if I want to copy COL1 to...
  12. Jimreaper

    Keep a word 97 doc from asking "Do you want to save changes"

    Is there a way to keep the message "Do you want to save changes" from showing when a user exits the word 97 doc file. I would like the file to close when selected without saving changes. Can a module of some sort be added to the file? Thanks JIM
  13. Jimreaper

    App.PrevInstance question

    Question? I don't want 2 of the same app. running at the same time. I can identify if a previous instance is running by using "App.PrevInstance" then end the current instance.(the one searching for the previous instance). But what if I want the current instance to close the...
  14. Jimreaper

    Print setup option in Word 97 using VB6

    I have an app. that opens a Word 97 Doc, modifies it and prints to the default printer. I would like to give the user an option to select the printer by opening the printer setup window in Word. Does anyone know how I should approach this? Is it possible to open that window or do I have to...
  15. Jimreaper

    Open a password protected Word97 doc using VB6.

    Does anyone know how to open a password protected Word97 doc using VB6. I would like to pass the password so the user doesn't have to enter a password. I would like the doc to be protected from the user, only VB will update the doc. I have the app opening the doc currently. I just want to...
  16. Jimreaper

    VB6 - pass a string variable to a existing Word document

    How can I make a reference to the Word Objects Library using VB6 and pass a string variable to a existing Word document? How do I instantiate a new document from an existing one. Thanks Jimreaper - lost
  17. Jimreaper

    VB variable sent to a Word Doc.

    Which classes would I use within the Word Obj Lib?
  18. Jimreaper

    VB variable sent to a Word Doc.

    This is great stuff, Thanks. What I failed to mention is the Word Doc is and existing Document that needs to have fields throughout the paragraphs in the document. Any suggestions on how to do that. Also, How to "mark" where the variable should go in the Word Doc...

Part and Inventory Search

Back
Top