Help Help Help!!!

moh2001boss

Newcomer
Joined
Jul 25, 2003
Messages
1
hello

I want to ask some qustions about windows controls and database


the first

I want to add an item to a combobox while datasource is set and give the item the value 0 ?

the seconed

I want to refresh the form after any operation ? (I tried "Refresh" but didn't work)

the 3rd

I want to take a value of cell in data grid ? how??

the 4th

I have this code but it didn't work

dim mdiparent as new form1
dim mdichild as new form2

mdichild.mdiparent = mdiparent
mdichild.show

Please Help me
With Thanks
 
for your 4th question, check this out. This might help.

In the Properties window, set the IsMDIContainer property to true.
This designates the form as an MDI container for child windows.

Drag a MainMenu component to the form. Create a top-level menu item with the Text property set to &File with submenu items called &New and &Close. Also create a top-level menu item called &Window.

At this point, you have created an MDI parent window. Just hide the menu items if you really don't need it.
 
Back
Top