Click here to Skip to main content
15,903,856 members
Home / Discussions / C#
   

C#

 
GeneralRe: tab controle Pin
stancrm7-Aug-06 4:55
stancrm7-Aug-06 4:55 
GeneralRe: tab controle Pin
john347-Aug-06 5:07
john347-Aug-06 5:07 
GeneralRe: tab controle Pin
Stefan Troschuetz7-Aug-06 5:17
Stefan Troschuetz7-Aug-06 5:17 
GeneralRe: tab controle Pin
john347-Aug-06 5:55
john347-Aug-06 5:55 
GeneralRe: tab controle Pin
john347-Aug-06 6:07
john347-Aug-06 6:07 
QuestionPlease help me [modified] Pin
shail nigam7-Aug-06 3:16
shail nigam7-Aug-06 3:16 
AnswerRe: Please help me Pin
stancrm7-Aug-06 3:34
stancrm7-Aug-06 3:34 
AnswerRe: Please help me Pin
wheelerbarry7-Aug-06 3:36
wheelerbarry7-Aug-06 3:36 
GeneralRe: Please help me Pin
shail nigam7-Aug-06 4:04
shail nigam7-Aug-06 4:04 
QuestionComboBox, Lookup & Complex Binding Pin
Glen Harvy7-Aug-06 2:27
Glen Harvy7-Aug-06 2:27 
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 

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.