[VB] info sur modification fichier texte

info sur modification fichier texte [VB] - VB/VBA/VBS - Programmation

Marsh Posté le 20-12-2004 à 23:41:44    

hello
c'est mon tout premier code, je me suis débrouillé avec les infos que j'ai trouvé sur le net mais là je bloque
 
mon code:

Code :
  1. Private Sub Command1_Click()
  2. Open "C:\perform.ini" For Output As #1
  3. Print #1, "[perform]"
  4. Print #1, "n0=Hyperiums,/nickserv ghost ";
  5. Print #1, Text1.Text;
  6. Print #1, Text2.Text
  7. Print #1, "n1=Hyperiums,/nick ";
  8. Print #1, Text1.Text
  9. Print #1, "n2=Hyperiums,/nickserv identify ";
  10. Print #1, Text2.Text
  11. Print #1, "n3=Hyperiums,/join ";
  12. Print #1, Text3.Text;
  13. Print #1, Text4.Text
  14. Print #1, "n4=Hyperiums,/join ";
  15. Print #1, Text5.Text;
  16. Print #1, Text6.Text
  17. Print #1, "n5=Hyperiums,/join ";
  18. Print #1, Text7.Text;
  19. Print #1, Text8.Text
  20. Close #1
  21. End
  22. End Sub


 
quand c'est un texte fixe j'ai juste rajouté un espace entre les ""
le truc c'est que par exemple dans ce cas là:

Code :
  1. Print #1, Text3.Text;
  2. Print #1, Text4.Text


j'ai le point virgule qui ne me renvoit pas a la ligne mais je ne sais pas comment rajouter un espace entre text3 et text4
 
est ce que quelqu'un peut me dire comment faire ?
 
merci


Message édité par _lapin_ le 20-12-2004 à 23:42:45
Reply

Marsh Posté le 20-12-2004 à 23:41:44   

Reply

Marsh Posté le 20-12-2004 à 23:54:42    

habhen c'est marrant j'ai trouvé tout seul en testant :D
 

Code :
  1. Print #1, Text3.Text; " ";
  2. Print #1, Text4.Text


 
ca marche comme ca
 
je vais tenter de l'améliorer un peu

Reply

Marsh Posté le 21-12-2004 à 01:12:02    

arf a part l'instalateur automatique, est ce qu'il y a un moyen de charger les bibliotheques ?
il me creer ca dans programme files j'ai beau changer le chemin il ne le met pas ailleur.
j'aimerai juste qu'il me charge les bibliotheques et qu'il me laisse l'exe dans le repertoire courant...
 
pas besoin non plus de l'ajouter au menu demarrer :/
 
 

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed