Call Sub On Open Form Through Module?
Jul 23, 2009
I have a main form (frmPos) and through a module (modTransaction) I open and close several other forms. This works flawlessly. However, when the function on the module is finalized, I want to clear the main (open) form. Therefore, I made a public sub (clearForm) on the main form and when I call this from the main form it works.
View 2 Replies
ADVERTISEMENT
Jun 20, 2011
i've created a Sub in a Form.
I've created another Sub in a module.
I call the Sub in the module from the form, passing the form into the Sub defined in the module.
Then i add an Handler to an istance of a control (for example mousemove) and i want to give to this handler the execution of the Sub defined in the form.
Example.
Class form1
Sub Form1Sub()
ModuleSub(me)
[Code]....
The problem is that i don't know hot to call the Sub defined in the form, in the Sub handler using the istance of the form passed in the Sub paramenter in the module...
View 7 Replies
Jan 28, 2010
I have a form set up where I want to run the function PopulateGrid on it's Form_Load event. I have initialized the DB connection as follows:
Private Sub Main_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
LoadConfigFile()
cn = New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0; Data Source=" & config("DatabasePath") & ";")
cn.Open()
End Sub
Now, I want to run the PopulateGrid function directly after I connect to the database as shown above. I'm confused as to how I'd use a database query in a module when the database is initialized in my main form. Would simple setting the variable cn to public work?
View 1 Replies
Aug 24, 2011
I am working on a chat program and I'm am trying to combine 2 projects into one solution. I have a console project and a win form project. So my question is how do you open or show a form from a console module?
View 1 Replies
Aug 16, 2010
how we can declare a connectionstring in a module and call that module
View 1 Replies
Apr 27, 2012
I have a VB.Net interface that communicates with an Access 2k3 Database using this module:
Module MOD_ENGINE
'Declare Database connections controls
Dim con As New OleDb.OleDbConnection
Dim dbProvider, dbSource As String
[code]....
I want to call EngineConnect procedure from MOD_ENGINE module into popCboBox module so I can ignate the engine!
View 3 Replies
May 17, 2011
1. If i have 2 projects in the same solution, how do i use one to open the other?
2. How would I open a form as Invisible and be able to still call subroutines from it?
View 6 Replies
Mar 18, 2009
Does anyone know how to call an InfoPath form to open from VB? The form is located on a webserver so the path would be something similar to[url]...
View 1 Replies
Aug 21, 2011
I have a problem regarding calling the function in form to the module..i have 2 module which is User Login Module and the other Module is Update the Fields of Student..my problem is the Update Module when i call the function in form i cant call the function that i used..this my code in udpate module and this is my code in form The UpdateExeQuery that i use in module.when i call in the form its error..
View 11 Replies
Apr 29, 2010
I have a Util module in my VB.NET program that has project-wide methods such as logging and property parsing. The general practice where I work seems to be to call these methods directly without prefixing them with Util. When I was new to VB, it took me a while to figure out where these methods/functions were coming from. As I use my own Util methods now, I can't help thinking that it's a lot clearer and more understandable to add Util. before each method call (you know immediately that it's user-defined but not within the current class, and where to find it), and is hardly even longer. What's the general practice when calling procedures/functions of VB modules? Should we prefix them with the module name or not?
View 3 Replies
Dec 23, 2011
Is it possible to call a VBA module (found within a MS Access database) from a command line script?
View 3 Replies
Oct 15, 2011
im trying to do something like this
Module module1
public sub()
dim a as string[code]....
View 6 Replies
Jul 20, 2009
Im new in this forum. I just recently upgraded my Visual Studio 2003 to Visual Studio 2008.I have a web project which is working very well in Visual Studio 2003. But when Im trying to run the same project in Visual Studio 2008, Im getting a runtime error message.The error message is about a public function which is defined in a public module. When Im trying to call that function from different web pages of my project, the web pages are not recognising the public functions and asking me to
View 3 Replies
Dec 15, 2009
The company I work for has a VB6 project that is using an ACCESS database.The project consists of seperate modules such as Accounts Payable, Payroll, General Ledger, and Inventory.At the current time each module is a seperate project in VB6 and the EXE files are called when needed.In total there are about 1300 forms in the project.We are moving from ACCESS to Sql Server and from VB6 to VB2008.The question that I (we) have is as follows; Should we continue to keep each module seperate and call the EXE's or should we create one large project?What are the pros and cons for each way?Is there something written that explains the advantages of either?
View 5 Replies
Aug 7, 2009
This is my vb6 programme for creating recordset in a module. and call it in class
and form
[Code]...
View 4 Replies
Mar 2, 2011
I have a function in a module that returns a datatable.I need to call that function asynchronously and get the results in the Main thread (Main Form) in vb.net.
View 2 Replies
Oct 13, 2009
I am try to learn to use Mysql / MySql.Data.MySqlClientI did find sample how to connect to Mysql but I want to have it in Class or Module so I only call open database when I open the form
How can I fix this Name 'connStr' is not declared
CODE:
View 5 Replies
Sep 27, 2011
I have not used a module in a long time. I am get an error when i try to call my sub openDatabaseConnection that is in a module called dataaccess. i amtring to call this method in my ui form code but i get the error as so: The type initializer for 'bsoDetailsDB.dataAccess' threw an exception.
My code:
Public Class Form1
Private Sub btnOpen_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnOpen.Click
OpenDatabaseConnction()
[CODE]........................
View 11 Replies
Mar 13, 2011
I have to calculate y = a + Bx or y = mx + b in non engineering form. Anyways I have to calculate the y intercept first and am having trouble calling the function from a module. Here is the module and the second window will be the code from my main form
[code]...
View 8 Replies
May 17, 2012
I'm getting this error message when I try and run my program:
[Code]....
I have run this program man times before. I just added a Windows Form InputCrossForm.vb to my project. When I dbl click on the error message I get a message box title bar "Microsoft Visual Basic 2010 Express" with message "The definition of the object is hidden." Not sure what this means nor what to do to fix it.
View 2 Replies
Jan 5, 2011
I am working in Visual Studio with a solution containing multiple projects. The solution is based on a co-worker's computer. I am trying to build the project, I get the following error:
Error 17 Unable to open module file 'C:DocumentsVisual Studio 2010Projects ReportCreatorMy ProjectApplication.Designer.vb': The system cannot find the file specified.
C:DocumentsVisual Studio 2010ProjectsBlahBlahBlahReportCreatorMy
ProjectApplication.Designer.vb 1 1 ReportCreator
It is on my co-worker's computer, but I don't see it in source control. He has ReportCreator checked out. How do I create Application.Designer.vb?
View 2 Replies
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
May 28, 2012
I made an aplication on windows XP and VB.Net 2008 and works fine, but I moved to Windows 7 and Visual Studio 11 Beta and it wont let me build my aplication and displays this error When I double click on the error msg a window pops up a says "There is no editor available for C:(file path)AssemblyInfo.vb
[Code]....
View 1 Replies
Oct 5, 2010
I'm trying to figure out the best way to reference a control on a form from within a module. Unfortunately the form is just an instance, so it's not as easy as calling form.control...
Dim ChildForm As New frmSearch
' Make it a child of this MDI form before showing it. '
ChildForm.MdiParent = Me
ChildForm.Show()
That form has an option for printing, which calls another form where certain options are chosen. The print form in turn calls a function in a module, which tries to reference back to the origional form.
childform as new frmSearch -> frmPrintForm -> sub okToPrint (in module Print)
okToPrint tries to reference a listview on frmSearch, but can't find it.
For Each itmX In frmSearch.lstResults.Items
So the solutions I can think of off the top of my head are:
1. Somehow divine which form is the caller of frmPrintForm
2. Pass ChildForm to the frmPrintForm as a variable to be passed on to module Print..
3. Use frmSearch directly instead of using an instance of it.
Number 1 would be my preference, as I don't want to have to pass forms around like that.
View 4 Replies
Feb 23, 2009
How I Can open the same form in my application one time only can not open the form tow time in same time
View 5 Replies
Oct 23, 2009
I am trying to use Vb to call explorer to open some web pages that I already downloaded. I use this command.
Shell("C:Program FilesMozilla Firefoxfirefox.exe G:BlogsBlog35242+0")
it works fine for this file. However, I have tens of thousands files to open. So I need a variable to replace "G:BlogsBlog35242+0". Like, I write blogaddress="G:BlogsBlog35242+0" and Shell("C:Program FilesMozilla Firefoxfirefox.exe blogaddress")it doesn't work.I write, Shell("C:Program FilesMozilla Firefoxfirefox.exe" &blogaddress) it doesn't work either.
View 6 Replies
Oct 15, 2009
In my current project I added a couple of .jpg-images in the project explorer and their build-action to "Resource". My question is: How do I "call" one, according its name and show it in a picturebox?
View 3 Replies
Jun 18, 2012
I have a connection module in which I have written the open and close database connection.... if database connection is an error it will return false else if success it will return true the function of the modules will be called from the form code....
what I need is if the connection is an error the module should also get the form name which returned the error...is it possible???
check my below code....
DBConnection.module
Imports System.Data.SqlClient
Module DBConnection
[Code].....
now what I need is if the functions Open_DB_Connection() or Close_DB_Connection() returns error it should prompt the form name....
View 4 Replies
Mar 28, 2012
I am calling a function in an external dll to a device that runs some firmware. When I call device_open(), the device driver brings up a Warning dialog box that says there is a newer version of the firmware available. How do I suppress the warning dialog box? I am calling this function during an overnight test, so the dialog box prevents my tests from finishing.
View 1 Replies
Jun 20, 2012
I recently have convert my project from VB6 to VB.NET2008,after the convert here is a sub that control form from a module that i create,the error was something like
"cmdAdd is not a member of System.Windows.Forms.Form"
Public Sub ButtonSet(ByRef frmObj As System.Windows.Forms.Form)
frmObj.cmdAdd.Visible = True
frmObj.cmdCopy.Visible = True
frmObj.cmdEdit.Visible = True
[Code]...
View 1 Replies