Launch Legacy GUI Application Without GUI From VB (hide Graphical Interface)

Aug 20, 2010

I have a legacy application that has an interactive graphical user interface, but also periodically checks for files in a directory and reacts to the files. I want to launch the application from a VB program, but not see the GUI (i.e., just let the file interface do it's thing). I really don't want to see the application running on the desktop at all (e.g., no windows, nothing on taskbar), the only evidence would be if I checked task manager I'd see it running.

Obviously this app would be ideally a service, but that's not where we are and I can't change it so I'm trying to simply not see the GUI.

I've seen the ProcessStartInfo.CreateNoWindow and WindowStyle = hidden flags but they don't hide the GUI of the legacy app.

again launch the legacy app (actually an unmanaged C++/MFC app) from a VB managed admin app.

View 4 Replies


ADVERTISEMENT

Interface And Graphics :: Use A Graphical User Interface That Contains A Drag And Drop Form?

Oct 19, 2008

I'm working on a design project where I have to use a Graphical User Interface that contains a drag and drop form. It consists of having a window dropped on a wall. Both of them are images to scale. I would like to know what kind of code I would have to use to show the x and y coordinates of one of the points of my window when dragged so when I drop it, I'm dropping in it on the desired coordinate of the wall.

View 2 Replies

Making Graphical Interface?

Jul 24, 2010

want to make my program look nicer , but i dont exactly know how should i make it's visual for example making a menu or else

View 2 Replies

Graphical User Interface (GUI) In VB And Engine In C++?

Oct 8, 2010

What is the best way to write a GUI for C++?

View 1 Replies

Graphical User Interface Like JQuery UI?

Sep 17, 2011

i want the user interface to be kinda similar to the jQuery UI. This means themed buttons and windows(preferabely the ones form jQuery UI) Also, i'm looking for nice sliding and morphing windows.

View 3 Replies

HangMan Game - Project That Has A Graphical Interface ?

Apr 20, 2009

I am working on this hangman project that has a graphical interface where the user has 2 options either guess the entire phrase or use a combo box to guess letters. I have the guess text box working but I can't for the life of me figure out why it is not working correctly with the combo box. The following is my entire code for the project. I have it setup to show me which phrase it randomly selected but when ever I pick a letter in that phrase it doesn't fill it in or anything. I'm thinking it is an issue with my loops.

I highlighted the section where the problem is occurring.

Public Class frmHang
Dim strWord(10) As String 'array of answer cchoices
Dim strAnswer As String 'the correct answer

[CODE]...

View 6 Replies

VB 2010 Program & Graphical User Interface Design

Feb 15, 2012

I'm trying to hone up on my (beginner) coding skills & I would prefer that the the 'Designer coding window', not the 'Design window', wouldn't interfere with these studies. Sometimes it's there & sometimes it's not. I don't understand it at this point & would prefer it wasn't there. All I need is the 'Design window' & the 'regular coding window'.

View 2 Replies

Graphical Interface - Need To Filter Data Received From Serial Port?

Jun 4, 2010

I'm doing a project and want to do a graphical interface using V. Studio 2010. I want to use VB.NET as a programming language.
- Do I have to add any software to define VB.net?
- What is the function that reads the data from the serial port?
- If I want to receive more than one type of data, and I want to put/read them in separate text boxes, what is the function to filter the incoming data?

View 4 Replies

Launch A Website But Hide The URL?

Jul 23, 2009

I have a vb.net windows form. I want to launch an ie windows with code similar to the example below, but I want to launch an ASPX pagewith query strings that I don't want the user to see once the web page has rendered. In ASP.NET I have server.transfer to pass the query strings internally, but the info for the querystrings is coming from client-side vb.net app. So, I want to know how to do the equivalent of server.transfer from vb.net to asp via URL.

[Code]...

View 6 Replies

Get A Legacy Program Application Up And Running And I Need DSOleFile.dll?

May 13, 2011

I am trying to get a legacy vb.net application up and running and I need DSOleFile.dll.

View 1 Replies

VBS Script To Launch And Login To Citrix Web Interface?

Jan 19, 2010

I have never used VBS script before but I would like to use it to launch a Citrix WI page and to login in to the website.I have using XenApp5.0 FR2 with WebInterface 5.2.I have this script but this does not work on login, I can open the website but then I get an error:

strEmail = "myusername"
strPass = "mypassword"
Set objIE = CreateObject("InternetExplorer.Application")
objIE.Visible = True

[code]....

View 4 Replies

Make High Graphical Application Smooth?

Jun 22, 2010

I have used flash(.swf) animation & high quality graphical image there in my vb.net application. But problem is that sometimes when I click on menu it shows small line under it & take time to load it. It shows line under menu when load another forms though there is no line under that menu. I have 25 forms & every form has high quality image(image size is 1280*1024). Is there any way to get rid of this problem? Is there any way to make my application smooth though its high graphical & animated?

View 1 Replies

VS 2010 Direct2D - Graphical Simulator Application Using GDI ?

Apr 17, 2012

I've been working on a graphical simulator application using GDI. GDI is terrible for rendering what simple graphics I need, too much flickering and definitely not efficient. From what I have been reading GDI and GDI+ are pretty much out of date and what I should be using is Direct2D. But my problem starts when I cannot find ANY reference material to even begin coding. I found some examples for C++, but my little knowledge of C++ prevents me from implementing and translating it to VB2010. I have found someone on VBForums through a Google search that says he is starting a tutorial for Direct2D for VB2010 but I have yet to see anything happen.

All I am rendering are small circular shapes used for simulating cell growth, I have no problem rendering 10-20 moving shapes at a time with a small amount bearable flickering, but any more the lag worsens exponentially and the application will use a ridiculous amount cpu. Overall I want to be able to display and render over 100 shapes at a time. So my question is... Where can I find some reference material regarding Direct3D for VB2010?

View 2 Replies

Using Process.Start Method To Launch Another Application From Application?

Feb 27, 2010

I'm using Process.Start method to launch another application from my application. Until today, there was no problem. But I have tested my application in a different OS, Windows XP (SP3), and my application didn't work right on that. I'm also using arguments to run that application. I guess for some reason my application couldn't send arguments to other application correctly under Windows XP. Maybe it is related to my code. But you should know, it works great on Windows 7.

[Code]...

View 3 Replies

Vb6 LEGACY Application And New Functionality (Form) Written In C# - Closing The .net Form From Vb6

Feb 8, 2012

Alright, I have a vb6 LEGACY application and new Functionality (Form) written in c#. I have a VB.NET COM Class as a wrapper. I can launch the .NET Form just fine. THe problem I am having is closing the .net form from vb6.

Example:

In VB6, I have something like this:

CODE:

But it does not work becuase frmViewer is Nothing for some reason. how I should close the .NET form that was launched from VB6?

View 8 Replies

Hide Standard Form Properties In Program Using An Interface?

Jan 16, 2011

In VBA you can have a Userform implement a custom interface and only the properties defined in the interface will show in the VBA Intellisense for the Userform. I tried to duplicate this functionality in VB.Net (2010) and all the base Form properties still show.[code]...

View 2 Replies

Interface And Graphics :: Create A User Interface In A Game Such As The Application XFire Using VB?

Jan 12, 2010

how to create a user interface in a game such as the application XFire using Visual Basic?

View 3 Replies

Interface And Graphics :: Hide / Show - Doesn't Dispose When Close Form

Oct 23, 2008

Is there a way to have a form within a program that doesn't dispose when you close it? I have a form in my project and a menu item to show it. When I declare the form globally and show in menuItem.click, then the click event breaks because the form no longer exists. When I declare the form within menuItem.click, then this creates a new form every time I click and that's not what I want.

View 1 Replies

Launch Application From .vbs Script?

Dec 14, 2011

I am trying to launch a application from a visual basic script. Everytime I run the script it looks for the application in whatever folder the script is sitting in. If I put the script in the folder where the executable is it works. Unfortunatley this script need to run from users temp directories.

' *****Declaring variables*****
Option Explicit
' Comment the next line out if you are not getting this to work and you need to debug.

[Code].....

View 1 Replies

C# - Launch A Windows Application From A Webpage?

Mar 8, 2011

We have a company intranet and the powers that be think it would be nice to have a collection of icons/links representing the applications that most reps use (Outlook, Excel, few other apps).

The idea would be that if the application is installed, clicking the link/icon would launch the application on the client machine.

Anyone ever had a requirement like that and been successful implementing it?

View 3 Replies

Launch An Application And Send It To Second Monitor?

Apr 28, 2009

In VB 2008, I am using the class 'process' to launch and external application with a few parameters. Does anybody knows how can I send it programmatically to second monitor?

View 1 Replies

Launch An Application Form Resources?

Jul 13, 2011

I want to launch an .exe file from my resources.?

View 1 Replies

Published Application Won't Launch On Other Computers

Aug 15, 2011

I've been working on a piece of software for a few weeks now and I've got to the point where I'm publishing it and testing it on other computers, namely my colleague's. We're both working on the same network and have similar permissions for our accounts, but for some reason the application will launch on my account but not his.

We've tried using the same computer and just changing accounts, but that won't work either; he still isn't able to launch the published application.

I receive the standard "[x] has encountered a problem and needs to close. We are sorry for the inconvenience." message.

What is baffling me is that we've tried previous versions on his computer and they worked just fine. I can't think of any changes that I've made that would suddenly stop the application from running.

A few extra pieces of information: the application has a splashscreen, which displays for a few seconds before the error message crops up. In this time, the program is supposed to check if certain files and directories exist and, if not, create them. It also changes file attributes. These files exist in a directory we are both able to access and both have permissions to change. It also changes and sets some variables within the program itself, but I don't see that being an issue. It is able to catch exceptions of type IOException and InvalidOperationException (which was being thrown when a computer didn't have access to the intranet).

View 4 Replies

Winforms - Launch External Application Using Hot Key?

Mar 7, 2011

I have a windows program which is launched after pressing certain key combination (if its already running). Now i want to do this triggering through vb.net code? How can it be done?

View 3 Replies

Check The Server DateTime When The Application Launch?

Feb 10, 2011

how to check the server DateTime when the application launch. i want to make sure the user PC has the same DateTime as server when the user use the application. Reason being is some user may tend to change their DateTime backward and it causes a major confusion when it update in the server database. Below is my code....Both of the code giving problem and does not compare the date time to my pc datetime... how to check the the server datetime is same with the pc server time....

Public Sub GetServerDateTime()
Dim WMIScope As Management.ManagementScope
Dim WMIConnectionOptions As New Management.ConnectionOptions

[Code].....

View 1 Replies

Launch A Winform Application From A Windows Service?

Aug 26, 2010

I run the app under current logged in user from the service.To give you background, I have a VB.NET Windows service whose sole functionality is to run a Winform App at a specified time. Apart from that it also sets a system wakeup timer so that the system can be woken up at the specified time, if it goes into standby/sleep, to run the app. This service has to cater to XP/Vista/Win7 desktops on our network. This service won't run on servers and laptops.

The Winform App shows a UI for the user to provide some inputs. If the user does not provide the input within 15 minutes, then it defaults the value and then goes into system tray icon. The user can click on the icon and change the values later (within in a specified time frame and that too only twice).

There is absolutely no interaction between the service and the winform app apart from the service starting the app. It also monitors if the app has been killed by the user/crashed. If it has been killed/crashed, then a new instance is run after 30 mins from previous run.

If there is no user logged on, then also I want the app to be run at the specified time. As I said before, the app has a default timer. So if some user has just logged off from the system, then defaults would be set by the winform app.Now coming to why I am stuck with this design - I cannot use TaskScheduler because it has been disabled on all machines and security team is not willing to change it. TaskScheduler had the option to wakeup the machine from sleep and other things. So basically I ended up creating a service which is acting like task scheduler.

Currently when I run the app.exe via process.start() within the service, its running under SYSTEM account as the service is also running under LOCAL SYSTEM. So basically I am not getting any UI. Is there anyway to run it under the current logged in user? I am not worried about multiple user login as we wont be running it on servers and switch user is not enabled on our desktops. Even if somebody has done a remote login via mstsc, then also I need the run the app and show the UI to the user.

View 1 Replies

Launch An Application And Make This Dont Get The Focus?

Mar 19, 2011

I have developed an application which launch an external executable. I want to be able that if I am using another one, like notepad, I dont loose the focus to the one called by my application. I have test it changing the startinfo.windows style ( http://msdn.microsoft.com/en-us/libr...ndowstyle.aspx ) from Normal, minimized and hidden.Every one I have used make notepad loose the focus to the new launched application. Is it there any way to launch an application and make this dont get the focus, in order I can continue working in other app without problems?

View 7 Replies

Launch Program With Arguments Passed From Another Application

Feb 8, 2010

Gentlemen, I have an application made by a Vendor that sends a set of arguments to an application I am working on. I am unsure how to "launch" my application with these arguments. The vendor's app is a service that runs and launches my application when necessary. I'm assuming i need to modify the main form's constructor, but not sure.

View 2 Replies

VS 2008 Launch External Application In Second Monitor

May 3, 2009

I know how to run forms in second monitor, but I dont know how can I lauch and external exe program in second monitor. How can I do this?

View 9 Replies

Way To Force An Application To Launch In Secondary Screen?

Apr 12, 2007

What I'm trying to do is to launch Powerpoint Wiever 2003 in my secondary screen.I can get a form to launch in the 2nd screen but any programs I launch from that form stary screen.[code]

View 5 Replies







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