Visual C++ 6.0
Last night I lost the contents of my log file (opened and written to by my application) because of power loss. Even though the program must have written lines++ to it, the log file...
http://www.experts-exchange.com/Programming/System/Windows__Programming/MFC/Q_10207705.htm...
Zones:
Windows MFCDate Answered: 09/21/1999 Grade: C Views: 0
hi,
in one of my programs i need to write blocks of data into a file, first 0's, then 1's and then some other data. basically a file wiper. i read from the original file a block of data and in ...
http://www.experts-exchange.com/Programming/Languages/Pascal/Delphi/Q_20006638.html
#include <conio.h>
#include <stdio.h>
void main()
{
int c;
char str[81];
printf("Press a key");
c = getch();
printf("\nYou pressed \'%c\'\n", c);
...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20184157.html
Zones:
C++Date Answered: 09/19/2001 Grade: B Views: 0
I'm trying to make a small text message briefly flash in different colors on the screen. Take a look at the code:
dc.SetTextColor(RGB(0, 0, 0));
dc.TextOut(451, 434, "Click here to continue..."...
http://www.experts-exchange.com/Programming/System/Windows__Programming/MFC/Q_20512059.htm...
Zones:
Windows MFCDate Answered: 02/17/2003 Grade: B Views: 0
All html output from a window_onload script seems to happen at the end of the script.
Is it not possible to periodically flush html out to the page during a prolonged window_onload script in a s...
http://www.experts-exchange.com/Programming/Languages/Scripting/JavaScript/Q_20810284.html
Zones:
JavaScriptDate Answered: 11/30/2003 Grade: B Views: 0
Hi I am trying to enter data into some structs dynamically.
My code is as follows
#include <stdio.h>
struct node {
int data;
char object[25];
struct node *next_ptr;
};
int main...
http://www.experts-exchange.com/Programming/Languages/C/Q_20813753.html
Zones:
CDate Answered: 03/13/2004 Grade: B Views: 5
I am writing an application that talks to a device connected to the serial port. My application at times fails to work properly ..ie i am not getting acks for some commands that i send out for whic...
http://www.experts-exchange.com/Programming/System/Windows__Programming/Q_21071228.html
I am using Veritas BackupExec 9.1 in order to backup our Exchange Server. I have it set to run a full backup and flush the committed logs, but it doesn't. I checked out our log directory and it h...
http://www.experts-exchange.com/Software/Server_Software/Email_Servers/Exchange/Q_21368578...
Zones:
ExchangeDate Answered: 04/28/2005 Grade: B Views: 9
On my Windows 2000 web server, my understanding is that the following counters are as follows:
IIS Object Cache Flushes must be greater than 1000
IIS Object Cache Hits must be less than 500
...
http://www.experts-exchange.com/Software/Server_Software/Web_Servers/Microsoft_IIS/Q_21853...
I connect to a server using JMX connection periodically each 10 sec.
using JMXConnectorFactory.connect
when I unplug the network cable and plug it again ket's say after 20 seconds, seems like the...
http://www.experts-exchange.com/Programming/Languages/Java/Q_22899916.html
Zones:
JavaDate Answered: 12/28/2007 Grade: B Views: 0