![]() |
|
![]() |
|
|
Thread Tools | Display Modes |
|
|
#1 |
|
Professional Programmer
|
How to make a file
For my RA and my list boxes i want to save the admin names and passwprd to a text file and put it in on their desktop. Please help
|
|
|
|
|
|
#2 |
|
Programming Guru
![]() ![]() |
__________________
Profanity is the one language that all programmers understand. Check out my Blog <---updated Nov 30 2007! |
|
|
|
|
|
#3 |
|
Programming Guru
![]() ![]() ![]() |
what have you tried so far?
__________________
http://jasonpowers.net "There are a thousand hacking at the branches of evil to one who is striking at the root." |
|
|
|
|
|
#4 |
|
Professional Programmer
|
Nothing really, im still learning VB and i dont know all the syntax so i dont really know to use like File Openers or whatever it called
|
|
|
|
|
|
#5 |
|
Programming Guru
![]() ![]() ![]() |
Here is a logging function I wrote in VB.Net... for a recent project. Maybe it can help point you in the right direction.
...
Public LOGFILE = "log.txt"
...
Public Function LOG(ByRef info As String) As Object
On Error Resume Next
If Err.Number = 0 Then
FileOpen(1, LOGFILE, OpenMode.Append)
PrintLine(1, TimeOfDay & "-> " & info)
FileClose(1)
End If
End Function
__________________
http://jasonpowers.net "There are a thousand hacking at the branches of evil to one who is striking at the root." |
|
|
|
![]() |
| Bookmarks |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | |
| Display Modes | |
|
|