Click here to Skip to main content
15,892,480 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Help Experts...CString to LPCSTR conversion Pin
rohit.dhamija3-Sep-03 23:35
rohit.dhamija3-Sep-03 23:35 
GeneralRe: Help Experts...CString to LPCSTR conversion Pin
Braulio Dez3-Sep-03 23:49
Braulio Dez3-Sep-03 23:49 
GeneralRe: Help Experts...CString to LPCSTR conversion Pin
Maverick4-Sep-03 22:30
Maverick4-Sep-03 22:30 
GeneralRe: Help Experts...CString to LPCSTR conversion Pin
Dangleberry22-Sep-03 0:00
sussDangleberry22-Sep-03 0:00 
GeneralRe: Help Experts...CString to LPCSTR conversion Pin
rohit.dhamija22-Sep-03 0:11
rohit.dhamija22-Sep-03 0:11 
Questionhow to get IP Pin
igala.net3-Sep-03 19:21
igala.net3-Sep-03 19:21 
AnswerRe: how to get IP Pin
Jason Henderson4-Sep-03 2:44
Jason Henderson4-Sep-03 2:44 
GeneralTranslate this method to c++; Pin
Bo Hunter3-Sep-03 19:05
Bo Hunter3-Sep-03 19:05 
Can some one help me write this in c++;
I am using csharp but i want this in native code;

public static bool Contains( ref string[][] lookupTable, string value, bool ignoreCase )
	{
	int i = value.Length;
	if ( i <= 0 || i - 1 >= (int)lookupTable.Length )
	{
		return false;
	}
	string[] strs = lookupTable[i - 1];
	if ( strs == null )
	{
		return false;
	}
	else
	{
		return Contains( ref strs, value, ignoreCase );
	}
}


Thank You
Bo Hunter
GeneralRe: Translate this method to c++; Pin
HJo3-Sep-03 23:33
HJo3-Sep-03 23:33 
GeneralRe: Translate this method to c++; Pin
Bo Hunter4-Sep-03 11:37
Bo Hunter4-Sep-03 11:37 
GeneralRe: Translate this method to c++; Pin
Jonas Larsson4-Sep-03 4:21
Jonas Larsson4-Sep-03 4:21 
GeneralIs this a homework assignment? Pin
JWood5-Sep-03 3:43
JWood5-Sep-03 3:43 
GeneralHelp!!! Pin
jimsleon3-Sep-03 18:54
jimsleon3-Sep-03 18:54 
GeneralRe: Help!!! Pin
Magnus Westin3-Sep-03 21:20
Magnus Westin3-Sep-03 21:20 
GeneralRe: Help!!! Pin
Dudi Avramov4-Sep-03 0:59
Dudi Avramov4-Sep-03 0:59 
GeneralRe: Help!!! Pin
Dudi Avramov3-Sep-03 22:58
Dudi Avramov3-Sep-03 22:58 
Questiondll and installation? Pin
theCapt3-Sep-03 18:12
susstheCapt3-Sep-03 18:12 
QuestionBSTR question? Pin
theCapt3-Sep-03 18:06
susstheCapt3-Sep-03 18:06 
AnswerRe: BSTR question? Pin
TrickyFishy3-Sep-03 18:48
TrickyFishy3-Sep-03 18:48 
AnswerRe: BSTR question? Pin
Braulio Dez3-Sep-03 23:56
Braulio Dez3-Sep-03 23:56 
QuestionCFormView + CDialogBar ?????? Pin
kumaru_san3-Sep-03 18:00
kumaru_san3-Sep-03 18:00 
GeneralTTFTODXF Pin
wow99993-Sep-03 17:14
wow99993-Sep-03 17:14 
GeneralRe: TTFTODXF Pin
Iain Clarke, Warrior Programmer3-Sep-03 22:41
Iain Clarke, Warrior Programmer3-Sep-03 22:41 
QuestionHow do i pass data to a view from an independent class? Pin
Member 4048133-Sep-03 15:13
Member 4048133-Sep-03 15:13 
QuestionWhere to put the menu handler in multi-view SDI application? Pin
Binayak3-Sep-03 13:48
Binayak3-Sep-03 13:48 

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.