- Код: Выделить всё
Public Sub AddLog(sLog As String)
Dim f As Integer
f = FreeFile
Open LogPath For Append As f
Print #f, sLog
Close f
End Sub
Public Sub AddLog(sLog As String)
Dim f As Integer
f = FreeFile
Open LogPath For Append As f
Print #f, sLog
Close f
End Sub
#include <iostream>
#include <string>
FILE *stream;
//...
void SaveTo(char *path)
{
/* Open for write */
if( (stream = fopen(path, "w+")) == NULL)
cout << "The file '" << path << "' was not opened\n";
else
cout <<"The file '" << path << "' was opened\n";
fputs("fdsewrwrwrew",stream);
//Close stream
if (fclose(stream))
cout << "\nThe file " << path << " was not closed\n";
else
cout << "\nThe file " << path << " was closed\n";
}
LOL это что то новенькое!d3drm писал(а):...буду поглядеть!
_Мика_ писал(а):А вообще, сколько в ВБ кода и сколько на С++.....бррррр
void SaveTo(char *path, *LogString)
{ FILE *stream;
stream = fopen(path, "w+");
fputs(LogString,stream);
fclose(stream)
}
vvs_adm писал(а):_Мика_ писал(а):А вообще, сколько в ВБ кода и сколько на С++.....бррррр
- Код: Выделить всё
void SaveTo(char *path, *LogString)
{ FILE *stream;
stream = fopen(path, "w+")
fputs(LogString,stream);
fclose(stream)
}
Так меньше?
//Sub
Public Sub AddLog(sLog As String)
Dim f As Integer
f = FreeFile
Open LogPath For Append As f
Print #f, sLog
Close f
End Sub
void SaveTo(char *path, *LogString)
{ FILE *stream;
stream = fopen(path, "w+")
fputs(LogString,stream);
fclose(stream)
}
Сейчас этот форум просматривают: нет зарегистрированных пользователей и гости: 74