Search results for query: *

  1. B

    Urgent ! SOS ! How to remove CRLF in file

    Look at the Replace function
  2. B

    Using Resource files in VB.NET

    Thanks for the reply!
  3. B

    Using Resource files in VB.NET

    Does anyone have a link or links to any good tutorials or discussions regarding the use of resource files in VB.NET? I've looked at the Microsoft stuff, but it generally concentrates on localization. I'm really looking for info about storing icons and graphics and how to recall them when...
  4. B

    Hot can I keep CHECKBOX checked while going from form to form

    In your form1 button click event, each time you DIM a new form2, the checkboxes will be blank if that's the default property setting because you're creating a new form2. Something along the lines of this should work.... If Form2 IS Nothing then dim form2 as new ..... end if Form2.show
  5. B

    question on form

    The program will end after the last loaded form is unloaded from memory. However, the recommended way to end your application is by using Application.Exit. Also, you can't just show a form like in VB6. You have to create an instance of the form and show that: Dim frmMyForm as New Form1...
  6. B

    Treeview help please

    I have an MDI app with a treeview. The treeview has a root node and two child nodes: "Active" & "Inactive". Under each of these are child nodes that are added from a db based on the status of the record. Double-clicking on a child node opens a child form and displays the record. My problem is...
  7. B

    Any difference?

    Thanks for the reply and the link - it provided the info I was looking for. I primarily use the personal edition at home for development purposes and then export the db to the production server when needed. I haven't used MSDE at all.
  8. B

    Any difference?

    Any difference? [Resolved] What's the difference (if any) between MSDE and Sql Server Personal Edition that comes with Sql Server 2000?? Thanks
  9. B

    ASCII to EBCDIC - Dealing with COMP3 fields using VB.NET

    Searched Google for "ascii to EBCDIC" and got several hits on utilities to convert it.
Back
Top