Search results for query: *

  1. N

    WriteLine problem with " character

    its working now, thank you very much for your help.
  2. N

    WriteLine problem with " character

    Oke the file is nu a unicode (UTF-16) format. Only the BOM is still checked when I open the file with SuperEdit. When I create a .bks file with ntbackup the BOM is unchecked, the unchecked one works the checked one not. Aaargh :mad:
  3. N

    WriteLine problem with " character

    I'm now using: Dim sw As New IO.StreamWriter("G:\Backup\Backup_TEST.bks", False, System.Text.Encoding.UTF8) But i need it in UTF16 format with the BOM (byte order mark) off. Somebody know how to do it?
  4. N

    WriteLine problem with " character

    Yeah you're right its StreamWriter. When i create a document with the streamwriter its not unicode text type. So the .bks file created with StreamWriter won't work. Is there a way to do it?
  5. N

    WriteLine problem with " character

    Thank you for your replay this is working. Only now i need to create a .bks file that will be saved in unicode format (simpel notepad editing .bks files won't work) So does somebody know how to create a .bks file with notepad
  6. N

    WriteLine problem with " character

    I;mn working on a program that create a little .bat file with some commands in it. Only i need to use this kind of text: "TEST APP" oWrite.WriteLine(" "TEST APP" ") Write line dosn't understand the "TEST APP" because the " character is part of the syntax. Is there a way to use the "...
  7. N

    Socket connection beginner

    I'm doing it for the first time. I need to setup a telnet connection to a local ip adress. I need to send and recieve command. How do i setup a socket connection in vb.net 2003 please tell me where i found a good manual and the right components.
  8. N

    Date Time problem with language settings

    I use a database (access) and have the following problem. When i enter a date in the database by using dutch i get: 5-12-2006 When using at in english i get: 12-5-2006 Is there a way to detect what langauge settings the os is using zo you can change the read direction.
  9. N

    Variable show in two different forms

    so you say, if i use a public sub With a variable, i can use that variable in a other form? Please correct met if i'm wrong.
  10. N

    Variable show in two different forms

    I have 2 forms, and i want to show the value of a variable from form1 to form2 how cani do this?
  11. N

    PDF creator

    Does anybody know a free api or ocx for creating pdf files with vb.net.
  12. N

    DateTimepicker format

    Hmm this is not working for me.
  13. N

    DateTimepicker format

    How can i get only the date in a variable or textbox from a datetimepicker?
  14. N

    SQL Select Statement Date Range issue

    oke but i uses this command: xConn.connectMe("SELECT * FROM transactie WHERE datum = '2005/10/11' ;") how can i convert the date?
  15. N

    SQL Select Statement Date Range issue

    I have the same problem i have a table with the name: transactie and a collum datum No i want all the information on a sepcific date: Why doesn't this work and how to do it right? xConn.connectMe("SELECT * FROM transactie WHERE datum = '2005/10/11' ;") Also i like to have al the...
Back
Top