Search results for query: *

  1. bjwade62

    reading and writing to a txt file

    That's what I was looking for thanks.
  2. bjwade62

    reading and writing to a txt file

    I have an existing txt file that I want to open, get the text (which is a number), add 1 to the number and save/close the txt file. Sound like filestream but I'm not sure how to use it. I've founds peices of information but nothing I can use together. Any help out there? Thanks,
  3. bjwade62

    Question Listview items text

    I found it. Very interesting. Thought you'd like to know... http://www.codeprof.com/dev-archive/120/2-8-1200376.shtm #2 fixed my problem.
  4. bjwade62

    Question Listview items text

    That worked thanks. Now the problem I'm having is that in the loop I'm changing the forecolor of items that don't equal a certain value. The problem is they don't change color unless I click on my desktop and then click on my app's window. Then the color changes. I don't get it. Thanks
  5. bjwade62

    Question Listview items text

    I'm having trouble getting the text value of each listview items. Sounds easy but I'm having trouble. Any help out there? Thanks
  6. bjwade62

    links to definitions of common programming words

    I'm not exactly a total newbie, just self taught. Every now and then I get hung up on something because I don't know the programming definition of a word. Is there a site or someplace with a list of definitions? Such as Structure, Class, Enumerated data types... Those are just examples. I don't...
  7. bjwade62

    Creating a Desktop icon during install

    Can anyone tell me how to have my app create an icon on the users desktop during installation? I can't find it in the Publish section and I don't really want to buy a third party app such as installshield. Thanks, Bernie
  8. bjwade62

    Intercepting the Windows Print Dialog

    I'm looking for a way to intercept the Windows Print Dialog no matter what program calls it. I want to create a dialog that asks for a project number first and then calls the Windows Print Dialog. I want to create a billing log that will record a project number every time any program attempts...
  9. bjwade62

    MCAD Boot Camp

    I'm still looking for an answer. Anyone?
  10. bjwade62

    DoDragDrop

    Worked perfectly. Thanks.
  11. bjwade62

    DoDragDrop

    I want to drag an item in a listbox (that represents a file) into another application. The drop is the easy part since the other application receives dropped files. How do I get started? I've tried the mousemove\DoDragDrop event with no luck. Can anyone help me? Thanks, Bernie
  12. bjwade62

    MCAD Boot Camp

    Can anyone recommend a good boot camp for MCAD certification? What are your thoughts on boot camps in general? Thanks, Bernie
  13. bjwade62

    Windows copy animation

    Hi John, Well as I said, I did manage to get it working. It works great if the file already exists, I get the nice overwrite dialogue box. However, the copy progress dialogue doesn't seem to appear at all. Any Ideas? Thanks again for all your help. I really appreciate it. Bernie
  14. bjwade62

    Windows copy animation

    I think I got it. I was trying - My.Computer.FileSystem.CopyFile("c:\0000\MyFile.txt", "c:\temp\MyFile.txt",true) and - My.Computer.FileSystem.CopyFile("c:\0000\MyFile.txt", "c:\temp\MyFile.txt",showui) This worked - My.Computer.FileSystem.CopyFile("c:\0000\MyFile.txt"...
  15. bjwade62

    Windows copy animation

    You've been a great help but I'm still having problems getting it to work. I'm pretty new to VB.NET so I guess I need a little more detail. I've read the documentation you linked for me but am unable to apply it correctly. I hate to ask but can you give me a little more information on it's...
  16. bjwade62

    Windows copy animation

    Thanks for the reply. I'm still having problems with the dialogue box appearing. Here's what I'm using. My.Computer.FileSystem.CopyFile("c:\0000\MyFile.txt", "c:\temp\MyFile.txt")
  17. bjwade62

    VB.NET Calculator program!!!

    Three possible reason's why you're not getting answers. 1. Your attitude... 2. Shouting... All caps... 3. You're asking for someone to do your work for you instead of asking for help. For example "just give me the code" Try a different approach and you may get different results.
  18. bjwade62

    Windows copy animation

    Does anyone know how to use the Windows copy animation in .NET? It was pretty easy in VB6. Just place an animation control on a from, set a couple properties and you're in business. What could be easier? I can't find much information on the .NET way of doing it. Any help would be appreciated.
  19. bjwade62

    Panning a picturebox control

    I have a picturebox control that I want to create a pan movement that follows the cursor's movement. I need some help getting started. I've looked at mouse down/up events along with the cursor.location property but can't seem to get it working. Any ideas? Thanks
  20. bjwade62

    CheckedListBox Problems

    I really want to do as you asked but I'm still not getting it write. Two quaestions. 1. Why does my code show up in a very small window with scrollbars? 2. All the tabs (indents?) are missing. Do you have to add those manually? Bernie
Back
Top