Use The Same Form For Several Functions?

Jul 20, 2009

I am trying to use the same form for several functions which means I have to change the properties. In order to do this, I was trying to put a select case in a module that could be recalled anywhere in the project.

As soon as I start a select case in a module, I get an error message "Error1Statement cannot appear outside of a method body." Does that require that it be in a form only and cannot be used in a module?

View 2 Replies


ADVERTISEMENT

VS 2008 : Have A Class Where The Functions Of The Same Name Are Both Instance Functions And Shared Functions?

Dec 6, 2010

What I am trying to do is have a class where the functions of the same name are both instance functions and shared functions.

Public Shared Function Get...(byval xx as xx)

and

Public Function Get...

The Public Function uses a Property xx created in the constructor, whereas the Shared Function has the parameters (byval xx as xx).

View 1 Replies

Stop All The Functions On Parent Form While Child Form Is Still On Screen?

May 1, 2009

form1 has datagridview, when I click "add new", form2 appears(details view, allowing me to add new records into datagridview on form1). when I click "add new" again, form2 appears again, if I click x times, form2 will appear x times. How do I stop the add new button and all the functions on form1 from working until form2 is closed?

View 6 Replies

Access Functions In The Class Within Another Form

Feb 18, 2011

I am new to .NET 4 and VS 2010. I am using VB 2010 and have made a class and need to know how i can access those functions in the class within another form. So there is a function say of XYZ in the class named classes.vb and need to get to it from form1.vb

View 9 Replies

Creating Clear Form Functions?

Mar 2, 2010

I am trying to create a function to clear my form. The code is as follows:

Private Sub resetForm()
'Set an integer to loop through the controls
Dim x As Integer

[code]....

it works when I set the type of control as textbox but when I try to do the same thing with radioButton and make it's checked proporty = to false I get checked is not a member of 'system.windows.forms.control'

View 5 Replies

Excel Maths Functions And Calls To All DLL Functions Documentation?

Jan 29, 2007

1) Is it possible to access the Excel mathematical functions without actually opening Excel?

I was thinking of through a DLL WinAPI call or maybe a delegate function or smaller program?

2) Does anyone know of a MS link or area that gives instruction on "how to" use every function of every Windows DLL at all?

Or for all those that Microsoft have chosen to document online at least.

View 1 Replies

Combining Adding And Viewing Form Functions

Sep 29, 2010

Im banging my head against the wall with this one...If anyone can give me some pointers on how to combine the following two code snippets,[code]

View 5 Replies

Forms :: Functions Work Only If Form Is Run Directly (non-MDI)?

Dec 14, 2010

I have this weird issue:I developed an application with a sequence like this login form -> mainform (=mdi parent) --> some functionform (mdi-child)--> report form

The reportform contains a reportviewer and will display different dataset queries depending on the state of some radio buttons which are located on the previous form ('some function form'). When I run the project directly from the 'some function form' (set startup form for project) things work great. The report shows the correct data depending on choices made on the previous form.But....when I run the project all the way from login and mainform it doesn't work. Seems like the choices made on the "some function form' are not coming through to the report form.

View 5 Replies

Functions Nearly Identical, One Works, One Locks Up The Whole Form?

Feb 9, 2012

I've have found answers here frequently in the past just from browsing. But now I'm completely dumbfounded.

I'm using Visual Basic 2010 Express, on Win7 32bit. My application talks to an Arduino via a virtual com port provided by a cheap Bluetooth to serial adapter. I use a text based protocol that is working fairly well. BUT one method in my code, taht seems functionally equivvalent to the other methods is locking up my whole window.

It does this whether I'm debugging or running the exe.Below are the offending method, and a simmilar one defined above it that works with no problems.

[Code]...

If I comment out the cal to write, everything works fine. Aside from me setting some state bools and playing with button titles in the first method, I can't see the difference as to why one works fine and the other hangs.

I really hope someone has some experience in the SerialPort object and VB that can shed some light on this.I've tried everything I can think of. I thought maybe it was the inline concatenation, so I dim'd a local and assigned the string to it, and passed that to Write. But I have another method that uses inline concatenation that doesn't do this.

View 1 Replies

Write Functions In Form And Link To Database?

Feb 14, 2011

is it possible to create a form in vb, functions able to create, update or delete records?

View 2 Replies

Call Windows Form Functions From Webpage (which Is Displayed Through Webbrowser Control In Win App)?

Mar 25, 2009

I have implemented webbrowser control in my windows application. I have some functions inthe class file. i want to use those functions from the webpage which is displayed in my windows app through webbrowser control..For example say... I have an standalone windows software. Which has a webbrowser control in the some form. Now i would like to create a webpage that can be displayed in the webbrowser control in win app which has some buttons and textboxes. When i click on button in the webpage it should get the version number of that software. I have some other functions that are in the class file aswell.. but dont no how to call those functions from that webpage when a button is clicked or something like that.

View 4 Replies

Differences Between VB Functions And Convert.To* Functions?

Feb 19, 2009

While converting types, I have found myself using both VB functions and BCL Convert.To* methods.
E.g.)

Cstr() vs. Convert.ToString()
CInt() vs. Convert.ToInt32()
CDbl() vs. Convert.ToInt64()
etc...

Are there any subtle differences that should be noted?

View 1 Replies

[2005] MembershipUser Functions - See Exactly What The Functions Are Doing?

Mar 4, 2009

Is there a way to see exactly what the functions are doing. What i mean is there a way to see the class? I know what it does, i just want to know the code.
For example the function: Membership.FindUsersByName()

View 1 Replies

VB Class Methods Generate "out Of Memory Exception", While Same Code As A Form.exe Running The Functions Does Not

Jun 2, 2009

I created a class library containing some properties and methods, when I call a specific method that runs a sequence of tests, it reports "out of memory exception". When I take the same code and build a form.exe, I do not get the "out of memory exception".

View 6 Replies

Create Functions In Functions

Jul 1, 2011

I'm redoing a program for my company and my boss wanted me to created the entire thing through functions...

For the task I wanted to know is it possible to have functions within functions?
Sort of like in C where we would have nested structures?

Its a FILE I/O, with robot commands, moves and verifications....

So I would find the line in an excel spreadsheet where it moves, the coordinate, put it into an array.

Take the actual results store them into a two dimensional array...etc, etc....

Another function would eventually compare the results with the moves, and within a tolerance.

View 9 Replies

VS 2010 Add Subs / Functions To Subs / Functions?

Oct 26, 2009

When you refrence a Function like this one:[code]You may want to be able to get more out of that, like this.[code]So how would I be able to add subs or functions onto a sub or function like that?

View 4 Replies

Use C++ Functions In VB?

Feb 1, 2011

I have made quite a good library for calculating Math problems like Quadratic Equations and many other. Now I met a friend, and hes programming a little in VB, and we were thinking if it is possible to import my functions from C++ to his code, so he can call them, when they are needed, so we can make a calculator? How can we do that?

Edit: My friend is using VB.net
Edit: My library is organized in free functions.

View 2 Replies

Using Functions And Dll's

Jul 27, 2010

I am not sure if i am using these in the correct manner. Basically i have an app that downloads a file from an ftp server (i am kinda cheating cos i am using chilkat). Now if i put the code directly in the form i can get it to do a progressbar.value = ... in it['s own sub.What i decided to do was stick my ftp download parts into a dll i created. Created a function within the dll and i have a return on that which returns the message 'file downloaded' or 'no file to download'. But can i return a value to update the progress bar as it goes when the code is contained in a dll? Or am i totally missing the point and how to use dlls?

View 5 Replies

Using Own Sub/functions?

Jan 6, 2012

I have a code which I call many times in my soft,its an external exe commandline file with arguments,Here is a piece of my code

Dim processgetver As New Process()
processgetver.StartInfo.UseShellExecute = False
processgetver.StartInfo.RedirectStandardOutput = True

[code]....

View 8 Replies

How To Use Listview Functions

Jun 21, 2010

I want to ask help from you guys, about on how to use the listview functions in vb.net. I also just starting to study about the vb.net for my object-oriented programming. Please help me in writing the codes for a simple listview.

View 4 Replies

.net - Anonymous Functions In C#?

Mar 13, 2011

The following syntax is valid VB.NET code

Dim myCollection As New List(Of Stock)
myCollection.Add(New Stock(Guid.NewGuid, "Item1"))
myCollection.Add(New Stock(Guid.NewGuid, "Item2"))

[code]....

How can I accomplish the same thing in C#? I have tried...

myCollection.FindAll(bool delegate(Stock stock) {
if (blah blah) {
}
});

But it appears I have somehow structured it incorrectly as I get the following error. "Error 1 Invalid expression term 'bool'"

View 3 Replies

Checking Functions In A Dll?

Mar 28, 2009

How do I check which functions are in a dll I don't who's contents are unknown to me? I am looking to use a certain function and I have a couple of dlls and I don't know in which one it is are its name. So i need to be able to show all function available in a dll and their parameters.

View 6 Replies

Combine 3 Functions Into 1?

Nov 22, 2011

I'v got 3 functions that I'd like to combine into 1. There is only one line in each function that changes. can think of a few ways off the top of my head, but not sure which is "the best", or "proper way" to accomplish this.

Private Function CheckQuads(ByVal QuadNumber As Integer) As Boolean
Dim intArray(3) As Integer
Dim x As Integer = 0

[code].....

View 8 Replies

Get Functions Name And Their Parameters?

Dec 13, 2010

We know some functions in dll files and can use them but if we haw a dll file and dont know functions names. is there a way to get the functions name and their parameters

View 3 Replies

Get Functions Of Sending Sms?

Jul 19, 2009

I am new to visual basic and currently doing my major project on sending sms using visual studio 2005. I want to create it in window application. I have search the net but I could not understand it. I have download some of the project that the net has found for me but when i test it the receiver did not received any message but the application have come out the popped out box saying "message send".

View 8 Replies

Getting Dll Library Functions?

Mar 1, 2010

I have a DLL library, but I am not familiar with it. How can I get its usage in vb.net?

View 2 Replies

Graphing Functions In VB?

Mar 7, 2010

Does VB.net have anything built in for graphing functions? Linear, quadratic, cubic, log, and absolute value functions would be my main needs. I would want to display the functions on a graph whose x- and y-axes both go from -10 to +10, with grid lines.

View 1 Replies

How To Call Functions

Dec 22, 2009

I am fiddling with the code here: [URL] I had a couple errors when I copied/pasted it into my project. I dimmed a couple variables, now the squiggle lines are gone, but I'm not sure how to call the functions in the project? Do I use a Lable or a TextBox? How do i make this work?

[Code]...

View 7 Replies

How To Do Left / Right And Mid Functions

Feb 6, 2008

I am working on a migration project of vb6 to vb.net, in vb they did some string actions with left, right, mid functions. How to achieve the same in vb.net.

View 3 Replies

How To Use E.graphics Functions

Jun 4, 2012

How do you use the e.graphics functions? I have visual studio 2010 professional installed. I opened a windows form project, in the code window I type e., there's only End. or Enum., no e.! Do I need to import something at the beginning, or do I need to open certain type of project to use the e. graphics class of functions?

View 6 Replies







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