Click here to Skip to main content
15,886,110 members
Home / Discussions / C#
   

C#

 
QuestionHow can i fire event from UserControl to the Dialog ? Pin
Yanshof29-Jul-07 3:56
Yanshof29-Jul-07 3:56 
AnswerRe: How can i fire event from UserControl to the Dialog ? Pin
Abisodun29-Jul-07 4:31
Abisodun29-Jul-07 4:31 
GeneralRe: How can i fire event from User Control to the Dialog ? Pin
Yanshof29-Jul-07 19:52
Yanshof29-Jul-07 19:52 
GeneralRe: How can i fire event from User Control to the Dialog ? [modified] Pin
Abisodun30-Jul-07 1:36
Abisodun30-Jul-07 1:36 
QuestionSorting DataGridview column programatically Pin
Nadia Monalisa29-Jul-07 2:43
Nadia Monalisa29-Jul-07 2:43 
AnswerRe: Sorting DataGridview column programatically Pin
DignifiedWorld29-Jul-07 4:07
DignifiedWorld29-Jul-07 4:07 
GeneralRe: Sorting DataGridview column programatically Pin
Nadia Monalisa29-Jul-07 5:18
Nadia Monalisa29-Jul-07 5:18 
AnswerRe: Sorting DataGridview column programatically Pin
Edwin Syarief29-Jul-07 23:10
Edwin Syarief29-Jul-07 23:10 
Hi,

I have my way to sort DataGridView like this, but improve it by your self:

Step 1:
- I create stored procedure "sp_sort" that query is "SELECT * FROM tablename ORDER BY id DESC"

Step 2:
- On form load you type this :

<code>
SqlCommand cmd = new Sqlcommand("sp_sort", conn);
cmd.CommandType = CommandType.StoredProcedure;
SqlDataAdapter adapter = new SqlDataAdapter(cmd);
DataTable dt = new DataTable();
adapter.Fill(dt);

myGridView.DataSource = dt;
</code>


Regard,

Edwin
Questiondisplay mdi childs as tab pages Pin
cellardoor071629-Jul-07 2:37
cellardoor071629-Jul-07 2:37 
AnswerRe: display mdi childs as tab pages Pin
Dave Kreskowiak29-Jul-07 3:16
mveDave Kreskowiak29-Jul-07 3:16 
QuestionSpecial characters in enum Pin
DignifiedWorld29-Jul-07 1:52
DignifiedWorld29-Jul-07 1:52 
AnswerRe: Special characters in enum Pin
Brady Kelly29-Jul-07 2:01
Brady Kelly29-Jul-07 2:01 
AnswerRe: Special characters in enum Pin
_Damian S_29-Jul-07 2:09
professional_Damian S_29-Jul-07 2:09 
AnswerRe: Special characters in enum Pin
DignifiedWorld29-Jul-07 2:12
DignifiedWorld29-Jul-07 2:12 
GeneralRe: Special characters in enum Pin
Dave Kreskowiak29-Jul-07 3:11
mveDave Kreskowiak29-Jul-07 3:11 
GeneralRe: Special characters in enum Pin
Brady Kelly29-Jul-07 3:16
Brady Kelly29-Jul-07 3:16 
GeneralRe: Special characters in enum Pin
Marc Clifton29-Jul-07 3:23
mvaMarc Clifton29-Jul-07 3:23 
AnswerRe: Special characters in enum Pin
Marc Clifton29-Jul-07 3:16
mvaMarc Clifton29-Jul-07 3:16 
AnswerRe: Special characters in enum Pin
DignifiedWorld29-Jul-07 3:48
DignifiedWorld29-Jul-07 3:48 
QuestionSteganography Lib.. ? Pin
Software_Specialist29-Jul-07 0:49
Software_Specialist29-Jul-07 0:49 
AnswerRe: Steganography Lib.. ? Pin
Brady Kelly29-Jul-07 1:58
Brady Kelly29-Jul-07 1:58 
GeneralRe: Steganography Lib.. ? Pin
Software_Specialist29-Jul-07 3:29
Software_Specialist29-Jul-07 3:29 
QuestionImplemeting company newspaper Pin
Berlus29-Jul-07 0:05
Berlus29-Jul-07 0:05 
AnswerRe: Implemeting company newspaper Pin
ekynox29-Jul-07 0:28
ekynox29-Jul-07 0:28 
Questionhi i have one problem Pin
deepaksringr28-Jul-07 21:59
deepaksringr28-Jul-07 21:59 

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.