- Child form __gc Array
Hi,I have a VC++ .Net 2003 MDI application.I am declaring a __gc Array in the frmChild_load method of the child form. The declaration is as followsDouble zData __gc[,] = new Double __gc[10,10];It compiles and links properly but I get the following run-time error!!!!!Error: Method not found: ...
- Identity problem in inserting data into master and detail tables
I'm using the TableAdapters to insert rows into the master and detail tables. I would like to know what's the best practise to handle the identity column which is a auto-generate number. As I'm required to insert all rows in a single transaction, I don't have the id no in the master table ...
- identifying with API
Hello, Im trying to identify textboxes with API on a form, but there are multiple textboxes and they each have the same caption and class name, how can I send a message to a specific textbox? ...
- identifying when a FileUpload is complete?
hi folks, hope this isn't a previously answered question.I have a webform where an image is displayed, this image however can be replaced by uploading another. this works fine but when the FileUpload.SaveAs command is executed and refresh the imageUrl (or even do a redirect) the image is no...
- Identifying what caused POSTBACK
Hi All,I have a page with two buttons (one isbtnAddand the other isbtnSubmit)When I click btnAdd, the page postsback, and in the Page_Load Sub, I add a new WebUserControl to my form.! > There's nothing in btnAdd_Click Sub, and in btnSubmit Sub i call the procedure that gets all the data...
- Identifying UserControls ...
Identifying a Usercontrol ? say; There is 2 usercontrols.usrctrlone and usrctrltwo And there are 2 Labels , in the Form1.cs When drag and drop the usercontrol to the form(Form1) , how to identify which usercontrol is added to the form. if usrctrlone1 (first instance of usrctrlone) added ...