Click here to Skip to main content
15,907,233 members
Home / Discussions / C#
   

C#

 
AnswerRe: capturing image in Fingerprint reader Pin
Anil Ch10-Aug-06 6:12
Anil Ch10-Aug-06 6:12 
GeneralRe: capturing image in Fingerprint reader Pin
Not Active10-Aug-06 9:22
mentorNot Active10-Aug-06 9:22 
Questionexecute sql in oracle Pin
fmardani10-Aug-06 4:45
fmardani10-Aug-06 4:45 
AnswerTry Pin
Ennis Ray Lynch, Jr.10-Aug-06 5:07
Ennis Ray Lynch, Jr.10-Aug-06 5:07 
QuestionIdeas regarding the printing the DataGridView Pin
kalyanPaladugu10-Aug-06 4:33
kalyanPaladugu10-Aug-06 4:33 
AnswerRe: Ideas regarding the printing the DataGridView Pin
Judah Gabriel Himango10-Aug-06 5:12
sponsorJudah Gabriel Himango10-Aug-06 5:12 
QuestionNewbie: Best way to populate a context menu from DB? Pin
Phillip Hodges10-Aug-06 4:29
Phillip Hodges10-Aug-06 4:29 
AnswerRe: Newbie: Best way to populate a context menu from DB? Pin
Ennis Ray Lynch, Jr.10-Aug-06 4:54
Ennis Ray Lynch, Jr.10-Aug-06 4:54 
You can dynamically create the context menu when the click is performed. Also you can use one context menu and just clear the menu items and add new items at runtime. The code below is .NET 2 same logic different control in .NET 1.1

contextMenuStrip1.Items.Clear();
ToolStripItem ts = null;
for(int i=0;i<5;i++){
    ts = contextMenuStrip1.Items.Add(i.ToString());
}
contextMenuStrip1.Show();


A man said to the universe:
"Sir I exist!"
"However," replied the Universe, "The fact has not created in me A sense of obligation."

-- Stephen Crane

GeneralRe: Newbie: Best way to populate a context menu from DB? Pin
Anil Ch10-Aug-06 6:16
Anil Ch10-Aug-06 6:16 
GeneralRe: Newbie: Best way to populate a context menu from DB? Pin
Ennis Ray Lynch, Jr.10-Aug-06 8:22
Ennis Ray Lynch, Jr.10-Aug-06 8:22 
GeneralRe: Newbie: Best way to populate a context menu from DB? Pin
LongRange.Shooter10-Aug-06 8:23
LongRange.Shooter10-Aug-06 8:23 
QuestionWinForms.ReportViewer DoubleClick event Pin
bahaa_sa510-Aug-06 4:25
bahaa_sa510-Aug-06 4:25 
Questionasynchronous execution Pin
pranu_1310-Aug-06 4:16
pranu_1310-Aug-06 4:16 
AnswerRe: asynchronous execution Pin
Judah Gabriel Himango10-Aug-06 5:13
sponsorJudah Gabriel Himango10-Aug-06 5:13 
AnswerRe: asynchronous execution Pin
LongRange.Shooter10-Aug-06 8:25
LongRange.Shooter10-Aug-06 8:25 
Questionsend parameter to MSWord and then print it Pin
TAREQ F ABUZUHRI10-Aug-06 4:13
TAREQ F ABUZUHRI10-Aug-06 4:13 
AnswerRe: send parameter to MSWord and then print it Pin
TAREQ F ABUZUHRI10-Aug-06 4:18
TAREQ F ABUZUHRI10-Aug-06 4:18 
GeneralRe: send parameter to MSWord and then print it Pin
Khalid Sabtan3-Jul-12 12:05
Khalid Sabtan3-Jul-12 12:05 
QuestionC# Newbie: What is the &quot;:&quot; for?? [modified] Pin
Goalie3510-Aug-06 2:59
Goalie3510-Aug-06 2:59 
AnswerRe: C# Newbie: What is the &quot;:&quot; for?? Pin
V.10-Aug-06 3:15
professionalV.10-Aug-06 3:15 
AnswerRe: C# Newbie: What is the &quot;:&quot; for?? Pin
Roy Heil10-Aug-06 3:17
professionalRoy Heil10-Aug-06 3:17 
AnswerRe: C# Newbie: What is the &quot;:&quot; for?? Pin
Ennis Ray Lynch, Jr.10-Aug-06 4:13
Ennis Ray Lynch, Jr.10-Aug-06 4:13 
AnswerRe: C# Newbie: What is the &amp;quot;:&amp;quot; for?? [modified] Pin
LongRange.Shooter10-Aug-06 7:50
LongRange.Shooter10-Aug-06 7:50 
GeneralRe: C# Newbie: What is the &quot;:&quot; for?? Pin
Ennis Ray Lynch, Jr.10-Aug-06 8:23
Ennis Ray Lynch, Jr.10-Aug-06 8:23 
JokeRe: C# Newbie: What is the &quot;:&quot; for?? Pin
LongRange.Shooter10-Aug-06 10:34
LongRange.Shooter10-Aug-06 10:34 

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.