Click here to Skip to main content
15,887,936 members
Home / Discussions / C#
   

C#

 
QuestionThe report has no tables. Pin
waleed994-Mar-07 19:56
waleed994-Mar-07 19:56 
Questionhow to send a delegate to a fuction with a parameter? Pin
Hussam Fattahi4-Mar-07 19:43
Hussam Fattahi4-Mar-07 19:43 
AnswerRe: how to send a delegate to a fuction with a parameter? Pin
VirtualVoid.NET4-Mar-07 21:26
VirtualVoid.NET4-Mar-07 21:26 
GeneralRe: how to send a delegate to a fuction with a parameter? Pin
Hussam Fattahi4-Mar-07 22:52
Hussam Fattahi4-Mar-07 22:52 
GeneralRe: how to send a delegate to a fuction with a parameter? Pin
VirtualVoid.NET4-Mar-07 23:51
VirtualVoid.NET4-Mar-07 23:51 
AnswerRe: how to send a delegate to a fuction with a parameter? Pin
Ennis Ray Lynch, Jr.5-Mar-07 4:15
Ennis Ray Lynch, Jr.5-Mar-07 4:15 
QuestionHow to close the window using its Window Handle. Pin
engsrini4-Mar-07 19:41
engsrini4-Mar-07 19:41 
AnswerRe: How to close the window using its Window Handle. Pin
stancrm4-Mar-07 22:06
stancrm4-Mar-07 22:06 
[DllImport("user32.dll")]
static extern bool CloseWindow(IntPtr hWnd);

[DllImport("user32.dll")]
static extern System.IntPtr FindWindow(string lpClassName, string lpWindowName);

private void button1_Click(object sender, EventArgs e)
{
  string lpClassName = "WindowClass1";
  string lpWindowName = "MyWindow1";

  IntPtr hWnd = FindWindow(lpClassName, lpWindowName);
  CloseWindow(hWnd);
}

GeneralRe: How to close the window using its Window Handle. Pin
engsrini4-Mar-07 22:32
engsrini4-Mar-07 22:32 
Questionhow to update changes in SQL database using DataAdapter Pin
niting854-Mar-07 19:22
niting854-Mar-07 19:22 
AnswerRe: how to update changes in SQL database using DataAdapter Pin
Colin Angus Mackay4-Mar-07 20:45
Colin Angus Mackay4-Mar-07 20:45 
AnswerRe: how to update changes in SQL database using DataAdapter Pin
Luka Grabarevic5-Mar-07 0:06
Luka Grabarevic5-Mar-07 0:06 
Questionadd virtual column Pin
waleed994-Mar-07 18:24
waleed994-Mar-07 18:24 
AnswerRe: add virtual column Pin
saeee4-Mar-07 19:59
saeee4-Mar-07 19:59 
QuestionAn elevator Problem Pin
ebey4-Mar-07 18:18
ebey4-Mar-07 18:18 
AnswerRe: An elevator Problem Pin
benjymous5-Mar-07 1:37
benjymous5-Mar-07 1:37 
QuestionEnabling checkbox functioanlity in datagrid Pin
salon4-Mar-07 17:48
salon4-Mar-07 17:48 
QuestionAssigning a TextBox object to another TextBox object Pin
GunaChinna4-Mar-07 17:32
GunaChinna4-Mar-07 17:32 
AnswerRe: Assigning a TextBox object to another TextBox object Pin
S. Senthil Kumar4-Mar-07 18:46
S. Senthil Kumar4-Mar-07 18:46 
GeneralRe: Assigning a TextBox object to another TextBox object Pin
GunaChinna4-Mar-07 19:34
GunaChinna4-Mar-07 19:34 
Questionadding an item to context menu Pin
Muhammad Ashraf Nadeem4-Mar-07 17:06
Muhammad Ashraf Nadeem4-Mar-07 17:06 
AnswerRe: adding an item to context menu Pin
Luc Pattyn4-Mar-07 18:41
sitebuilderLuc Pattyn4-Mar-07 18:41 
QuestionRe: adding an item to context menu Pin
Muhammad Ashraf Nadeem4-Mar-07 19:53
Muhammad Ashraf Nadeem4-Mar-07 19:53 
AnswerRe: adding an item to context menu Pin
jjansen5-Mar-07 0:46
jjansen5-Mar-07 0:46 
AnswerRe: adding an item to context menu Pin
Luc Pattyn5-Mar-07 12:30
sitebuilderLuc Pattyn5-Mar-07 12:30 

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.