Create A Simple Application Which Has 2 Forms?
Apr 20, 2010
I wanted to create a simple application which has 2 forms.the first one contains a combobox which has the list of names of reports.now i select this report and click on next which takes me to the 2nd form.there i have to enter 4 values(or parameters)like the date from and date to and other 2 values...using these 5 values i want to retrieve the respective reports from the archive folder based on these parameters...i just know how to select and move to the second form from the first..how do i achieve my goal of retrieving the pdf files.i want the result in a table form which will have column names of the parameters i pass and the last column with the report pdfs.
View 6 Replies
ADVERTISEMENT
Jun 25, 2009
I'm new to VB.NET, and have set myself a little challege to learn VB.NET, I was wondering if you you guys new any really good tutorials on how to create a effective MDI Text Editor?, Ive been able to create a simple text editor, however the next step is to use the MDI to be able to have mulitple windows within one form
View 5 Replies
Dec 18, 2010
today I attempted to create a simple application using codedom.Basically I want to be able to compile a messagebox with the custom text entered in the builder.
This is what I have so far.
ICompiler.vb Class "Codedom" Class and in my main form "the builder I have this
[Code]...
If no one could help me perhaps does anyone have a simple source example?
View 1 Replies
Jun 8, 2012
i want to create a simple chat and server application but i dont know where to start in socket hope someone will help me to create the application.
i found some tutorial in .net but it doesn't explain the code.
View 3 Replies
Nov 27, 2011
I want to create a very simple (to begin with) database driven application. The company I work for have very kindly said they will host any SQL database I create, they have a remote server that we all connect to for files etc.
So I want to be able to create an SQL database that they can host and have my colleagues and I install the application local on our machines.
[Code]...
View 6 Replies
Aug 29, 2011
a friend of mine wants to create a simple inventory database that can be deployed on the web.He has had a lot of experience with Database tools like Paradox. Moreover he has experience with writing Macros and programs with Basic, and even a bit of C++ experience. He uses Windows and Mac OS X, though mostly Windows.
If the requirement of having a web application wasn't there I would recommend MS Access.
[Code]...
View 6 Replies
Nov 18, 2011
I'm setting up a simple app that has 2 variables, one from a combobox and one from a textbox.Putting all my code directly in the button1_click sub works just fine, however, I wanted to add a marquee progress bar so I tried to implement a backgroundworker.
[code]...
and call it with Me.Invoke(New SetComboBoxTextDelegate(AddressOf SetComboBoxText), ComboBox1.Text)but it still throws the Cross-thread operation invalid error.
View 10 Replies
May 12, 2010
i, im new to this forum, but i know hot to use.i have 2 question
1- i want to create a application that make the same job that do CCleaner software, but i don't know the full code.can anyone tell me?
2-hot to create a application that don't need to be install
View 1 Replies
Oct 8, 2009
Is it possible to create an MDI application which have each MDI window in a separate processes like Chrome does?
View 1 Replies
Dec 4, 2009
I need to create form-application witht many forms.How profession is doing spalsh form. Is it splash-form is main form of application, or application have main form, that hide on start and show child splash form.
View 4 Replies
Feb 25, 2009
how to create window based application in vb.net
View 2 Replies
Jun 21, 2009
I am building a simple windows form (using VB.NET) for a friend to use at work. His company has about 10 specific colors schemes (they have list of RGB values) that they use for the company logo, website etc.
I want to follow this color scheme in my application and, to simplify development, would like to build an enumeration of these colors to avoid hard coding the RBG value for every label, panel etc.
My initial thought was to do the following:
Enum ColorTypes
CompanyDarkBlue = Color.FromArgB(0,56,147)
CompanyBlue = Color.FromArgB(0,111,198)
CompanyLightBlue = Color.FromArgB(0,145,201)
End Enum
However, it's not that simple as a constant is required. I looked around on the internet and I found an example of how to achieve what I need but it seemed inordinately complicated for what seems like quite a common requirement for application development.
View 4 Replies
Feb 16, 2009
I'm wanting to develop what I perceive to be a pretty simple application. I want something that runs in the system tray that tests for the presence of a particular file on a network drive. If the file does not exist, the icon in the system tray is a green circle (like a traffic light).If the file DOES exist, then the system tray icon is a yellow circle (caution), until the user clicks it (the yellow system tray icon), and a record is written to another file, then the system tray icon changes to a red (stop) circle until that first file we tested for is gone.I'd also like to create "balloon messages" to go with the changes in the system tray icon.
View 1 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
Nov 14, 2011
I've search the net in order to create a custom control but nothing I find is worth looking at, The main thing I want to do is create a skinengin via DLL and import it in my vb 2010 then using or creating some sort of skin builder where I can create a full setting file which contains all the details of the customization regarding the Form(Look, Feel and the controls such as a menu), I have used Iriskin and multiple apps doing this for me and when a user installs my application they still recieve a message about buying the registered DLL file, I would like to create it completely from scratch.
View 2 Replies
May 5, 2012
I am trying to create a small windows forms application that demonstrates how a user can use pen-based input(ona Lenovo X220 tablet PC) to enter text (rather than typing on a keyboard) I am using Visual Basic in Visual Studio 2010.I think the control I want to add to my Visual Basic Project is the Microsoft InkEdit ControlThe instructions I see on other parts of microsoft websites refer to a .net framework componed called InkEdit. The instructions I found so far is to right-mouse click on the tool box, click 'choose items' and then select the Inkedit Control from the .NET Framework components.
View 12 Replies
Dec 29, 2010
If I have a large number of classes, each similar to the other in certain aspects (they all share a common base class, but each does things differently), and I need to create Windows forms for each to allow easy changing of their values through a GUI? Create one matching form for each object in VS' forms designer, Or Use code to create the forms dynamically at runtime.
#2 makes the most sense to me, because a lot of these objects will share very common features of the form, notably "Ok" and "Cancel" buttons. But one object might need to draw a textbox on the form while another might need to draw a combobox. Not to mention, if I want to put icons on the "Ok" and "Cancel" buttons, I'd have to do this for each copy of the form in designer, and that sounds like it could get out of hand quickly.But is drawing forms through code sane? VS' forms designer is pretty sophisticated and designed to make life easier. Am I wise to consider ignoring its functionality and diving into the trench warfare of forms design through code? Or are there examples of automating form creation based on an existing object's properties?
View 1 Replies
Feb 28, 2012
Trying to publish a click once type app to a local directory and create a websetup with the published contents- so that i can give tat setup to install in two different servers. but as the publishing wizard takes a URL - separate setup is required for each server. Is there any way that i can create a single setup which i can use it in two servers..?
View 1 Replies
Apr 19, 2011
The environment will not create a resource file for a newly created Windows Forms Application. When I add a button Visual Studio displays a dialog "File Exist". That'sall, plus an OK button. There is no file name or the file name is in unreadable characters.The dialog comes from Visual Studio because the title is "Microsoft Visual Studio".There is no resource file so it must be that the resource file cannot be created.I uninstalled and reinstalled Visual Studio 2008. It did not change anything.I believe the problem was caused by opening the same project rapidly twice on an i7 laptop. I have done this unintentionally before and I can testify that unpredictable
View 2 Replies
Jan 16, 2012
I am not able to find the Exclude Command in VB 2010 Express. I have no idea which version of Visual Studio it is working with. I've got one 217MB VB 2010 Express file and many 2008 VB Express files with one of them measuring 31 MB. There many other SQL files and .Net Files.
View 4 Replies
Jun 16, 2011
I am new in programming, I am trying to develop a simple calculator but I am unable to connect the addition, subtraction and equal sign buttons.[code]
View 1 Replies
May 14, 2009
Recently, someone asked me to code a program for them in Visual Stuido. What they need is a program that allows them to enter names, and each name has to pick a option (i was thinking that the user would select a radio button) and each option could only be selected a limited number of times.
View 8 Replies
Apr 6, 2010
I have absolutely zero coding experience and my background is non-IT. I'm however trying toy friend who also shares the same non-coding skillset as mine her automate some of her work but building a simple form that takes a bunch of input (drop down, check boxes, radio buttons, rich text boxes etc) and outputs it to the a word or rtf file. Is this possible?
View 14 Replies
May 27, 2009
I'm wondering, is it possible to create a (REALLY) simple web server in VB.NET? I may be wrong, but don't you essentially just need a listener for port 80 and a way to send pages to the client?
View 3 Replies
Jan 4, 2012
Im trying to create a program with a simple gui that enables me to search for and select parent folders containing child folders containing multiple files and then validate those files based off of constants i set per child folder and file.
Example
User selects Parent FolderX
Parent FolderX > (ChildFolder1 ( Constant for ChildFolder1 says open file 4 ) > File 4
Compare multiple strings of text in a specific order based off of file name to constants i have set for that named file Then continue to ChildFolder2 ( Constant for ChildFolder2 says open file 16 ) > File 16 Compare multiple strings of text in a specific order based off of file name to constants i have set for that named file If there is any constants not read in one of the files after all have been checked, return msgbox with a notification and write .txt log with child folder and file names to specified directory?
View 4 Replies
Mar 2, 2011
My professor said that if I create a cleverbot she will give me a high grade but the problem is I only have 2 weeks to do it. Please help me, i can connect vb 2008 to ms access ( i think i will need it)[code]...
View 39 Replies
Oct 31, 2009
I just want to be able to click on a commandbutton, menu_item, or maybe even a wizard at program install time, to make the database from scratch.
1) I do not care what type of database it is it is as long as it will run on any pc machine without having other programs installed except the one im creating.
2) I do not want to use access or the designers to create the database either
[code]...
View 7 Replies
Apr 22, 2012
I apologize if this question is something of the most simple, but I'm not even sure what terms I should use to search. What I'm trying to do is create a 'Sub' that will do something when I call it in another Sub, however I am unsure in how I would pass variables from one another. Here is what I have;
Private Sub Log
LogBox.AppendText(logstuff & vbNewLine)
End Sub
[code].....
View 2 Replies
Sep 23, 2007
I am a beginer and I am trying to create a simple web browser using Visual Basic 2005 Express Edition.
Public Class Form2
Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
[Code].....
As you can see from the above code I do not have forward, back and stop buttons. Thats because I do not need them. The browser will be configured to go to a certain website directly.
What I need is this browser should be configured to use specific JRE. That is the browser should use ONLY JRE 1.3.1 or ONLY JRE 1.4.2
View 7 Replies
Aug 4, 2009
With a 1-many relation. Ok, I have constructed the schema, and now I want to make the appropriate forms in which a user would scroll for a customer and then by pressing a button, a new form would appear showing all the orders that he has made.
I am interested in the way of building two forms that would have a one to many relation. That is basically what I would like to know. Also, Do you have any good book to suggest in order to create a real world app, in VB2008, Emphasizing in data-binding and connecting controls with underlying DB, one to many forms, searching etc.
View 6 Replies