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 TouchToneTommy 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: TomG1
  • Order by date
  1. TomG1

    Checkbox color

    hello how can I change the inside color of a checkbox? (not background-color cause that changes the outside) thanks
  2. TomG1

    ADO!!

    I think it's the following Adodc1.Recordset.Fields("TheField")= something Adodc1.Recordset.Addnew
  3. TomG1

    opening word 97

    thx Josh for ShellExecute!! but there is one problem with that, when I use it the first time, he opens Word and the requested document and fills up the right information in the table, but if I close word and trie to do it again, wham an error-message the error comes up when he tries to fill up...
  4. TomG1

    opening word 97

    I think that It goes wrong when I'm actually want to open a document, because I've tried again and he opens word and then the error message is shown maybe this is a bit more help Tom
  5. TomG1

    opening word 97

    Hi Josh I'm using the following code Dim appWD As word.Application Set appWD = CreateObject("Word.Application") appWD.Visible = True If Len(App.Path) > 3 Then appWD.Documents.Open App.Path & "\eindeMaand.dot" Else appWD.Documents.Open App.Path &...
  6. TomG1

    opening word 97

    Hi, at home I've got Win ME and Word 2000, in a program that I have written in VB 6.0 I'm openening Word and filling a table. That works great. But when i trie to work with the program on a computer with Windows 95 and Office 97 I get an error-message when I trie to go to Word (via a button...
  7. TomG1

    How to set the VB warnings to off

    Hi guys, thx, but I meant while the project is running. I'm using a DBgrid and when the something is filled in wrong, for example a word where this is not allowed, I'm showing a message and as soon as the user clicks OK on my message, VB automatically shows an message of its own. is there a...
  8. TomG1

    How to set the VB warnings to off

    Hi, I don't want that the standard VB warnings are shown, how can i do that? thx
  9. TomG1

    Access Reports From Visual Basic

    Hi, where can I find the reference AccessX because if I take a look at the references in VB, I can't find AccessX anyone?
  10. TomG1

    backup of accessDB

    chiph, thx but i meant that the user wants that the backup is taken when he presses a button on the form. Tom
  11. TomG1

    backup of accessDB

    hello, Is it possible to take a backup of an accessdatabase via VBcode? The user wants that it is possible to take a backup of his data on a floppy. And I haven't got a clue how to start, thx Tom
  12. TomG1

    creating a menu with code

    Hi, this is the code CommandBars("Menu Bar").Controls.Add Type:=msoControlPopup, Before:=11, Temporary:=True CommandBars("Menu Bar").Controls(11).Tag = "Brieven" CommandBars("Menu Bar").Controls(11).Caption = "Brieven" Set helpmenu =...
  13. TomG1

    creating a menu with code

    Hi, no need to search any further, I've found it Tom
  14. TomG1

    creating a menu with code

    LoneRaver, it's in Word '97 Tom
  15. TomG1

    creating a menu with code

    Hi LoneRaver, when i try to execute the code, he doesn't seem to know "MenuBars". I have right-clicked in the object browser and have clicked show hidden members and added the code but it doesn't work. What have I done wrong? Tom
  16. TomG1

    UserForm- Word

    Hi fred, you can trie to write the info to the registry, I have done it before and this works great. SaveSetting appname:="application", Section:="name", Key:="another name", setting:=0 variable = GetSetting(appname:="application&quot...
  17. TomG1

    creating a menu with code

    Hi all, how can i create an extra menu in the menu-bar with vba-code? I have tried to record a macro and then do al the things necessary but if I run the code it doesn't create a proper menu. anyone? thx
  18. TomG1

    Word 2000/VBA UserForm with table and bookmarks

    Hi PatriciaW, maybe this works, activedocument.Bookmarks(index).delete activedocument.tables(index).rows(index).delete if this doesn't work, something like it should :-) i have used it but can't remember the exact code Tom
  19. TomG1

    inserting a Word document

    Hi all, I know how to open a document with VBA-code Documents.add "document" Now, how can I insert the document in existing text, without first opening the document and then copy and paste it? This should be done with VBA-code thx

Part and Inventory Search

Back
Top