Start Separate Exe Specific Form?

Jan 6, 2011

This may sound silly but is it possible to run a separate exe and call a specific form to load?

For example:

Let's say I have two exes one that checks licensing and then once that is done it calls another separate exe to load a specific form based on the type of license selected?

It sounds doable but can anyone share a snip it of code that may do the trick?

View 16 Replies


ADVERTISEMENT

Multi-threading Forms - Open A Separate Form As A Separate UI Thread From The Start Up Form

Oct 27, 2011

I have a few forms that have a lot of really intensive updating along with a great deal of user interface (text boxes, button clicking etc) Is it possible to open a separate form as a separate UI thread from the start up form that called it to "show" or open or whatever the new method might be?

View 6 Replies

Set MDI Child Form To Start In Specific Position? (Or Dock In Panel)

Dec 6, 2009

How can I make my MDI child form to load in a specific position in the parent form? Or preferably, how can I make the child form Dock Inside a Panel in the parent form?

View 4 Replies

VS 2010 Unable To Start Specific Command With Process.start

Jun 18, 2011

Here's what I currently have:

[Code]...

I've commented out various things to limit it to specifically this command (example, I can swap mklink out with notepad and it works fine). The command runs fine from a DOS window, but can't be found when I use it this way. I also tried using the SHELL command just to test and I get the same results. No idea why it can't be found, as like I said it executes from the command prompt just fine.

View 2 Replies

How To Start A Separate Process

Jan 20, 2009

ok i figured out how to call a different program but i have like 7 things here and i dont know what one to use.....i want to click a button and another program shows up.

first off is this right.
system.diagnostics.process.start()
then my folder path thing is

[code].....

View 2 Replies

Start Dll As Separate Process?

Oct 13, 2009

I build a class library (dll) with a form in it. Now i start the dll : Dim myDLL As New ClassLibrary1.MyFirstDLL(). The problem is that this dll starts but not as a separate proces i also dont see it in the taskmanager. what i see is that when i start the dll from my program, my program start using more cpu/memory. The whole idea behind a dll is that it dont consume memory of the process that calls it. So how can i start the dll as a new separate proces but still be able to send variables to this dll. (i also created a whole new proces but then i can not send variables to it)

View 12 Replies

VS 2008 Start Timer On A Separate Thread, So It Doesn't Block The UI?

Sep 17, 2009

Is it possible to start a timer on a separate thread so it doesn't block the user interface, or do I have to make a thread that I call from the timer?

View 2 Replies

Load The Sub Main At The Start Rather Than Loading A Form On Start Up?

Feb 24, 2012

How can I get my application to load the Sub Main at the start rather than loading a form on start up.

I have tried declaring 'Public Sub Main' on my forms and in some modules, yet in my project properties, it is not one of the options.

View 12 Replies

Start Program At A Specific Time?

Apr 8, 2010

how to start a VB.NET program at a specific time of the day, but I simply cannot find it. I've found an example that shuts down the computer at a specific time of the day, but having no experience with the Timer function, I wouldn't know where to start when hacking the code.As an example, I'd like the program to run at say 2:00PM and display a message. The displaying the message won't be hard (MessageBox.Show("Stuff")), it's just the starting .

View 8 Replies

Get StreamReader.ReadBlock To Start At A Specific Line?

Dec 31, 2009

I want streamreader.Readblock to start reading a file from a specific line, but I need some help with this.so far I have have the following example

[Code]...

View 4 Replies

Start Multiple Threads But Not A Specific Number?

Dec 3, 2009

I want to start multiple threads but not a specific number. For example;

private sub do_sth
...
end sub

[Code]....

View 1 Replies

VS 2010 Make A Window Start At A Specific Screen?

Sep 19, 2009

How can I move my window to a specific System.Windows.Forms.Screen?

View 4 Replies

Load The Main Form Of A WPF So That A Separate Thread Goes And Gets Data From The Database While The Form Is In An Apartmentstate?

May 15, 2012

How do i load the Main form of a WPF so that a seperate thread goes and gets data from the database while the form is in an apartmentstate? (drag-able / movable) I Know this is possible with opening a new window from your main form like this :

Private Sub openOrderWindow()
Dim OrderWindow As Orders = New Orders
OrderWindow.ShowDialog()
End Sub

[code]....

I've tried putting MyBase.ShowDialog() and .Show() and .9000+ other things The only benefit I've got out of using a seperate thread to load from the databse is i can see the screen right away (as oppose to it being a transparent box until it loads) but i cannot move it around or minimize it?is there any way to make it Movable while it loads?

View 1 Replies

Specific Reason Camel Casing Examples Often Start With A Lower Case Letter?

Jan 14, 2010

Is there any specific reason why camel casing examples often start with a lower case letter?

E.G:Dim btnSave As New Button
'as compared to.>>
Dim BtnSave As New Button

Is it to make a distinction between the ( object / variable ) and its TYPE?

Why then does the IDE not add items starting with a lower case letter if lowercase initial lettering is more common or more accepted?

View 6 Replies

String Manipulation - Separate Three Fields Of The Phone Number And Display In Three Separate Text Boxes?

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

Create Separate Object Instances For New Objects In Separate TabPages?

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

Possible To Have Separate Combo Boxes That Will Give Separate ID Values But Using Same Table?

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

C# - Detect If Application Start Using A Manual Handling (Pressing An Icon) Or Start When Windows Start?

Feb 28, 2011

I have made my application to start automaticly when windows start (registry ../currentversion/run/appname + path). In this mode the application start minimized and an little icon appear in the notification icon area. With this icon you can maximize the app or exit it.If you exit the app and start it again using the Menu (Start/programs etc) than the application start in minimized mode (and in this case I would like to have it in normal mode) because the setting autostart is still true.Is there a way you can detect when the application start when windows startup using the above registry or when people click on an icon in the programs menu (or desktop)?

View 2 Replies

Access To A TextFields In A Separate Form

Apr 30, 2009

In an application with multitab on a user Form after collecting some information I will plug it into an access database and collect data and disply it with another "Second" User form.On the second user form I make a selection from 1-10 selection on the second user form, and again I will read the access database using the selected data by the user and would like to plug in to the First user form and close second user form.Somehow my textfield is not accessible and I get the yellow tip of "PLName is not member of 'Windows.System.Forms.Form'"[code]

View 4 Replies

Create A Separate Form To Put The Viewer?

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

Create New Form On Separate Thread?

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

Detecting Victory In Separate Form?

Feb 24, 2009

In a project I'm working on, I have 3 separate mazes, a Splash Screen, and a Module for my global variable(gWin, to detect wins on the mazes). When you finish a maze, I'd like to get it so that it does not allow you to go back and redo a maze, to prevent cheating as I want a final screen to appear when they complete all 3 of the mazes. Is there a way that I can make a variable or something to be able to check if a maze was already completed then cause that maze to have it's .Enabled property set to false?

View 8 Replies

Dock A Separate Process In Form?

Mar 9, 2010

I'm just wondering if there is any way to dock a separate process in my form? For example, Firefox.

View 2 Replies

Have TextBox On A Form In Separate Answer's

Feb 4, 2011

I Have a textBox on a form to give me my IP address (but I have 3 anwser's going into 1 textBox) When I use a button to revile The anwser's,all in one Textbox .How can I seperate Each anwser's with a space. Code Below: (TextBox5 is the TextBox I need to seperate the Answers) [code]

View 12 Replies

IDE :: Get The Toolbox To Be To The Left And Separate From The Form?

Jan 17, 2011

when I open an application to make changes, and I open the toolbox, it appears in the work area with my form. How can I get the toolbox to be to the left and separate from the form?

View 2 Replies

Update A Form From A Separate Thread?

May 9, 2010

I've looked at the on line doc over and over, and I can't seem to figure out why this won't work. This code runs the thread, and the thread seems to execute the code in the 'threadsafe' sub, however neither the progress bar is updated or the button click performed.

Imports System.Threading
Public Class VisNotify
Inherits Form

[Code].....

View 4 Replies

VS 2010 Separate Exe For Individual Form?

Oct 20, 2011

I'm creating a project but I only need exe's as my final thing. I don't know how to put it in simple terms, but here is how I need it to be..The main window remains open i.e.frmMain. ther other forms are only called by an external program (LanSafe UPS Software) every time something happens (Either batteries gets disconnected or power fails). Each of these forms have to be separate executable files. This application is for sending SMSs using Fusion 100 modem. Is what I need possible?

View 8 Replies

Access A Progressbar In Form From A Separate Class?

Oct 18, 2009

I need to be able to access a progressbar in my form from a separate class.

I tried


Dim Prog as Progressbar
Public Property Pg()
Get

[Code].....

I need to be able to access a control from a separate thread and return to the thread again.

Edit: Its just an example I gave prog a value of the object from the form and the invoke required is put in a sub so thats not my problem.

View 3 Replies

C# - Adding Picture Description On A Separate Form?

May 27, 2012

I have picture boxes added to a FlowLayout panel and a ContextMenu strip (associated with picture boxes) with 'Add description' item.

When I right click on a PictureBox and select 'Add description', a new form pops with large preview of the picture and a text box to write the description.

How can I preserve the text written by the user on the new form, after it's closed, so if user wants to edit the description, he doesn't have to type it from scratch again?

I figured I'd have to store the description somewhere and load it into the form when user clicks on the same picture again, but how can I know what picture he clicked on?

View 1 Replies

Check To See If Button Was Clicked In Separate Form?

Jun 1, 2011

okay on my main form i created an instance of another form

Dim secondform As New frmSecond and i called it with this

secondform.ShowDialog() okay now when the secondform pops up there is a "OK" button and "Cancel" button. how can i tell which button was clicked? If "OK" was clicked i want to perform a task, otherwise nothing happens..

View 3 Replies







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