473,753 Members | 7,825 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

can any one help me by suggesting a way to get items in dynamic form?

42 New Member
hi all...
can any one help me by suggesting a way to get items in dynamic form?

here what i'm doing is , i'm displaying a dynamic form. in that form i have a main menu and this main menu contains a menu item "OK". here the dynamic form consist of some labels, list items and all. when i click on the "OK" menu item, an event occurs and i've wrote methods which wll execute on this event.
now i need the selected list item index,value.. label text etc...

can any one help me by suggesting an idea to get the selected item index,values label text etc in the method that i've created for this event...
this method lies in a seperate class...
Nov 4 '08 #1
4 1848
markmcgookin
648 Recognized Expert Contributor
What's wrong with

Expand|Select|Wrap|Line Numbers
  1. string list = this.listBox1.SelectedItem.Text;
  2. string lable = this.lable1.text;
  3.  
I don't really understand what you are after here... please explain more about you environment, language etc.

If you read the Bytes how to post a question thread before posting this would help a lot.
Nov 4 '08 #2
libish
42 New Member
Expand|Select|Wrap|Line Numbers
  1. private void button2_Click(object sender, EventArgs e)
  2.         {
  3.  
  4.            display_page ob = new display_page();
  5.            forms ab=ob.display_xml_page("/My Documents/My Pictures/pave1.xml");
  6.         //here what come in return is a form object accept it in a form object and display it.
  7.            MenuItem menuItem1 = new MenuItem();
  8.  
  9.             menuItem1.Text = "ok";
  10.            menuItem1.Click += new System.EventHandler(menuItem1_Click);
  11.  
  12.  
  13.            ab.mainMenu1.MenuItems.Add(menuItem1);
  14.  
  15.            Event_class oo = new Event_class();
  16.            menuItem1.Text = "ok";
  17.            menuItem1.Click += new System.EventHandler(oo.menuItemOK_Click);
  18.            ab.Menu = ab.mainMenu1;
  19.            ab.Show();
  20.         }
  21.  
this is a button click action.... here when we call the function "display_xml_pa ge("/My Documents/My Pictures/pave1.xml");" what comes in return is a form object ... which will be having list item , labels etc....
here i've added an event "new System.EventHan dler(oo.menuIte mOK_Click);"
here is the event class method...

Expand|Select|Wrap|Line Numbers
  1.  public void menuItemOK_Click(object sender, EventArgs e)
  2.         {
  3.  
  4.          }
  5.  
here what ever i do produces error...
i cannot access this.listbox1.t ext etc etc... nothing is happenning here...
am i missing something here???

MODERATOR: EDITED: Please remember to use code tags!
Nov 4 '08 #3
libish
42 New Member
this application is for windows mobile and it is in c#.net...
please dont mind... i'm new in windows application..
Nov 4 '08 #4
jkmyoung
2,057 Recognized Expert Top Contributor
Sounds like a scope error, common with javascript event handling.
Could we see perhaps 1 line of what you've tried to put in the event handler, and the corresponding error?

(To be honest, I forget the exact solution and the error msg would help me find it.)
Nov 4 '08 #5

Sign in to post your reply or Sign up for a free account.

Similar topics

25
4337
by: Rim | last post by:
Hi, I have been thinking about how to overload the assign operation '='. In many cases, I wanted to provide users of my packages a natural interface to the extended built-in types I created for them, but the assign operator is always forcing them to "type cast" or coerce the result when they do a simple assign for the purpose of setting the value of a variable. Borrowing an example from this newgroup, the second assignment below ereases...
1
17670
by: Nathan Bloomfield | last post by:
Does anyone know if there is any documentation which relates to Access2k + ? or can anyone help adjust the code? I am having trouble converting the DAO references. TITLE :INF: How to Create a Dynamic Crosstab Report PRODUCT :Microsoft Access PROD/VER:1.00 1.10 OPER/SYS:WINDOWS
3
2941
by: CAD Fiend | last post by:
Hello, Well, after an initial review of my database by my client, they have completely changed their minds about how they want their form. As a result, I'm having to re-think the whole process. My Current Form (6 tabs): - Owner, Property, Title, Docs, Queries, & Reports - User is able to see (while navigating through the tabs) above in the form : Owner Name, Address, Parcel, and SSN
10
6915
by: Kathy Burke | last post by:
HI. in asp.net app, I have an xmlDocument that I transform to the client html. Using xsl I create a few textboxes to capture user input. Each of these are related to <data> elements in the xmlDoc. I want to use the Forms collection to post the html form back to an asp.net page, and process each request.form object (textbox) via an xml node.value update. For any given xmlDocument there is an unknown number of items resulting in...
12
1210
by: Dan Keeley | last post by:
Hi, As far as i can tell this can't be done, but thought i'd quickly ask, I have 4 labels in my combobox, and i want to add them to the box with a numeric "value" and then get that value of the currently selected item. I want the combobox to display the text not the value of course.. Is this possible with the standard combobox?? Thanks,
0
2015
by: =?Utf-8?B?QmlzaG95?= | last post by:
Hi All, I have a Right to Left web page with asp.net 2.0 containing a horizontal menu. The menu is right to left as the page. The problem is the submenu items or the dynamic menu items are not aligned right, so the menu has a bad shape. -------------------------------------------------------------
2
7078
by: andylotus | last post by:
Hi People I have a WinForm program. The UI contains a ToolStripDropdownButton, which is associate a list of menu items of ToolStripMenuItem, created dynamically. Upon different scenarios of user operations, the DropdowButton need to clean up all its menuitems, and create new ones. Here the codes: //////////////////// Void CreateForEmail()
1
1328
by: Benson | last post by:
I have a MainMenu (MenuStrip) which will be loaded (dynamic by codes) after the program Login form. The first time run is ok. But when I close the MainMenu and go back to Login form, and then go to MainMenu again, the menu items didn't clear by MainMenu.Items.Clear(). That is: 1. Login -MainMenu.items.clear() -MainMenu (dynamic add menu items by code) =OK 2. Login -MainMenu.items.clear() -MainMenu (dynamic add menu items by code) -Login...
5
4987
by: Andrus | last post by:
I have database containing translations. I'm creating VS 2005 WinForms application which should use this database to translate menu items to user language. I replaced lines in myform.designer.cs like Text = "File"; to call my translating routine
0
8896
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9653
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9451
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9421
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9333
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
6151
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4771
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4942
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3395
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.