Click here to Skip to main content
15,895,494 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: how to update sql db table from asp.net Pin
N a v a n e e t h14-Aug-07 1:40
N a v a n e e t h14-Aug-07 1:40 
GeneralRe: how to update sql db table from asp.net Pin
potlakayala14-Aug-07 1:53
potlakayala14-Aug-07 1:53 
GeneralRe: how to update sql db table from asp.net Pin
N a v a n e e t h14-Aug-07 2:02
N a v a n e e t h14-Aug-07 2:02 
AnswerRe: how to update sql db table from asp.net Pin
Cfer8314-Aug-07 6:14
Cfer8314-Aug-07 6:14 
GeneralRe: how to update sql db table from asp.net Pin
potlakayala15-Aug-07 19:46
potlakayala15-Aug-07 19:46 
QuestionDisabling the close button on a form Pin
Rajiya14-Aug-07 0:43
Rajiya14-Aug-07 0:43 
AnswerRe: Disabling the close button on a form Pin
Colin Angus Mackay14-Aug-07 0:47
Colin Angus Mackay14-Aug-07 0:47 
GeneralRe: Disabling the close button on a form Pin
N a r e s h P a t e l14-Aug-07 1:02
N a r e s h P a t e l14-Aug-07 1:02 
private const int SC_CLOSE = 0xF060;
private const int MF_GRAYED = 0x1;

[DllImport("user32.dll")]
private static extern IntPtr GetSystemMenu(IntPtr hWnd, bool bRevert);

[DllImport("user32.dll")]
private static extern int EnableMenuItem(IntPtr hMenu, int wIDEnableItem, int wEnable);

private void Form1_Load(object sender, System.EventArgs e)
{
EnableMenuItem(GetSystemMenu(this.Handle, false), SC_CLOSE, MF_GRAYED);
}

Naresh Patel

GeneralRe: Disabling the close button on a form Pin
N a v a n e e t h14-Aug-07 1:27
N a v a n e e t h14-Aug-07 1:27 
Questioncode for interactivity of .net application with telephone responses Pin
varunjss114-Aug-07 0:42
varunjss114-Aug-07 0:42 
AnswerRe: code for interactivity of .net application with telephone responses Pin
Colin Angus Mackay14-Aug-07 0:48
Colin Angus Mackay14-Aug-07 0:48 
QuestionUpload Image While Sending Mails Pin
varshavmane14-Aug-07 0:36
varshavmane14-Aug-07 0:36 
AnswerRe: Upload Image While Sending Mails Pin
N a v a n e e t h14-Aug-07 0:57
N a v a n e e t h14-Aug-07 0:57 
GeneralRe: Upload Image While Sending Mails Pin
varshavmane14-Aug-07 1:06
varshavmane14-Aug-07 1:06 
GeneralRe: Upload Image While Sending Mails Pin
N a v a n e e t h14-Aug-07 1:29
N a v a n e e t h14-Aug-07 1:29 
GeneralRe: Upload Image While Sending Mails Pin
varshavmane14-Aug-07 1:51
varshavmane14-Aug-07 1:51 
GeneralRe: Upload Image While Sending Mails Pin
N a v a n e e t h14-Aug-07 2:05
N a v a n e e t h14-Aug-07 2:05 
QuestionPrinting Envelopes Pin
manowj14-Aug-07 0:29
manowj14-Aug-07 0:29 
AnswerRe: Printing Envelopes Pin
Christian Graus14-Aug-07 0:36
protectorChristian Graus14-Aug-07 0:36 
GeneralRe: Printing Envelopes Pin
manowj14-Aug-07 0:44
manowj14-Aug-07 0:44 
GeneralRe: Printing Envelopes Pin
Christian Graus14-Aug-07 12:13
protectorChristian Graus14-Aug-07 12:13 
Questioncannot find p3p policy for my website Pin
rama charan14-Aug-07 0:19
rama charan14-Aug-07 0:19 
QuestionPage.PreviousPage Pin
kuwl_mark13-Aug-07 23:56
kuwl_mark13-Aug-07 23:56 
AnswerRe: Page.PreviousPage Pin
Christian Graus14-Aug-07 0:03
protectorChristian Graus14-Aug-07 0:03 
AnswerRe: Page.PreviousPage Pin
sidbaruah14-Aug-07 0:16
sidbaruah14-Aug-07 0:16 

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.