Click here to Skip to main content
15,908,674 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
QuestionVisual Studio Add-In for checking if file is up-to-date Pin
Code-o-mat28-Jan-11 3:26
Code-o-mat28-Jan-11 3:26 
AnswerRe: Visual Studio Add-In for checking if file is up-to-date Pin
TheGreatAndPowerfulOz28-Jan-11 7:27
TheGreatAndPowerfulOz28-Jan-11 7:27 
GeneralRe: Visual Studio Add-In for checking if file is up-to-date Pin
Code-o-mat28-Jan-11 8:49
Code-o-mat28-Jan-11 8:49 
GeneralRe: Visual Studio Add-In for checking if file is up-to-date Pin
TheGreatAndPowerfulOz28-Jan-11 10:10
TheGreatAndPowerfulOz28-Jan-11 10:10 
QuestionRe: Visual Studio Add-In for checking if file is up-to-date Pin
David Crow28-Jan-11 9:33
David Crow28-Jan-11 9:33 
AnswerRe: Visual Studio Add-In for checking if file is up-to-date Pin
Code-o-mat28-Jan-11 10:20
Code-o-mat28-Jan-11 10:20 
GeneralRe: Visual Studio Add-In for checking if file is up-to-date Pin
David Crow28-Jan-11 10:27
David Crow28-Jan-11 10:27 
GeneralRe: Visual Studio Add-In for checking if file is up-to-date Pin
Code-o-mat28-Jan-11 10:41
Code-o-mat28-Jan-11 10:41 
Questionaccess of disk and partition of disk Pin
john563228-Jan-11 0:01
john563228-Jan-11 0:01 
AnswerRe: access of disk and partition of disk Pin
Richard MacCutchan28-Jan-11 1:33
mveRichard MacCutchan28-Jan-11 1:33 
QuestionRe: access of disk and partition of disk Pin
CPallini28-Jan-11 2:32
mveCPallini28-Jan-11 2:32 
QuestionHow Can I Get Pixel Color of a bitmap image? Pin
Amrit Agr27-Jan-11 22:46
Amrit Agr27-Jan-11 22:46 
QuestionRe: How Can I Get Pixel Color of a bitmap image? Pin
CPallini27-Jan-11 23:00
mveCPallini27-Jan-11 23:00 
AnswerRe: How Can I Get Pixel Color of a bitmap image? Pin
User 742933827-Jan-11 23:22
professionalUser 742933827-Jan-11 23:22 
AnswerRe: How Can I Get Pixel Color of a bitmap image? Pin
Code-o-mat28-Jan-11 3:47
Code-o-mat28-Jan-11 3:47 
QuestionHow to load 768*576 image in opengl ? Pin
GAJERA27-Jan-11 21:13
GAJERA27-Jan-11 21:13 
AnswerRe: How to load 768*576 image in opengl ? Pin
Cedric Moonen27-Jan-11 22:38
Cedric Moonen27-Jan-11 22:38 
GeneralRe: How to load 768*576 image in opengl ? Pin
GAJERA28-Jan-11 17:12
GAJERA28-Jan-11 17:12 
GeneralRe: How to load 768*576 image in opengl ? Pin
Cedric Moonen28-Jan-11 23:51
Cedric Moonen28-Jan-11 23:51 
QuestionHow to let the computer boot at some time? Pin
yu-jian27-Jan-11 15:43
yu-jian27-Jan-11 15:43 
GeneralRe: How to let the computer boot at some time? Pin
Cool_Dev27-Jan-11 17:25
Cool_Dev27-Jan-11 17:25 
GeneralRe: How to let the computer boot at some time? Pin
yu-jian27-Jan-11 19:57
yu-jian27-Jan-11 19:57 
AnswerRe: How to let the computer boot at some time? Pin
CPallini27-Jan-11 22:10
mveCPallini27-Jan-11 22:10 
GeneralRe: How to let the computer boot at some time? Pin
yu-jian28-Jan-11 1:55
yu-jian28-Jan-11 1:55 
QuestionChar To String & Then Array. Pin
Mike Certini27-Jan-11 12:51
Mike Certini27-Jan-11 12:51 
I am currently taking data from a database that is in the form of char data and attempting to convert to a string and then saving in a char array. It appears that these strings have to be saved in a two dimension array. The first array or inner array containing each element of the date in the form of chars. The outer array then contains each record or occurance of the date. Can someone help me in copying the string data into the array? Listed below is what I have so far.

char Date1[10] = {};
vFieldDate      = rec->Fields->GetItem("Date")->Value;


for(int r = 0; r < 1; r++)
	{
	for(int c = 0; c < 10; c++)
	       {
	       strcpy (Date1,vFieldDate);
	       strcpy (Date[r][c],Date1[10]);
	       printf ("%s",Date[r][c]);
	       }
	}

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.