Click here to Skip to main content
15,897,891 members
Home / Discussions / C#
   

C#

 
AnswerRe: How do you link a Treeview to a list View ? Pin
Mohammad Dayyan15-Oct-08 1:14
Mohammad Dayyan15-Oct-08 1:14 
Questionmethod conversion from C to C# Pin
Programm3r14-Oct-08 22:45
Programm3r14-Oct-08 22:45 
AnswerRe: method conversion from C to C# Pin
Guffa14-Oct-08 23:21
Guffa14-Oct-08 23:21 
GeneralRe: method conversion from C to C# Pin
Programm3r14-Oct-08 23:36
Programm3r14-Oct-08 23:36 
GeneralRe: method conversion from C to C# Pin
Guffa15-Oct-08 2:07
Guffa15-Oct-08 2:07 
GeneralRe: method conversion from C to C# Pin
Programm3r15-Oct-08 2:35
Programm3r15-Oct-08 2:35 
AnswerRe: method conversion from C to C# Pin
Programm3r14-Oct-08 23:56
Programm3r14-Oct-08 23:56 
AnswerRe: method conversion from C to C# Pin
Dave Doknjas15-Oct-08 13:38
Dave Doknjas15-Oct-08 13:38 
If you don't want to convert to 'unsafe' code, then the following might do (produced by C++ to C# Converter):

// calling method
private void test()
{
Code = GetData(i, DataSock, ref (string)gConnectData[i].Request, STRING_SIZE);
}

// GetData Method
private int GetData(int Connect, int Sock, ref string Buffer, int BufLen)
{
int Code;
Code = cscGetData(Sock, Buffer, BufLen);
if(Code < 0)
{
DisplayError(Connect, Code, (string)"cscGetData:");
gConnectData[Connect].ConnectState = STATE_FINI;
}
return Code;
}

David Anton
http://www.tangiblesoftwaresolutions.com
C++ to C# Converter
C++ to VB Converter
C++ to Java Converter
VB & C# to Java Converter
Java to VB & C# Converter
Instant C#: VB to C# converter
Instant VB: C# to VB converter
Instant C++: convert VB, C#, or Java to C++/CLI
QuestionUnregistering Events Pin
Member 419713614-Oct-08 22:25
Member 419713614-Oct-08 22:25 
AnswerRe: Unregistering Events Pin
Eduard Keilholz14-Oct-08 22:39
Eduard Keilholz14-Oct-08 22:39 
AnswerRe: Unregistering Events Pin
Simon P Stevens14-Oct-08 22:47
Simon P Stevens14-Oct-08 22:47 
GeneralRe: Unregistering Events Pin
Member 419713614-Oct-08 23:35
Member 419713614-Oct-08 23:35 
GeneralRe: Unregistering Events Pin
Simon P Stevens15-Oct-08 0:38
Simon P Stevens15-Oct-08 0:38 
GeneralRe: Unregistering Events Pin
Member 419713615-Oct-08 0:51
Member 419713615-Oct-08 0:51 
QuestionHow to connect webservice through provided WSDL and proxy class Pin
shames(Sam)14-Oct-08 22:19
shames(Sam)14-Oct-08 22:19 
AnswerRe: How to connect webservice through provided WSDL and proxy class Pin
leppie15-Oct-08 1:49
leppie15-Oct-08 1:49 
AnswerRe: How to connect webservice through provided WSDL and proxy class Pin
leppie15-Oct-08 1:52
leppie15-Oct-08 1:52 
GeneralRe: How to connect webservice through provided WSDL and proxy class Pin
shames(Sam)15-Oct-08 3:27
shames(Sam)15-Oct-08 3:27 
Questionmerged cell aoto fit in c# [modified] Pin
Nilish14-Oct-08 22:06
Nilish14-Oct-08 22:06 
AnswerRe: merged cell aoto fit in c# Pin
Mycroft Holmes14-Oct-08 22:18
professionalMycroft Holmes14-Oct-08 22:18 
GeneralRe: merged cell aoto fit in c# Pin
Nilish14-Oct-08 23:01
Nilish14-Oct-08 23:01 
QuestionValidators are not working in Iframe Pin
MAT100314-Oct-08 21:29
MAT100314-Oct-08 21:29 
AnswerRe: Validators are not working in Iframe Pin
leppie14-Oct-08 21:40
leppie14-Oct-08 21:40 
GeneralRe: Validators are not working in Iframe Pin
MAT100314-Oct-08 21:56
MAT100314-Oct-08 21:56 
GeneralRe: Validators are not working in Iframe Pin
leppie14-Oct-08 22:05
leppie14-Oct-08 22:05 

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.