Call A Method In A Form During The Form Load Routine?

Sep 5, 2010

I have a small program which draws some lines with a method called: Drawlines But Now I want to call this method in the load form routine. So if the form is loaded the lines should be drawn in the picturebox. But is this possible or should the form first be loaded completely before you can call methods in that same form?

View 6 Replies


ADVERTISEMENT

Call A Method That Compute Some Data That Method Is On Another Form In Windows Form Application?

Mar 17, 2012

i want to which way is better when concentration is on processing speed. i want to call a method that compute some data that method is on another form in my windows form application then what you prefer is better way 1) to call that method in another form and use returned value or create similar method in form where it is required.i want to make it's processing fast.

View 3 Replies

MDI Child Form Call Method From MID Parent Form?

Dec 7, 2009

I have two form :

class form1 'parent form dim number as integer

public sub create ()
dim f2 as new form2
f2.MdiParent = me[code]....

In form2.vb how to use variable number and method test

View 3 Replies

Call A Form Load Parent Event From A Child Form?

Jun 3, 2011

I have two forms. Form A and Form B. Form A has a datagrid that is populated from a SQL Database Table query. When a button is pressed Form B is launched that allows you to add a record to the database table. I need for the datagrid to be refreshed and show the newly added record when I close form B and go back to the parent.

[Code]...

View 2 Replies

Call A Form In A Form Load Event?

Sep 1, 2009

I have one form called invoiice1.vb In the load event how can i call another form ? I also call some values of thatt form

View 2 Replies

Call The Sub Form The Load Event Of A Form?

May 4, 2009

I have a sub declared inside a module which accepts form as argument.

sub display(fname as form)

What I need is to call the sub form the load event of a form. I tried the following.

display(me)

But cant access the controls of the form inside the sub.

sub display(fname as form)
fname. 'no controls of the form are listed?????????????
end sub

View 3 Replies

Call Method From Another Form?

Jun 21, 2010

I have a Form1 with a method called OrdreUpdate2 I try to run thad method from another form by using the command Form1.Ordreupdate2 in a buttonclick.

But nothing happens..What am I missing here?

View 1 Replies

Call A Method And Define It From The Constructor Of A Form?

Nov 12, 2010

I am suppose to call a method and define it from the constructor of a form.

MSDN says this in regards to something im doing.

Whatever, does it mean?

View 2 Replies

Call Form.Close() If It's Not A Static Method

Jan 19, 2012

In Visual Studio 2010, create a VB.net Windows Forms App. Add 2 forms: Form1 and Form2. In the Form1 Load event type Form2.Close(). Now if we look in the method definition Close() is not a static (shared) method. So how is this possible to compile or to work at run time.

Furthermore, do the same thing in C# and Form2.Close(); doesn't compile.

What's going on? Why is this possible in VB.net and what is actually happening when that line of code is executed?

View 3 Replies

Forms :: How To Call Form Load

Dec 8, 2009

how can you call a form load event in vb.net? when I'm vb6 i only use Call Form_load()

View 2 Replies

How To Call A Function Of Form Load

Jan 25, 2011

How can I call function of the form_Load? I have tried this code but it is not working. [code]

View 13 Replies

Forms :: Mdi Call Active Child Form Method?

Aug 20, 2009

I'm trying to call a method defined within a child form from the menu strip of the parent form when the child form is active.

View 1 Replies

How To Call Picture From My Resources Under Form Load

May 10, 2010

How would I call a picture from my resources let's say under form_load.
<files = System.IO.Directory.GetFiles(My.Resources.Cmaj1)> The error
says that "system.drawing.bitmap" cannot be converted to "String". (The error is coming from the my.resources.Cmaj1)

View 7 Replies

Class - Call A Method In The Default Instance Form Instead Of Instantiating Another?

Nov 15, 2009

When an instantiated class calls a method in the parent form class, VB.NET starts a new instance of the form class instead of calling the method on to the active one.How do I tell it that I have just one instance of my form class, or that I don't want to create a new instance of the form and just call the method on the already active form?

View 2 Replies

UserControls - Put It At InitializeComponent() Call Or Form Load Event?

Aug 28, 2010

I have a windows form and I created couple user controls, these UserControls are added on the form dynamically, everything works normally,

Just wondering where I should put the coding, should it be inside Form Load Event or after InitializeComponent() call?

View 5 Replies

Call The XmlDocument.Load Method Asynchronously?

Aug 31, 2011

I have working code to read an RSS feed that uses:

Dim doc As New XmlDocument
doc.Load("http://...")
Dim channel As XmlElement = doc("rss")("channel")
Dim items As XmlNodeList = channel.GetElementsByTagName("item")

Unfortunately the doc.Load call causes the rest of the program to become unresponsive until it finishes.What's the best way to perform the load asynchronously and have a callback function to process the data?Edit: Here's the code I've tried using WebClient - the Load method is still lagging:

Private Sub checkResults()
'request rss feed
Dim w As New System.Net.WebClient

[code]....

The rssReadCallback method is executed fairly quickly after calling checkResults, but then the UI freezes during the Load method.

View 2 Replies

VS 2005 - Form Load - Retains The Previous Values During The Form Load

Jul 27, 2009

Imports System.Data
Imports System.Data.OleDb
Public Class Form1
Dim con As OleDbConnection
Dim cmd As OleDbCommand


[CODE]...............

The insertion part of the form works great. But my problem is in the form load part......If i leave a field blank(Null),then perform Save operation,close the form after successful insertion and then reopen the form,then it retains the previous values during the form load......This is only in case where i leave a field blank in the previous data entry in the database.......But if i enter values in all fields then form load is working great.

View 2 Replies

VS 2005 : Load A Form And Allow It To Run It's Code In The Form Load But Keep It Not Visible?

Dec 14, 2009

How can I load a form and allow it to run it's code in the form load but keep it not visible. I want it to do what it needs to but but not display.

View 3 Replies

Call C# Form - Call The Form Called 'main'

Sep 22, 2010

I have a VB .NET 2010 application. I added a C# project to my solution. I tried to call the form called 'main'. However, I could not figure out a way to do that. What is the best way to do that? I Goggled, and did not find anything. Actually I noticed that my Developer converted everything to VB .NET.

View 5 Replies

Data Grid Selection Load Form - Call A Stored Procedure With The Value Of The Selection

Feb 27, 2009

I am trying have a data grid selection populate a form. I am new to this.Basically I have a connection persistance object and I would like to call that and call a stored procedure with the value of the selection. The datagrid is bound to an object.

[Code]...

View 1 Replies

VS 2008 Different Ways To Call Another Form From A Parent Or Preceding Form

Aug 4, 2009

I need to know the proper way, or maybe I should say, the different ways to call another form from a parent or preceding form. I am currently using ex: formname.showdialog() to call my next form, but I am uncertain if I should be using that in every situation. [code] Whats the difference between these different methods? (ex: .showdialog() , .show() )I tried both of these to open a temporary form to retrieve a persons name from a database, so as the users progresses through my training program they can keep track of their scores.But, I also call other forms as I branch through my program, from the main page, to a secondary page, to a testing page, to a results page and then back to the secondary page

View 5 Replies

Winforms - Disable The Parent Form When Call A Child Form?

May 14, 2010

How can I disable the parent form when I call a child form?This code doesn't disable the parent form like I thought it would:

frmChild.ShowDialog()

View 2 Replies

Call A Button From A Message Box (made Using A Form) In Another Form?

Feb 1, 2011

I am trying to program a dialogue box to appear when the exit button from my 'Login' form is clicked. The form has three options; yes, no, cancel.

[Code]...

View 2 Replies

Call Child Form Event From Parent Form?

Oct 20, 2009

Could i call the child form events like (closing ,load, activate,closed) .

View 6 Replies

Data Grid In Another Open Form Be Refreshed By Calling A Sub Routine?

May 7, 2012

Can a data grid in another open form be refreshed by calling a sub routine? This app has a form with 2 data grids. When the user double click on one of the grids another form is opened that shows data details. After the user changes the details the user clicks a save button. We have placed this code in the Closing event of the the details form.

Private Sub FormParents_FormClosing(sender As System.Object, e As System.Windows.Forms.FormClosingEventArgs) Handles MyBase.FormClosing
FormParentsAndStudents.RefreshDataGrids()
End Sub

[Code]...

Can you tell us what additional coding is needed to refresh this data or if we are using the incorrect place to call this code from within the details form?

View 1 Replies

[2008] Pause To Give Form Time To Show Before Executing Routine?

Feb 10, 2009

Is there a command in vb that can be used to pause a routine to give time for the form to show before the routine starts as my routine is running and completing before my form shows up?

View 13 Replies

Load The Main Form Of A WPF So That A Separate Thread Goes And Gets Data From The Database While The Form Is In An Apartmentstate?

May 15, 2012

How do i load the Main form of a WPF so that a seperate thread goes and gets data from the database while the form is in an apartmentstate? (drag-able / movable) I Know this is possible with opening a new window from your main form like this :

Private Sub openOrderWindow()
Dim OrderWindow As Orders = New Orders
OrderWindow.ShowDialog()
End Sub

[code]....

I've tried putting MyBase.ShowDialog() and .Show() and .9000+ other things The only benefit I've got out of using a seperate thread to load from the databse is i can see the screen right away (as oppose to it being a transparent box until it loads) but i cannot move it around or minimize it?is there any way to make it Movable while it loads?

View 1 Replies

Progress Bar In Status Bar To Move When Load Any Child Form Inside The MDIParent Form

Sep 16, 2009

i am asking about using the progress bar into the status bar to move when i load any child form inside the MDIParent form.

View 1 Replies

C# - Set The Form.Action And Then Call Something Such As Form.Submit? OR

Sep 23, 2011

I have to use Form.Action to redirect to a script that will be picking up values from my page. It is worth noting that this script is external.My issue is that I also want the button that is clicked and has the Action hooked up to it, to also complete some functionality in the code behind first.Is there anyway I can either :In the buttons click event handler, can I set the Form.Action and then call something such as Form.Submit?OR Set up the Form.Action in advance and then somehow have the button posting back before the action takes place.

View 5 Replies

How To From Child Form To Call Toolstripbutton On The MDI Form

Feb 2, 2010

I added toolstrip control into MDI form. on the parent form, creat many toolstripbutton like tbAdd, tbSave,tbEdit.When I open child form, how to call tbAdd or tbSave.. toolstripbutton on the MDI?

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved