Click here to Skip to main content
15,886,074 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
JokeRe: Mixing Debug and Release during execution Pin
Epi16-Apr-09 2:35
Epi16-Apr-09 2:35 
AnswerRe: Mixing Debug and Release during execution Pin
Roger Stoltz16-Apr-09 1:20
Roger Stoltz16-Apr-09 1:20 
GeneralRe: Mixing Debug and Release during execution Pin
Epi16-Apr-09 1:46
Epi16-Apr-09 1:46 
AnswerRe: Mixing Debug and Release during execution Pin
Roger Stoltz16-Apr-09 2:28
Roger Stoltz16-Apr-09 2:28 
GeneralRe: Mixing Debug and Release during execution Pin
Epi16-Apr-09 2:53
Epi16-Apr-09 2:53 
GeneralRe: Mixing Debug and Release during execution Pin
Cedric Moonen16-Apr-09 2:58
Cedric Moonen16-Apr-09 2:58 
GeneralRe: Mixing Debug and Release during execution Pin
Epi16-Apr-09 3:40
Epi16-Apr-09 3:40 
QuestionIssue using SQL server Pin
ShilpiP15-Apr-09 20:36
ShilpiP15-Apr-09 20:36 
Hi, I am creating one sample application that uses SQL Server and create one table having ID and Title (Unicode data).My problem is that i am using unicode data and when i open the table, "Question mark " is displayed in Title instead of unicode data. My workspace is unicode compiled and i am using nvarchar for lingual data as a variable. Here is my code

CDatabase db;
	CString strLingual = L"";
	// strLingual contains unicode data.
	m_edt_lingual.GetWindowTextW(strLingual);
	CString strQuery;
	try
	{
		// Test with Access database
		if (db.Open(NULL, FALSE, FALSE, _T("Driver={SQL Native Client};Server=SHILPI_PHADNIS\\SQLEXPRESS;Database=TransTool;Uid=sp;Pwd=np;")))
		{
			// Create a test table
			db.ExecuteSQL(_T("CREATE TABLE WDCheckLingual (ID INT, Title NVARCHAR(50))"));

			// Add some test data
			for (int i = 0; i < 10; i++)
			{
				strQuery.Format(_T("INSERT INTO WDCheckLingual (ID, Title) VALUES (%d, '%s')"),
					i + 1, strLingual);
				db.ExecuteSQL(strQuery);
			}

		}
	}
	catch (CException *e)
	{
		e->ReportError();
		e->Delete();
	}


Thanks in advance.... Smile | :)

Yes U Can ...If U Can ,Dream it , U can do it ...ICAN

AnswerRe: Issue using SQL server Pin
Rajesh R Subramanian28-Jun-09 9:28
professionalRajesh R Subramanian28-Jun-09 9:28 
QuestionModeless dialog box not display in center of parent dialog box. Pin
Le@rner15-Apr-09 20:03
Le@rner15-Apr-09 20:03 
AnswerRe: Modeless dialog box not display in center of parent dialog box. Pin
Joseph Marzbani15-Apr-09 20:19
Joseph Marzbani15-Apr-09 20:19 
GeneralRe: Modeless dialog box not display in center of parent dialog box. Pin
Le@rner15-Apr-09 20:25
Le@rner15-Apr-09 20:25 
AnswerRe: Modeless dialog box not display in center of parent dialog box. Pin
Naveen15-Apr-09 21:30
Naveen15-Apr-09 21:30 
GeneralRe: Modeless dialog box not display in center of parent dialog box. Pin
Le@rner15-Apr-09 21:36
Le@rner15-Apr-09 21:36 
GeneralRe: Modeless dialog box not display in center of parent dialog box. Pin
Iain Clarke, Warrior Programmer15-Apr-09 23:01
Iain Clarke, Warrior Programmer15-Apr-09 23:01 
GeneralRe: Modeless dialog box not display in center of parent dialog box. Pin
Naveen16-Apr-09 17:26
Naveen16-Apr-09 17:26 
QuestionHow to get outlook attachment event? Pin
SNI15-Apr-09 20:01
SNI15-Apr-09 20:01 
AnswerRe: How to get outlook attachment event? Pin
Stuart Dootson15-Apr-09 23:02
professionalStuart Dootson15-Apr-09 23:02 
GeneralRe: How to get outlook attachment event? Pin
SNI17-Apr-09 0:37
SNI17-Apr-09 0:37 
GeneralRe: How to get outlook attachment event? Pin
Stuart Dootson17-Apr-09 0:49
professionalStuart Dootson17-Apr-09 0:49 
GeneralRe: How to get outlook attachment event? Pin
Stuart Dootson17-Apr-09 1:06
professionalStuart Dootson17-Apr-09 1:06 
QuestionPuzzle about c++ inherent Pin
sharion15-Apr-09 19:08
sharion15-Apr-09 19:08 
AnswerRe: Puzzle about c++ inherent [modified] Pin
_AnsHUMAN_ 15-Apr-09 19:27
_AnsHUMAN_ 15-Apr-09 19:27 
AnswerRe: Puzzle about c++ inherent Pin
ParagPatel15-Apr-09 21:50
ParagPatel15-Apr-09 21:50 
AnswerRe: Puzzle about c++ inherent Pin
Stuart Dootson15-Apr-09 22:51
professionalStuart Dootson15-Apr-09 22:51 

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.