Run Application While Computer Is In The Log Off Mode?
Nov 10, 2011How can i put a application running while computer is in the log off mode?
View 1 RepliesHow can i put a application running while computer is in the log off mode?
View 1 Repliesi am using visual studio 2005 on win 7 with office 2007. i have developed win application. i am using microsoft activex spreadsheet component in my program. so it automatically creates reference to AxInterop.OWC11.dll When i run program in debug mode (open program and click RUN in toolbar it works) but if i run directly .exe (go to bin elease doubleclick .exe) it give error at loading point of that component. It says "Attempted to read or write protected memory. This is often an indication that other memory has been corrupted." An unhandled exception occurrs.
[Code]...
Is it possible to reload a form of the running application from one computer when I executed a function from my other computer with the same application? co'z I want to see the changes of data on my datagrid view?
View 2 RepliesI have a program where I want to stop the "www" service at night to keep users out of a website while some night jobs are running.
I know how to stop and start the service from VB.Net but I need to put the computer in maintenance mode before stopping the service to prevent work tickets from being automatically generated.
Is there a way to put a computer in maintenance mode from VB.Net? And also to take it out of maintenance mode?
Is possible to run code while computer is in log off mode? How can i do this?
View 1 RepliesWhat is the real mode , protected mode , supervisor mode and the hypervisor mode ?
View 1 RepliesI'm trying to make an alarm clock. When the computer is in sleep mode, when the alarm is triggered i want the computer to wake up and play the alarm.
View 2 RepliesI am developing a computer application designed to monitor the network and CPU statistics on a computer remotely. The monitored computer would have my program installed and the monitoring computer would display, in a form, the information being sent from the remote client.The application does not send any information regarding packets, user names, passwords, etc. It is solely meant for monitoring CPU performance and Network resources remotely.
What would be the best method to send this information over to my host machine?I am programing in Visual Studio 2008 on windows XP. The client machine is also XP. I know this sounds a little shady, but it is required for my little business (http://www.iquorum.net) to monitor what and when something happens on our machines when I and my employees are away.
I have to create an online application which i can apply it on every employee's computer in my company and i have create the application on visual basic 2008 and SQL 2005 using windows application and database. The problem is i do not understand how am i going to run the application on every employee's conputer. Because i have create the application on my computer, must i install SQL on every employee's computer? or any other software i have to used.
View 8 RepliesI have no idea why when I compile and run my application in x64 mode or anycpu my application crashes some time. some times it returns : Unhandled Exception
Attempted to read or write protected memory. This is often an indication that other memory is corrupt. and some times just says x has stopped working w/o details, any one knows anything about it ?
I want to create an application that can run in both GUI and CLI mode. Basically what I want is when a user double clicks an EXE they get the GUI but when they run it through a command prompt they can supply CLI arguments and run entirely in the command prompt. I know that VBScript has the difference between Wscript and Cscript, but I don't know how to do that in VB.
View 8 RepliesI am developing an application in vb.net2008,Sql Server 2005But there is a problem while running my application on Customer Machine. It throws some security related issues Access Denied or so on....And also my application does not run in Windows Vista.I am changing in my app.manifest file like this ....
[Code].....
In my application (VB2008),I am using MS flex grid and it was workingfine on 32bit mode. When I tried to compile the same code base in 64 bit ,it crashes the application.
View 2 RepliesMy intentions are to add command line switching. I am trying to see if i could run my application in varoius ways i.e.
App.exe -S - Start the application in XX Mode
app.exe -T30 - Start application with 30 second delay
and that kinda switching.
How can I create a VB application in VS2008 without requiring the application be run on a computer with a .NET framework in place?
View 4 RepliesI have designed and published my small created app with WINDOWS FORMS using VB 2010 EXP on Windows 7. I can only install the app on the machine that I used to develop the app.I want to install the app on another computer but I cannot. I usually have error reports.
Example:Unable to install or run this application. This application requires Microsoft Common Language Runtime 4.0.3 to be installed on your computer.
what can I do to be able to install the app on a different computer which does not have .Net and does not have visual basic 2010 installed.
Iam using GetKeyboardState API in my application for getting keyboard state . it was working fine for win32 applicati9on. When I moved to 64 bit application gets crahes without popping any exception message.my sample code is as given below:
Private Declare Sub keybd_event Lib "user32" (ByVal bVk As Byte, ByVal bScan As Byte, ByVal dwFlags As Integer, ByVal dwExtraInfo As Integer)
Private Declare Function GetKeyboardState Lib "user32" (ByRef pbKeyState As Byte) As Integer
[code].....
I keep receiving an "Access violation at address xxxxxx. Write of address xxxxxx." error when i close my MDI form (and hence my application).However this error only occurs after i have created a new child form.
I have stepped through the code and found that the exception is being thrown in the Settings.Designer file (Namespace My module). This is the chunk of code that throws the error[code]...
Is anyone aware of a way that I can set application (or user) level settings in a .Net application that are conditional on the applications current development mode? IE: Debug/Release To be more specific, I have a url reference to my webservices held in my application settings. During release mode I would like those settings to point to [URL] during debug mode I would love those settings to be [URL]
View 2 RepliesI am observing some errors, resulting in invisible application and disappeared icon. I am starting it from HKCUSoftwareMicrosoftWindowsCurrentVersionRun.[code]...
View 1 RepliesI'm wondering if there is any code that I could use in VB.net so it can determine the computer's startup mode (such as safe mode or safe mode with networking).
View 1 RepliesI have one project created with VB 6.0. Step to reproduced this issue,
1. Start Internet explorer and add the site "[url]" to trusted site. now set protected mode check box to Off for the trusted site zone.
2. Open the Visual Basic 6.0 and created standard Exe project.
3. From Tools -> references add "Microsoft Internet Controls".
4. Copy and Paste below code. [Code]
I work for a shop that maintains a fairly new app. The app still has its fair share of bugs, with numerous tickets coming in daily. The error information we're given with those tickets is not as useful as it might be because the application was compiled in Release mode, which I read is smaller and faster (makes sense).
Are there any ramifications to deploying a .NET application to production that was compiled in Debug mode? I would expect it would be a bit slower, but I've read the difference is nominal. This would assure us that when we get errors on tickets we have line number associated with those errors and this, of course, makes debugging much easier. major red flags that would prevent you from doing this? I'm tasked with researching the possibility.
This is applicable to C# and VB.Net. I am writing a console application, but one aspect of it I want to make representable in a GUI (that being downloads running, with progress bars). is it possible to write a console mode application that can also have a form in it that can be called from code inside the console component?
View 3 RepliesI have a several C# console applications that basically parse tons of data in memory (LINQ) and output the results to a text file. Now, forget about the writing to the text file for a minute because this is not where the problem is occurring.
When I run the application in debug mode, I will never get it to utilize more than 50% of cpu usage. It will be parsing/massaging hundreds of thousands of records, but only go X fast and utilize 50% of the cpu AT MOST (as viewed in the Task Manager).
I would really like to use 100% of the CPU to make the processing go faster. Does anybody have any insight? I am running Windows XP Professional with Service Pack 3. I have Visual Studio 2008 Professional with Service Pack 1 installed. I have manually set the affinity of the process in Task Manager to a single core on the dual CPU. Sometimes I can catch it utilizing 51% or 52% of the CPU.
I am writing a web application using .net 3.5 and vs 2008 which allows people to add data to a db via a control panel front end.Objective: Before committing one of the fields to the db i would like the user to answer Yes, No or Cancel to confirm their action. I have tried to implement this with a modal dialog box or message box but the following error appears: Server Error in '/' Application.
View 10 Replieshow to close application root folder or sub root folder at the time when application is in running mode?
View 7 RepliesI made an application using VB in one computer.Then I coppied the application which is in the bin folder of the project. I sent it to a different computer(this computer doesn't have Visual Studio installed but both computers have Windows XP). And now I have an error when I'm trying to open it from the second computer.
View 7 RepliesHas this ever happened to anyone? It has happened to me and one of my customers in the past but I have no idea how he diagnosed it and it is happening with another one of my clients now. The application runs, but the HTTP requests do not. The application works 100% perfect on my own computer but not the customers. He has both the 1.1 and the 3.5 framework installed, and uses Vista (same as me). Can anyone shed some light on this situation because this is a huge huge huge problem that I would rather not have to worry about in the future with other clients.
View 6 RepliesI have an vb.net application that I want to install on other Computer. The backEnd is SQL server. so the error is on other computer (Provider :: SQL NETWORK INTERFACE ERROR 26 -error LOCATING SERVER, INSTANCE SPECIFIED)
View 2 Replies