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 SkipVought 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: domt
  • Order by date
  1. domt

    Color code changes

    Thank you very much for all your help. I downloaded the SP6B file. In running it it asked me where I wanted it installed. Any suggestions?
  2. domt

    Color code changes

    strongm What I should have said was that the RESULTS obtained by the program contain the color codes and are saved to a text file. When, later, the program accesses the text file it ueses the codes stored. Thank you for your interest and your suggestion. Can you tell me how I can update to SP6B?
  3. domt

    Color code changes

    Thanks for your replies. My coding does not actually write the coding for white, it picks that from examining the ".Backcolor" property from another object,so I made a typo error in re &H80000005&. I'm using VB6 with SP2. "Help" informs me that the version is 8176.
  4. domt

    Color code changes

    Can someone please straighten me out on using color codes in VB6. My code codes some Command buttons to be white (&H0000005&), and yellow (&HFFFF).The command buttons are in graphic style. I then save the program to a text file. The text file records the codes as -2147483643 and 6555. ??? What...
  5. domt

    Writing items from a list box to a text file in C drive

    Swi Works like a charm! Thanks so much for the education and help. Doug
  6. domt

    Writing items from a list box to a text file in C drive

    Hey Swi It works! But I'll be darned why the same code didn't work before. I copied your code and pasted it in, but it was identical to mine???? Now if you could help me in another part of the operation. When the program starts, I would like for the Load page to automaticaly read from the Stores...
  7. domt

    Writing items from a list box to a text file in C drive

    I have a list box (List3) with several items in it. I want to store them in a text file on my C drive. The following does not work. fnum = FreeFile() Open "C:\Stores.txt" For Output As #fnum For Ct1 = 0 To List3.ListCount - 1 Write #fnum, List3.List(Ct1) Next Close fnum Can anyone tell me...
  8. domt

    Recording files

    Thank you gmmastros I don't know why, but it does not work for me. Either using "Write" or "Print" Doug
  9. domt

    Recording files

    RiverGuy Thanks for your response. I'm sorry that I forgot to say that I'm using VB6, not VB .net Have you got a fix for that? Doug
  10. domt

    Recording files

    I have a list box (List3) with several items in it. I want to store them in a text file on my C drive. The following does not work. fnum = FreeFile() Open "C:\Stores.txt" For Output As #fnum For Ct1 = 0 To List3.ListCount - 1 Write #fnum, List3.List(Ct1) Next Close fnum Can anyone tell me...
  11. domt

    MSDN will not install

    Thanks for your suggestion, Chip. I did as you suggested, but many files would not install. Does anyone know a contact source at Microsoft that can help? I probably need new disks. domt
  12. domt

    MSDN will not install

    Thanks for your response, but I'm at a loss as to what to do or how to go about resolvibg the problem. Further attemps to run the disc gave notice that other files failed to copy or update :KB885836 KB892180 ENU_KBWINMISCH.hxs domt
  13. domt

    MSDN will not install

    Am moving fram VB6 to VB2005. After installing VB.net I tried to install MSDN. The first disk sent error message 1305 and said that file eau_kbofficekb.hxs failed to install. Assuming the file on the disc is corrupt, I checked with Microsoft but couldn't find it. Can anyone help me on this?
  14. domt

    Getting Names of Object in a Frame

    Thanks, guys, for all your responses and interest. I have managed to work around the problem by accessing the array item numbers of the elements I'm working with. While the solution "aint elegent", it works, and the computer doesn't mind the extra labor. I'll have to study uo on VB collections...
  15. domt

    Getting Names of Object in a Frame

    Andy Thanks for your responce. I know what the object in a frame is by clicking on it. Coding also idetifies the particular frame using the identity of the selected object. From learning the frame name, then, by coding I want to identify other frames and learn which objects are in those frames...
  16. domt

    Getting Names of Object in a Frame

    Can anyone suggest a method/procedure/code for getting a list of the Names of Objects in a frame when the user clicks on any object in that Frame? I'm working on a programs that presents several frames each containing different Objects, and the program must process those objects. Thanks for...
  17. domt

    type mismatch

    Guys, thank you all for your interest and help. The problem was with another part of the program where the test was called twice by mistake. The program is behaving now. Its great to have people like you to call on. Dom
  18. domt

    type mismatch

    Here is a copy of the actual Option Explicit statements: Option Explicit Dim Ct1 As Integer, Ct2 As Integer, Ct5 As Integer Dim NuTestV As Boolean, NuTestH As Boolean Dim NuTestS1 As Boolean, NuTestS2 As Boolean, NuTestS3 As Boolean gmmastros' MsgBoxcode also assures us that every thing is...
  19. domt

    type mismatch

    NuTestS1, NuTestS2, etc are all defined as Boolean and Ct5 as Integer in the Option Explicit heading.
  20. domt

    type mismatch

    Thanksfor your prompt responce guys. Here is the portion of the code in question: Call TestNu(Ct5) If NuTestS1 = False Or NuTestS2 = False Or NuTestS3 = False Or NuTestV = False Or NuTestH = False Then Label12(Ct5).Caption = " " End If NuTestS1, NuTestS2, etc are all...

Part and Inventory Search

Back
Top