Console Application Versus GUI Applications?
Aug 9, 2010
I have a few questions regarding the GUI applications.I am aware that Console applications are non-event based programs which do not have the pretty GUI interface.Having done C/C++ on *nix with a main() as the entry point and in Windows 3.1 with WinMain as the entry point into the application, I am trying to figure out the entry point into the VB application.
View 4 Replies
ADVERTISEMENT
Nov 24, 2010
We currently have +- 20 different console application developed in VS2008 and running at different scheduled intervals, all controlled by Windows schedular. The problem we have come accross is that it is becoming increasingly difficult to manage and maintain these console apps. In some instances a console app will just fail or never run to start with and this creates a lot of problems. In many cases one console app is dependant on another and if 1st one fails well...you see where this is going.
I am looking for a new solution that will help us to trace, debug and manage these console apps better. We are preferably looking for a gui front end, maybe windows app where we can set the intervals for them to sun and view some error reports if they did not run.We are port all the code for the console apps to which ever new appliocation we develop.
View 4 Replies
Jan 21, 2011
Regarding a console application and VB forum program - In searching XML parsing examples I find several using Console.Write and Console.Write - To show my inexperience I (out of habit going through a couple preliminary examples) I created a new VB project with a blank form - I then copied and pasted the XML example using the console commands Errors - I just found the "create console application"What is the difference between a console application and the project using a blank form? Can the console commands like Console.Write work with a VB form project?If so (#2)What is the advantage in creating a console application - why not just start with a blank form and go?
View 1 Replies
Jul 15, 2011
how can I control and use already compiled console applications with VB.Net? I would like to be able to pass parameters to the console app, as well as be able to hide and close command prompt widow (as ordinary users would probably get scared/confused from seeing it). Perhaps it is possible to integrate the command application into my VB.Net executable?
View 1 Replies
Nov 25, 2009
I want add hotkey functions in my console applications.[code]How I can add two or more keys as shortcut?
View 2 Replies
Jul 13, 2010
i am trying to get the current mouse coordinates on the console applications that the mouse is moving on. is there a way to find this values. Than possibly how can we turn this values to row col values related to the console window
View 1 Replies
Aug 23, 2009
okay now i made 2 seperated applications a console applicaton that runs the server and a form application that runs the client! now if i want to make a 3rd windows form application with 2 bottons one to start the server "witch is a console appliaction"! and 1 botton to start the server "witch is a windows form appilaction" how do i do that? i have been driving my self insane trying to do this!
View 2 Replies
Apr 26, 2012
In the GUI world, OpenFileDialog provides one stop shopping for the user to select the drive, the folder and then the file.Has anyone seen a set of code to implement this functionality (although obviously one value at at time /select drive/selectfolder/select file) in a console application?
View 1 Replies
Sep 29, 2009
VB.net newbie question: I am writing a number of console applications, all of which need to use a set of common functions and subroutines that are compiled directly into the applications, not into a separate DLL.
I assume that each separate console application needs to be a separate project, and that the commonly used functions and subroutines need to be in a separate module, but how can such a module be shared between multiple projects so that only one copy of the shared module and its code is required, without creating a separate DLL?
View 2 Replies
May 19, 2009
I am developing an application which launch an external windows app, ei called APL.exe Also, this APL.exe launch two console utils, ie. named CON1.exe and CON2.exe I would like to know if is there any way, after APL.exe has died, of killing CON1.exe and CON2.exe, because there is a small possibility that they will not died completly after APL.exe has exited.Also there is another requirement. My final app version could be executed twice in the same machine, so there could be two instances of CON1.exe and CON2.exe, and because this I need a way to kill them not by process name, but knowing which of them has been launched by my current application instance.
View 5 Replies
Nov 23, 2011
I would like to make a multi-socket TCP server (to accept multiple clients at the same time).I'm working with Visual Studio 2005 Express, maybe that's why files on CodeBank don't work..I found on the web an example about MultiThreaded Server Socket programming, but this is done for "Console application" in this way:
[Code]...
View 7 Replies
Jun 1, 2009
I have a console application I'm using to run scheduled jobs through windows scheduler. All the communication to/from the application is in email, event logging, database logs. Is there any way I can suppress the console window from coming up?
View 5 Replies
Aug 8, 2010
I am currently working on an application, where I am using a console application, that will set up the application prior to the main form is run. This is no problem I've got that all working perfectly, the only problem I have is that the console is showing while the application is running, I was wondering whether anyone knows any way in which I would be able to hide the console before it gets shown to the user.
View 12 Replies
Dec 15, 2011
How do I get the console from closing immediatley upon opening in a Console Application program? I have all of the code written but when I run the program it pops up the console window and then immediatley exits so I am unable to read what is in the window to see if my program is operating correctly. This is the first time I've ever used a console window so I don't know where in the code I would need to put "whatever it is" I might need to put to keep the window open until closed by the user.
View 7 Replies
Aug 23, 2009
It sounds confusing but it's not really. What I need is basically a way to emulate the console style text, without using a console. What I'm really doing is trying to do a matrix effect on my form background, by drawing symbols and moving them, alternating their colors (see this video for what I mean).
Is there a way to do this effectively with a timer and a draw event, with the timer calling the draw event and changing the intervals?
View 3 Replies
Dec 8, 2010
Can anyone tell me what the technical difference is between Application.Exit() and End?Why would you choose to use one over the other, for example?
View 5 Replies
Jan 16, 2009
just want to know what is the difference between these date values?Once some one told me that its difference is server date and client date but not sure which one he meant.Below is 3 type of date currently I'm using and don't know what is the difference between them.
DateTime.Now is from System.DateTime.Now
Now is from Microsoft.VisualBasic.DateAndTime
Today.date is also from System.DateTime
View 4 Replies
May 8, 2009
My company is in the process of analyzing how to convert and upgrade an application that was written in Microsoft Office Access 2003. Recently we purchased Microsoft Visual Studio 2005.
The first step we'll probably take will be to convert the Access data to Microsoft SQL. Is there a recommended way of doing that? What should be done with the VBA code?
The second step we're not sure about. We're wondering in we should develop all new software in VB or that we should still use VBA, if possible, after the data has been converted to SQL.
View 2 Replies
Jun 17, 2011
what are the benefits of publishing an application versus just grabbing and using the .exe file from the build?
View 1 Replies
Jul 4, 2011
I have a situation with an application of mine where I noticed I get a different result when the application is installed in comparison to it running in Visual Studio. If the application is installed a certain aberration pops up in this computer graphics application at a certain point in one of the screens but if I run the same group of settings or you could say the same "screen" running the application from Visual Studio I don't see the aberration ever happen. I tried deleting the bin and obj folders and then rebuilding before creating an installation and it doesn't change anything and whether I use InstallShield or create an installation using ClickOnce I still see the same issue. I have Enable application framework unchecked but found it makes no difference checked or unchecked
View 9 Replies
Sep 14, 2010
I am trying to use the System.Diagnostics.Process class.I have the following Windows Forms application. It consists of 1 Button and 1 TextBox. The only code is for the button click event as follows.
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim myProcess As New Process()
[code]....
View 2 Replies
Feb 7, 2010
I have a fully functional multi-threaded VB2008 console application that I need to convert to a windows forms application. I am doing this to add additional functionality at a later time. How would I go about doing this?
View 9 Replies
Dec 22, 2011
modify console application below to window form application for me.I've tried by myself for million times, but i couldn't console application.rar?
View 2 Replies
Apr 13, 2012
I have a console application code below. I am trying to convert this to a windows based form application but I don't know where to start. This code asks you to input a website and then it gives you the IP address for that particular website the user enters. All the code works fine but I want this in a windows form application.
using System;
using System.Net;
using System.Net.Sockets;
class GTest
[code]....
View 11 Replies
Aug 11, 2009
Okay so basically I want to see if I can make an windows application or just a console application in VB.NET that will verify an MD5 Checksum. I have no idea how to start this out, but I have the ideas of what I'd like to make it.
[Code]...
View 14 Replies
Sep 7, 2009
Is there a way to convert a windows form application into a console application in visual basic?
View 2 Replies
Sep 24, 2010
detect whether the current application is a console or a winforms application.The reason that I want to do this is that I am developing a library with a global error handler in it and I need to know what type of application it is in order to be able to subscribe to the appropriate exception event.Obviously I could get the user to pass in a parameter specifying what type of application it is, but I would rather deal with that automatically so its all encapsulated from the user of the class.
View 1 Replies
Mar 16, 2012
I have created an application that will run several other Engineering applications from within it.
I have my main form which will have a button on it for each application that has to be run. All the other projects are complete and have their respective '.EXE' files, which I have added to the main project.
I have coded one of the buttons to start an application, this is as follows;
Private Sub btnCoordsCalc_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnCoordsCalc.Click
Process.Start(My.Computer.FileSystem.CurrentDirectory & "Hole_Coordinates_Calculator.exe")
End Sub
This method works OK and does start the application. So my question is; Is this the correct way to do it, or should I import the whole project into my main project?
View 1 Replies
Apr 28, 2011
I have several different applicaitons that were originally created with Visual Studio 2005 / .net framework 2.0 / Windows XP that got common settings from an App.Config file on a network share. Each of these applications has an app.config file with the following:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings file="\fileServerconfigcommon.app.config" >
</appSettings>
</configuration>
I am now trying to make these applications work in a Windows 7 / .net framework 3.5 / Visual Studio 2008 environment and can't seem to access the settings in \fileServerconfigcommon.app.config in the same way the old environment allowed. I'm wondering if there is some new way to do this. I need to have the applications read their settings from a common file on the network share (having the applications take their own copy is not accpetable).
View 5 Replies
Nov 2, 2009
Is it possible to make an application, but that isn't visible in the taskmanager -> applications
View 39 Replies