Create A Separate File With Different Procedures?
Jan 16, 2011
I am playing around with VB 2010, and I want to create a separate file with different procedures etc so that I can call a proceedure etc from this file I have a simple form with a single label on it, and a seperate file called filelib.vb.In the filelib.vb is a proceedure called LogicalDriveTypes
Public Function QueryLogicalDriversNames() As String()
Try
Dim Totalstring As String
Dim ds As Int32
[code]....
In my form1_load I have Label1.Text = filelib.LogicalDriveTypes and I get "reference to a non-shared memner requires object reference. How where / what do I do to access the proceedures / functions in this other file any time I need to from this form ?
View 1 Replies
ADVERTISEMENT
May 10, 2009
I just happened to be reading through a post and stumbled upon this and was curious. As I was remiss to go off topic in someone else's post, I've dragged it out here.What we are doing here is logically incorrect. We loop thru all the records and set the sheet locked state and button image. But since the button is just one element, so effectively the image set would be that of the last record.We need to separate the two procedures and the events they take effect too.Ideally we should set the sheet locked state while loading it. (maybe the form_load event etc.). And we should set the button image when we switch the sheets (e.g. sheet change/activate events). The selection of events however depends on your requirements and wisdom.
[code]...
I noticed how the image was accessed above. My question is this, what is the differences between the above method and Image = Image.FromFile(Path) and if any, what are the advantages/disadvantages of each? This is just for knowledge purpose and is not pertaining to any particular problem.
View 1 Replies
Sep 17, 2010
I have a TabControl object on my form with many tabs created in code (TabPages) and my problem is that the same objects that are in the initial TabPage needs to be in the other TabPages created in code, I have this done in code when the user clicks the 'New Tab' menu option, however the same code is used for any new tabs created. The problem created here is that I have an event against one of the objects that appear in the other TabPages, but because the same code is used to create any new tab pages, the event will only work on the newest tab page, if that makes sense? By the way these objects that appear on the other TabPages are properties at the top so events can be handled against them in the respective subroutine.
[Code]...
View 5 Replies
Jun 9, 2009
How do you create a separate file that records and adds the favorites to so you dont lose them ect
View 4 Replies
Dec 15, 2011
i used to create sub procedures in vb6 under tools/ add procedure. Same is not available in vb2008. how can i create sub procedure in form.
[Code]...
View 6 Replies
Jul 14, 2009
i am begginer to vb.net can i know what procedures to be followed to create a online quiz in vb.net. i have to create a project.
View 1 Replies
Mar 8, 2009
I want to create a stored procedure in SQL server 2005 in order to check if there a specific value in a table. As I don't know how to do this can someone give me a link or an example on how to create and store the stored procedure? Secondly I wrote this for my the above stored procedure: CREATE PROCEDURE dbo.dokimi -- Add the parameters for the stored procedure here
[Code]....
One of the things that I am not sure is that I want to check the value that the user passes throuhg my application that I am creating. In the above code this exists in the select query @txtUserName.text. Is this right? Can I use it like this or should I declare something more after the create procedure statement?
View 4 Replies
Mar 30, 2009
I have a windows form with a textbox bound to a data table and a PDF Viewer both in the same form. I could change the text on the textbox and the Viewer would show whatever is linked to the textbox. I am trying to create a separate form to put the viewer in but at a loss on how to link it to the textbox on the first form.
View 4 Replies
Jan 10, 2010
I would like my application to do something (in one form) and while form is doing that i would like to show another form to the user. Code is:
Private Sub blaa()
Dim a As New Working() 'working is another form
a.Show()
'Do some stuff
a.Close()
End Sub
But when i make new form i find it is on the same (main thread) and therefore new form also frozes. How to make new form on separate thread?
View 4 Replies
Dec 22, 2011
How do I create separate files in a VB Express 2010 project?[code]...
Query 1: When creating class files, the VB Book by Loffelmann & Purohit (p 172) says, put the class in a class file that has the same name as the class. However, as shown, I want to have two or more related classes in this file. Do I need a separate file for each class? That would get cumbersome!
Query 2: Can I create a file similar to MyOutput.vb so that both MyModule and MyClass can include statements like[code]...
View 2 Replies
Jan 23, 2012
Currently I'm creating a task that runs a hardware i/o loop for the duration of my program.i.e. it's a task that's created at the program's start and runs a loop that is only broken at the programs termination. Each loop cycle communicates via ethernet to hardware.depending on time outs each cycle takes 30-300 msec)I've noticed that if the loop runs with out any break that the program really slows down... to counter act that I placed a thread.sleep(x) in the loop
View 6 Replies
Oct 19, 2010
I have a class called FileInfo. It has properties for stuff like FileNumber, Vessel, OpenedDate etc.
Now for a file I need to have Timesheets and Invoices.
My question is, do I create seperate classes for the Timesheets and Invoices?
View 5 Replies
Sep 19, 2011
is it a bad idea to create separate parts/winforms of the same application (using the same SQL Server DB) in different executable files. For example for a School IS: A Receptionist App, A Teacher App, A Principal App and so on.
View 2 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
Jul 13, 2010
I have to create a textbox which will list down one column of datas from textfile which is separate by delimiters.But as I have to filter alt.Row from the text file, what can i do?
View 9 Replies
Feb 23, 2012
I created a telephone number form where the user enters the telephone number in a text box as (nnn) nnn-nnnn. The first 3 digits in parenthesis are the ISD code, the next three are the area code and the last four are the local number. I need to separate out these three fields of the phone number and display in three separate text boxes labeled appropriately. Now, suppose the user enters the phone number in a text box as a continuous string of 10 digits, where the first three represent the ISD code, the next three represent the area code and the last four represent the local number. I'm lost as how to change this string into the form (nnn) nnn-nnnn. This is what I have
[code]...
View 3 Replies
Feb 15, 2011
Anyways, i have coded a video downloaded and i want to include a converter as a separate exe file. But obviously people may have different file directories so a simple piece of code i have used won't work. This is what i have: Also where would i place the exe file?
View 3 Replies
Apr 30, 2010
I'll get straight to my problem - I'm currently coding in Visual Studio.I have a table (countries) with the columns ID | Name. The table is filled with around 28 records.I also have a form with 4 combo boxes (set up as 1,2,3 & 4) that I want the user to select. These combo boxes will display the names from the table countries. I then want to use the selected names in the combo boxes to Insert into their corresponding ID into another table. For example England would have the ID 1, USA the ID 2 etc.So, is it possible to have separate combo boxes that will give separate ID values but using the same table? At the moment I can't seem to find a solution.Eventually the form will have more than 4 combo boxes so I don't want to use separate bindingsources for each combo box.
View 5 Replies
Jan 15, 2012
After creating a project in vb.net how to make a separate file so that by clicking on the file the project should directly execute
View 4 Replies
Nov 6, 2008
How can I move the following to a separate class for repeated use ? (the problem is that it uses response object)
' Download/View a given file
Protected
Sub downloadFile(ByVal sFile
As String)
[code]....
View 1 Replies
Aug 5, 2011
I have a listbox in separate class like this [code]
[Code]...
How can I use that list box that I have created in that class on this form or I want to show that listbox on my form?
View 3 Replies
Jun 18, 2012
I need to be able to open a selected file (upon the user selecting it from his/her computer) in different browsers (CHROME, FIREFOX etc) I have downloaded the portable versions and placed and have figured out how to get them to open, but am not sure how to open the file selected in each seperate browser. is it possible to dictate the position and size of each window that opens? Because preferably I would like to be able to divide the screen up with each of the browsers selected.
View 1 Replies
Jun 18, 2012
The code shown below sucessfully saves text onto a line in a txt document, but using the array, I want to be able to save each piece of text on a separate line.
Dim filePath As String
Dim objectWriter As StreamWriter
Dim text(3) As String
[Code].....
View 2 Replies
Jul 27, 2011
I have a text file like this:
name=xyz
user=asdfjklas
etc...
i need to have a string called name with "xyz" in it, and a string called user with "asdfjlas" in it.
View 2 Replies
Dec 16, 2009
I am reading a text file in which has three colums of information i.e.
00100 25690 21586
23510 25694 24856
25896 45478 52897
58745 59687 12364
I want to read the whole file, and split the colums so each set of numbers is put into an array to be used as an input for later. If the text file only contains one line of numbers like 00100 25690 21586, I have written a code to seperate those and put them into an array which is attached. If the text file contains more than one row of numbers I can read the whole file in line by line but I can't get the strings seperated.
[Code]...
View 11 Replies
Mar 4, 2009
When I code in PHP I usually keep my functions in a separate file functions.php, I am going to write a small function in VB, is it ok to keep all my functions and subs in the 1 file linke in PHP? will they be available in all my form code?
View 3 Replies
Dec 4, 2011
So my issue is that I created program that writes a text file in several lines but I am having trouble reading those lines in separate labels on another program. I don't want them in one label but separated with one word to one label.
how can I put a counter on the time a new file is added to the program? I can't seem think of a code for it.
This is my coding so far but I feel like it's not really giving me anything
Public Function ReadFile(ByVal myFile As String)
Dim strContents As String
Dim sr As StreamReader
[Code]....
View 11 Replies
Jan 13, 2009
how do i put line 1 from a text file into richtextbox1 and line 2 from that text file into richtextbox2.
Then if i edit either i can then save and overwrite the original
View 8 Replies
Nov 7, 2011
I have been trying to find out how to do this for days now, so I am finally asking how. I am newish to programming. Here is my problem.
I am trying to extract x,y,z coordinates from a text file arranged as such:
x,y,z
x,y,z
x,y,z
etc.
I need to be able to extract the x column into an array, the y into an array, and the z into an array. I learned how to pull it into a string, and how to split for every line, but i don't know how to split after each comma and separate them.
View 1 Replies
Oct 26, 2009
I have an object that is defined as a global variable based on custom class. Within that class I have an event that gets fired a certain intervals. These events are fired on the same thread as where the object is declared. How do I create a global object, but have the events within that object fire on a separate thread?
View 2 Replies