Simple Independent Sub Procedure?
Jan 18, 2012
I am currently learning about Independent Sub Procedures and am having trouble Calling the Procedure back to execute in the program what would i put within the parameters near the Call function? Simple application get two numbers from two different textbox's and multiply those numbers and put the output into a label. Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
'Right Here
Call CalcTotal()
[Code]...
View 1 Replies
ADVERTISEMENT
Apr 15, 2010
I'm actually having problems converting fahrenheit to celsius in my code.I needed a independent sub procedure to do my conversion, and a button that will Call the independent procedure to convert it. Here's my code so far
[Code]...
View 1 Replies
Mar 15, 2009
I am attempting to modify the payroll application below using an independent sub procedure rather than a Function procedure I'm not sure why things are not working after I managed to get the thing to work with the Fwt function. It's got to be something minor that I'm overloking. I get the correct amount for "gross pay and "FICA", but get "0.00" for FWT (it should be 35.78) and I get 369.40 for Net pay (should be 333.62)' This is the "CalcFWT Function" version
Option Explicit On
Option Strict On
Public Class MainForm
[code]....
View 1 Replies
Feb 1, 2012
on a new project - windows form app i would like to bring a simple stored procedure from a server ( with credentials ) with one parameter.
the stored procedure is on the : "SERVER" "database" "sa" "sa" and it looks like this:
sql
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
[Code]....
also if i could select the client name from a drop down list would be verry nice. the select for the name is : "select name from clients"
The results could be exported into excel or a screen. ( after selecting the client in the form , another button for export )
View 1 Replies
Feb 26, 2010
I have a SQL 2008 Express DB and am trying to run an insert query. But every time I run the query I get the UnresolvalbeObjectException.
Dim db = Simple.Data.Database.OpenConnection("Server=localhostSQLExpress,Database=Foo;Trusted_Connection=True;")
Dim item as new with {.Name = "SMITH",
[code].....
View 12 Replies
Dec 31, 2011
I would like to make a web browser for my own use with various customizations. However, in VB6 the various web related control like winsock, inet fetch only html. Using webbrowser control is not the answer because it uses the same settings as windows IE. What I'd like to know is a control somewhat like the webbrowser but independent of windows IE setting. So that the changes made in IE wont effect my web browser. And also the webbrowser control does not have features such as blocking a specific image/CSS according to URL etc.
View 1 Replies
Dec 18, 2011
Been trying to make an independent web browser... One thing I would like to do is to make my tabbed web browser to have a 'separate web browser engine' than to have it run off any default browser. I know that it will take a long time I have been looking at lots of websites but they do not give me any helpful information which is annoying except to read small snippets of useless data.
View 4 Replies
Feb 19, 2009
Which is the best way (fast and robust) that .net framework (3.0/3.5) provide for interchange information (for example: dataset packages) between two independent vb.net applications?
View 2 Replies
Oct 21, 2010
what is independent and dependent if conditions!?
View 1 Replies
Dec 19, 2009
The development machine's and client machine's screen resolution are very likely to vary. I want a code that will RE-SIZE and RE-POSITION each and every control so that no matter what the development machine's resolution is, the application will look exactly the same on the client machine irrespective of its screen resolution.
These two links are as close as I get to the answer, but they are not very clear.
[URL]
View 6 Replies
Jun 24, 2010
How can I make my windows application DPI independent, while running it on Windows XP.
View 4 Replies
Jun 9, 2011
Can anyone throw idea to make the form as Resolution Independent?
View 5 Replies
Dec 16, 2009
I want to ask that this code opens a new web page in my web browser in vb.net
dim form as new form1
form.show()
But there is one problem that page opened closes down when we close the parent form - How to open new page as a new independent page with blank page.
View 1 Replies
Jul 1, 2009
i have a from child and independent form.. i want to pass value form chilc form to independent form.. how to do it?
View 1 Replies
Jun 10, 2011
Is there anyone can post a simple code using vb,that start building a simple games ?
View 2 Replies
Dec 1, 2011
The instructions are as follows:
1. Write a Visual Basic Console Application.Inside the main procedure call a function procedure to input and return a value for a double variable called x, the width of a right triangle.Inside the main procedure call the same function procedure a second time to get a value for a double variable called y, the height of a right triangle.
2. From the main procedure call a function procedure which calculates and returns a value for the hypotenuse equal to the square root of (x squared + y squared).You will have to pass the values of x and y to this function procedure.The procedure should calculate and return a double type value.The value that is returned by this function procedure should be equal to the square root of (x squared + y squared).
3. Also from the main procedure call a sub procedure to display the values of x, y, and the hypotenuse.
View 4 Replies
Feb 23, 2010
In a tic tac toe game I am making there are two blocks of code that are identical except that they access different arrays:[code]Arrays plyrTaken and plyrPairs are used in the first block and cmptrTaken and cmptrPairs are used in the second. Is it possible to wrap these blocks into one Sub Procedure passing the different arrays when the procedure is called?
View 5 Replies
Jan 28, 2009
I wanted to know how can two independent .NET application can exchange data. Something like DDE which was there in older versions.My purpose is to have an upgrade application (which is a seperate .net program) and my main application. Now I wanted to know that when my upgrade app runs it should be able to confirm that my main application is not running. How can I achieve this ? I know thru process name I can find out if my main program is running or not but thats risky if there is another program with the same name.Thus I wanted a way whereby my independant .net program (upgrade app) is able to determine if my another application (main app) is running or not.
View 2 Replies
Feb 23, 2011
Can somebody form an idea on how to architect a web application which will kick start an independent process in the server which can perform data uploading function from flat file to Oracle table. This independent process should keep running until it finishes its job regardless of the web application's sign out or timeout issues. The client is a .aspx page which uploads the data file to server and then triggers the independent process in the server.I want to implement this in ASP.NET, VB.NET, VS 2003.
View 2 Replies
Jul 7, 2009
How to develop a screen resolution independent vb.net application.
View 1 Replies
May 4, 2011
What I want to make the OpenTK window to be completly independent from whatever is going on with the other controls (for instance if button_click is Thread.sleep(10000) I dont want that my animation freezes for 10s). I want to have it in its own thread (no BackgroundWorker). The problem is I dont know what modifications should I do to get it working. It is currently initialized in InitializeComponent section. I want that all events and everything is handeled in its own thread, basically 2 "programs" in 1 form.
View 1 Replies
Mar 2, 2011
I have created a Windows service that acts as a server for my app on a mobile platform. Whenever a user sends a message to my app I process it . Now i Would like to send the message that the user sent to my server to an application. Something like SendMessage would be absolutely perfect But how do you fit a whole class into the Wparam and Lparam 's of a window message ?
View 1 Replies
Dec 9, 2011
Trying to make a simple browser with some simple addon's. What Ive done is setup a menu(forum) for the user to enter their email providers web address and it will save it in a xml file. When they click on the email link, it should load the email xml iformation and place that info in the tb_html.text and navigate. I keep getting a null exception and im not sure what going on here. Here is the code:
Browsers:
Private Sub btn_Email_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btn_Email.Click
'Load Action
Dim SavedEmailObj As Storage
[code].....
View 2 Replies
Jun 10, 2011
Counting days independent of system calander ?
View 1 Replies
Jun 10, 2011
I want to add a feature to my trial version of the application. After first activation, I want to make it limited to 90 days. But I am concerned about user's changing the date of system hence deceiving my application. Is there any possibility to make it fool proof in a way that even if user takes the calender back, application expires after 90 days of first activation? First activation date has been saved in the database.
View 2 Replies
Aug 10, 2007
Well i ran into some problems changing my getfwt to a independant sub procedure. This stuff is so confusing to me.[code]...
View 14 Replies
Mar 11, 2010
i able to get data then i click second time i got error Procedure or function "procedure name" display has too many arguments specified" why this error. [code]
View 2 Replies
Nov 29, 2011
Is there a way to terminate calling procedure from the callep up procedure? I tried 'Stop' from a called up procedure in an executable; it has gone stuck; I am not able to remove it(the form) from the screen!
View 18 Replies
Apr 15, 2010
I finished coding an application for converting Celsius to Fahrenheit, and vice versa. I used the Sub Procedure to convert them. What I need now is to modify it. I would have to use the Function Procedure instead of my Sub Procedure.
[Code]...
View 11 Replies
Apr 11, 2011
I am using VB 2008,I am trying to make a launcher my private server but, I failed it always say 'This exe can't execute independent" I tried these method
Shell ("Game.Exe") And System.Diagnostics.Process.Start("Game.exe")
View 9 Replies