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

C#

 
NewsRe: How to access .chm file present in zip file in C# winform application ? Pin
Pratik_P21-Oct-13 23:02
Pratik_P21-Oct-13 23:02 
GeneralRe: How to access .chm file present in zip file in C# winform application ? Pin
Marco Bertschi21-Oct-13 23:05
protectorMarco Bertschi21-Oct-13 23:05 
QuestionHow to get print driver version Pin
Dazed.dnc21-Oct-13 15:49
Dazed.dnc21-Oct-13 15:49 
QuestionDynamic RadiobuttonList Pin
vkEE21-Oct-13 9:42
vkEE21-Oct-13 9:42 
AnswerRe: Dynamic RadiobuttonList Pin
Richard Deeming21-Oct-13 10:25
mveRichard Deeming21-Oct-13 10:25 
AnswerRe: Dynamic RadiobuttonList Pin
CodeBlack21-Oct-13 20:25
professionalCodeBlack21-Oct-13 20:25 
AnswerRe: Dynamic RadiobuttonList Pin
GuyThiebaut22-Oct-13 2:36
professionalGuyThiebaut22-Oct-13 2:36 
QuestionHow to map results from mysql select to c# DataviewGrid Pin
coder25421-Oct-13 4:39
coder25421-Oct-13 4:39 
Hello ,
Am a c# beginner and currently able to bind data from mysql to a C# DataViewGrid through dataTable and dataAdapters . I'm Wondering ,is there a way of mapping the same column by column to a DataviewGrid with already constructed columns like i do in Delphi&XstringGrid ..code snippet below......

sqlstr:=' select rno,rdate,accountof,tenant,building,receivedfrom,account,amount,posted,approved,crct from receipts where reversed <> 9 and ';

i:=1;
xs.RowCount := recordcount + 2;
while not eof do begin
xs.cells[0,i] := fieldbyname('rno').asstring;
xs.cells[1,i] := fieldbyname('accountof').asstring;
xs.cells[2,i] := fieldbyname('rdate').asstring;
xs.cells[3,i] := fieldbyname('tenant').asstring;
xs.cells[4,i] := fieldbyname('receivedfrom').asstring;
xs.cells[5,i] := fieldbyname('building').asstring;
xs.cells[6,i] := fieldbyname('account').asstring;
xs.cells[7,i] := fieldbyname('amount').asstring;
if fieldbyname('posted').asinteger = 0 then xs.cells[8,i] := 'No' else xs.cells[8,i] := 'Yes';
xs.cells[9,i] := fieldbyname('accountof').asstring;
xs.cells[12,i] := fieldbyname('crct').asstring;
building := fieldbyname('building').asstring;
if fieldbyname('approved').asinteger = 0 then xs.cells[13,i] := 'No' else xs.cells[13,i] := 'Yes';
next;Inc(i,1);
end;
end;
end;
AnswerRe: How to map results from mysql select to c# DataviewGrid Pin
Eddy Vluggen21-Oct-13 7:24
professionalEddy Vluggen21-Oct-13 7:24 
QuestionHow to Insert Data Into .Sql File Pin
Django_Untaken21-Oct-13 0:05
Django_Untaken21-Oct-13 0:05 
AnswerRe: How to Insert Data Into .Sql File Pin
Eddy Vluggen21-Oct-13 0:25
professionalEddy Vluggen21-Oct-13 0:25 
GeneralRe: How to Insert Data Into .Sql File Pin
Django_Untaken21-Oct-13 0:28
Django_Untaken21-Oct-13 0:28 
AnswerRe: How to Insert Data Into .Sql File Pin
OriginalGriff21-Oct-13 0:57
mveOriginalGriff21-Oct-13 0:57 
Questiononline exam using dot net and c# - ms sql server Pin
ShrikrishnaG20-Oct-13 23:15
ShrikrishnaG20-Oct-13 23:15 
QuestionRe: online exam using dot net and c# - ms sql server Pin
Eddy Vluggen21-Oct-13 0:27
professionalEddy Vluggen21-Oct-13 0:27 
AnswerRe: online exam using dot net and c# - ms sql server Pin
OriginalGriff21-Oct-13 0:57
mveOriginalGriff21-Oct-13 0:57 
GeneralRe: online exam using dot net and c# - ms sql server Pin
Marco Bertschi21-Oct-13 22:41
protectorMarco Bertschi21-Oct-13 22:41 
AnswerRe: online exam using dot net and c# - ms sql server Pin
Abhinav S21-Oct-13 3:02
Abhinav S21-Oct-13 3:02 
AnswerRe: online exam using dot net and c# - ms sql server Pin
Marco Bertschi21-Oct-13 22:42
protectorMarco Bertschi21-Oct-13 22:42 
QuestionHow to pass data from 1 client to another trugh server? Pin
tdcmystere20-Oct-13 6:40
tdcmystere20-Oct-13 6:40 
AnswerRe: How to pass data from 1 client to another trugh server? Pin
OriginalGriff20-Oct-13 23:12
mveOriginalGriff20-Oct-13 23:12 
QuestionDeserialize multiple list xml and bind to Datagridview Pin
cherry chelsea18-Oct-13 20:02
cherry chelsea18-Oct-13 20:02 
Questionwho can tell me how to not to use WMI to change Ip address? Pin
fengyuchun8818-Oct-13 18:13
fengyuchun8818-Oct-13 18:13 
AnswerRe: who can tell me how to not to use WMI to change Ip address? Pin
Abhinav S18-Oct-13 21:46
Abhinav S18-Oct-13 21:46 
GeneralRe: who can tell me how to not to use WMI to change Ip address? Pin
tdcmystere20-Oct-13 6:48
tdcmystere20-Oct-13 6: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.