Click here to Skip to main content
15,899,935 members
Home / Discussions / C#
   

C#

 
AnswerRe: ObjectDataSource ID Pin
Expert Coming14-Jun-07 19:13
Expert Coming14-Jun-07 19:13 
QuestionAutoSave change in databound comboBox Pin
Glen Harvy14-Jun-07 17:31
Glen Harvy14-Jun-07 17:31 
GeneralRe: AutoSave change in databound comboBox Pin
Martin#14-Jun-07 21:37
Martin#14-Jun-07 21:37 
Questionspecial characters are coming in XML output Pin
saymajum14-Jun-07 17:14
saymajum14-Jun-07 17:14 
AnswerRe: special characters are coming in XML output Pin
Christian Graus14-Jun-07 17:31
protectorChristian Graus14-Jun-07 17:31 
GeneralRe: special characters are coming in XML output Pin
saymajum14-Jun-07 19:24
saymajum14-Jun-07 19:24 
QuestionA qustion on Dll Call Pin
Xiaoming Qian14-Jun-07 15:16
Xiaoming Qian14-Jun-07 15:16 
AnswerRe: A qustion on Dll Call Pin
Tarakeshwar Reddy14-Jun-07 17:03
professionalTarakeshwar Reddy14-Jun-07 17:03 
This has to be
Xiaoming Qian wrote:
[DllImport("mwhandset")]
public static extern Int16 MW_GetDBRecord(IntPtr icdev,Int16 fsid,
Int16 rec_size,ref string buff,ref int rlen);


Like this:
public static extern int MW_GetDBRecord(IntPtr icdev, int fsid,<br />
int rec_size, [Out] byte[] buf, int bufSize);<br />


And this has to be
Xiaoming Qian wrote:
MW_GetDBRecord(m_icdev,0,16,buff,ref rlen);


this
int size = 256; //what ever you want it to be
byte[] buf = new byte[size];

MW_GetDBRecord(m_icdev, 0, 16, buf, size);


I suggest you read these articles.[^]




Tarakeshwar Reddy
MCP, CCIE Q(R&S)

There are two kinds of people, those who do the work and those who take the credit. Try to be in the first group; there is less competition there. - Indira Gandhi

GeneralRe: A qustion on Dll Call Pin
Xiaoming Qian14-Jun-07 20:41
Xiaoming Qian14-Jun-07 20:41 
Questionhow to put a Button Image into an array? Pin
Khoramdin14-Jun-07 14:38
Khoramdin14-Jun-07 14:38 
AnswerRe: how to put a Button Image into an array? Pin
alexey N14-Jun-07 18:44
alexey N14-Jun-07 18:44 
QuestionConvert Large Icons into Small???? Pin
classNoob14-Jun-07 13:29
classNoob14-Jun-07 13:29 
QuestionUsing your own classes in methods. Pin
jblouir14-Jun-07 12:32
jblouir14-Jun-07 12:32 
AnswerRe: Using your own classes in methods. Pin
Guffa14-Jun-07 12:55
Guffa14-Jun-07 12:55 
GeneralRe: Using your own classes in methods. Pin
jblouir14-Jun-07 13:05
jblouir14-Jun-07 13:05 
GeneralRe: Using your own classes in methods. Pin
jblouir14-Jun-07 13:26
jblouir14-Jun-07 13:26 
GeneralWell... Pin
jblouir14-Jun-07 13:31
jblouir14-Jun-07 13:31 
GeneralRe: Well... Pin
jblouir14-Jun-07 13:37
jblouir14-Jun-07 13:37 
GeneralRe: Well... Pin
jblouir14-Jun-07 13:47
jblouir14-Jun-07 13:47 
GeneralRe: Well... Pin
Christian Graus14-Jun-07 13:52
protectorChristian Graus14-Jun-07 13:52 
AnswerRe: Using your own classes in methods. Pin
Guffa14-Jun-07 13:30
Guffa14-Jun-07 13:30 
GeneralRe: Using your own classes in methods. Pin
Rudolf Jan15-Jun-07 0:27
Rudolf Jan15-Jun-07 0:27 
Questionmulti list problem [modified] Pin
bolhassanim@bellsouth.net14-Jun-07 10:34
professionalbolhassanim@bellsouth.net14-Jun-07 10:34 
AnswerRe: multi list problem Pin
Christian Graus14-Jun-07 11:47
protectorChristian Graus14-Jun-07 11:47 
GeneralRe: multi list problem Pin
bolhassanim@bellsouth.net14-Jun-07 18:19
professionalbolhassanim@bellsouth.net14-Jun-07 18:19 

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.