Click here to Skip to main content
15,896,063 members
Home / Discussions / C#
   

C#

 
AnswerRe: ComboBox, Lookup & Complex Binding Pin
Glen Harvy7-Aug-06 12:54
Glen Harvy7-Aug-06 12:54 
QuestionTexture offset Pin
S02003567-Aug-06 2:14
S02003567-Aug-06 2:14 
QuestionCheck Version Messanger Pin
Rahul.RK7-Aug-06 2:07
Rahul.RK7-Aug-06 2:07 
AnswerRe: Check Version Messanger Pin
stancrm7-Aug-06 2:41
stancrm7-Aug-06 2:41 
GeneralThanks .. Pin
Rahul.RK7-Aug-06 3:03
Rahul.RK7-Aug-06 3:03 
QuestionCreating menu control+items via aconfig file(appsettings) Pin
flackjack7-Aug-06 2:04
flackjack7-Aug-06 2:04 
AnswerRe: Creating menu control+items via aconfig file(appsettings) [modified] Pin
Not Active7-Aug-06 2:26
mentorNot Active7-Aug-06 2:26 
AnswerRe: Creating menu control+items via aconfig file(appsettings) Pin
wheelerbarry7-Aug-06 2:40
wheelerbarry7-Aug-06 2:40 
I think you would have to read the data in from the config file and create the menu items dynamically.

You could do this by creating an xml file for the config, then reading that in and creating the items to the list.

e.g.
// Read config file and serialize (sorry, dont have this bit 2 hand)

foreach(MenuData data in configFile)
{
MenuItem item = new MenuItem();
item.Text = data.Text;
mainMenu.MenuItems.Add(item);
}
QuestionRedirecting to newer version assembly using settings in config file Pin
kumar.bs7-Aug-06 1:59
kumar.bs7-Aug-06 1:59 
AnswerRe: Redirecting to newer version assembly using settings in config file Pin
S. Senthil Kumar7-Aug-06 2:24
S. Senthil Kumar7-Aug-06 2:24 
GeneralRe: Redirecting to newer version assembly using settings in config file Pin
kumar.bs8-Aug-06 19:15
kumar.bs8-Aug-06 19:15 
AnswerRe: Redirecting to newer version assembly using settings in config file Pin
Ramasubramaniam8-Aug-06 10:47
Ramasubramaniam8-Aug-06 10:47 
QuestionCan we associate a single codebehind file with two aspx pages Pin
Sirisha.P7-Aug-06 1:39
Sirisha.P7-Aug-06 1:39 
AnswerRe: Can we associate a single codebehind file with two aspx pages Pin
Stefan Troschuetz7-Aug-06 1:48
Stefan Troschuetz7-Aug-06 1:48 
GeneralRe: Can we associate a single codebehind file with two aspx pages Pin
Sirisha.P7-Aug-06 1:57
Sirisha.P7-Aug-06 1:57 
QuestionReading image data from differnt avi-codecs in c# Pin
joloh477-Aug-06 1:37
joloh477-Aug-06 1:37 
General[Message Deleted] Pin
wout de zeeuw7-Aug-06 1:31
wout de zeeuw7-Aug-06 1:31 
GeneralRe: Article about making image background color transparent? Pin
Ryan Binns7-Aug-06 1:35
Ryan Binns7-Aug-06 1:35 
GeneralRe: Article about making image background color transparent? Pin
Trollslayer7-Aug-06 1:36
mentorTrollslayer7-Aug-06 1:36 
GeneralRe: Article about making image background color transparent? Pin
wout de zeeuw7-Aug-06 1:43
wout de zeeuw7-Aug-06 1:43 
GeneralRe: Article about making image background color transparent? Pin
Super Lloyd7-Aug-06 1:39
Super Lloyd7-Aug-06 1:39 
GeneralRe: Article about making image background color transparent? Pin
wout de zeeuw7-Aug-06 1:46
wout de zeeuw7-Aug-06 1:46 
GeneralRe: Article about making image background color transparent? [modified] Pin
Super Lloyd7-Aug-06 1:56
Super Lloyd7-Aug-06 1:56 
GeneralRe: Article about making image background color transparent? Pin
wout de zeeuw7-Aug-06 2:13
wout de zeeuw7-Aug-06 2:13 
GeneralRe: Article about making image background color transparent? Pin
Super Lloyd7-Aug-06 2:38
Super Lloyd7-Aug-06 2:38 

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.