[2008] MDI Parent In Front Of Windows Task Bar?
Mar 12, 2009
My MDI parent form sizes itself so that the activity field (with the start button etc) doesnt show. This happens every now and then and I cant figure out why.
Of course I want to see the activity field,
View 4 Replies
ADVERTISEMENT
Jul 16, 2009
I have an import program which I run manually everyday. I want to automate it but i'm not sure whether to make it a windows service or add it as a scheduled task. It needs to run at 11:00 and again at 16:00. Please advise
View 2 Replies
Jul 17, 2010
I need code to disable start button in task bar. I need code to disable "windows key" in keyboard to lock start button Selection. I need code in vb.net?
View 2 Replies
Sep 24, 2009
I've written a small program that monitors the customer field in Quickbooks and query's a database to determine if there are any important notes for the selected customer. This works fine however, I either need the messagebox or a form to come to the front of all open windows on the system to inform the user that the selected customer needs to be reviewed.
How can I ensure that a form (or messages box) that opens in my program comes to the front of any and all application windows that are open?
View 4 Replies
May 11, 2009
I am Developing one designing tool..in this i have to implement Bring to front and sent to back properties.
View 3 Replies
Feb 19, 2011
I want to write a very simple application, containing a pop-up menu when user click on it, that will appear in windows task bar, exactly like language bar, this is the only need. it does not contain any more functionality at the time being. Does anybody know where to start or do you have any sample code for it.
View 5 Replies
Feb 24, 2010
How to create a task in windows xp pro 2002, Taking input as Date, Time, perform every after time(Hours,daily) and Username And Password.
I am using vs 2003 and 1.1 frmework. would u like to reply with some working code
View 12 Replies
Nov 11, 2010
I've just completed my first multi-threaded task under windows. Historically I am a VMS Engineer. You could multithread in drivers in VMS but VMS never had formalized threads. Which means it never had applications threads. Threads will become increasing important in the future. I thought this maybe a good time to discuss them. Not having access to sources hurts in terms of the amount of depth one can achieve in Windows. Some of the topics for this thread might be...compute resource regulation, how to do multi-threading and of course things to watch out for.
View 1 Replies
Jul 27, 2009
I want to hide my application process in task manager using C# how it possible.
my code is
[/b][code]
Imports System.Runtime.InteropServices
Imports System.Diagnostics
[Code]....
But when i click the button to hide the process it gives an[b] IndexOutOfRange Exception for the call
View 4 Replies
Mar 7, 2012
How to hide your program from the Task Manager in windows 7?Did you have any answer .how to hide exe form the taskmanager in windows 7?
View 2 Replies
Sep 12, 2008
Has anyone here ever programmatically created a scheduled task in either VB or C# for Windows XP?
View 3 Replies
Jul 10, 2011
[Code]...
Code above is working on windows XP, but using this code in some windows 7 OS, returns an error. Is there a way of force edit this in windows 7?
View 1 Replies
Feb 1, 2012
At my school people use the keyboard shortcut (CTRL+Shift+ESC) to open Task Manager. We are not allowed to use it so we get a message box saying that we do not have permission to do that. People hold down the buttons, so that a long line of hundreds of popups open. What code do i need to close all of the popups when a button is pressed?
View 13 Replies
Nov 19, 2009
I'm upgrading from Windows XP 32-bit to Windows 7 64-bit, and I'm using VB in VS 2008. Under XP, I used the Task Scheduler to run a program at 3pm every weekday, and it ran fine. Now in W7, when the Task Scheduler runs the programs, it encounters an exception when it gets to the code MyForm.ShowDialog(). The error is:
System.InvalidOperationException was unhandled
Message="Showing a modal dialog box or form when the application is not running in UserInteractive mode is not a valid operation. Specify the ServiceNotification or DefaultDesktopOnly style to display a notification from a service application."
Source="System.Windows.Forms"
[code].....
When I run the program from a shortcut with the same parameters as in the Task Scheduler (i.e. the shortcut runs the .exe file with some paramters after it), it runs fine, so I'm guessing there is some setting in the Windows 7 Task Scheduler I need to set, but I can't find it. I've tried checking "Run with highest privledges" (and unchecking it), but that didn't help. I have tried it with the "Hidden" box unchecked and checked and that didn't help. I've also tried it with "Configure for" set either way (Windows 7 or Vista). So how do I get rid of this error?
View 6 Replies
Jun 28, 2011
I have set up several tasks on a new installation of Windows 7 and they are working as expected.But when I attempted to run a batch file it fails. It works fine from the command line and I can run it from the scheduler on Windows XP manually (although not on the timer yet).What is about batch files that I need to know to make them run from the Task Scheduler?
View 3 Replies
Feb 25, 2010
I need to have a windows service that capable of monitoring constantly whether my application is running or not. If not, the windows service will RUN it for me.
View 4 Replies
Jan 26, 2010
I only know how to add your program to windows task scheduler to schedule automatic execution but what if you wanted to have a particular thread run on a weekly schedule. Someone mentioned windows powershell for all these types of scripting; but it seems too hard to learn on short notice.
View 4 Replies
May 4, 2009
Just finishing off an update to an application written in VB.NET that used to run fine under CE.NET 4.2. Deployment platform is now Windows Mobile 6.1. The application runs in full screen, however whenever a new form is opened, the task bar, i.e. the bar with the start button comes to the fore and then the new form takes over. This is particularly annoying as I have a form that has many sub forms which are 128,128 and still the task bar flashes and obscures part of the user input screen
View 2 Replies
Jan 7, 2011
I'm using VB 2010 and simply want to have a button on the form that says Minimize.I want the form to minimize to the task bar or the notification section .I've looked at other ideas, but the code is for prior versions of VB (2003 and 2005) and some for C #Could you please email me some sample code to handle this?
View 4 Replies
Oct 3, 2011
how can i stop ctrl alt delete f4 windows task manager in my application
View 6 Replies
Jul 22, 2011
I know this code will give a list of processes
ListBox1.Items.Clear()
Dim ProcessList As System.Diagnostics.Process()
[code].....
View 3 Replies
Apr 9, 2010
I have the requirement to create an application that has multiple front ends developed using Windows Forms, WPF, ASP and Compact Framework Mobile Forms.I would like to be able to create a series of obejct representing the business logic and have this logic accessible from the various front ends available. My first thought was to use remoting as I'd like to be able to pass the business objects back and forth between client and server but the compact framework doesn't support remoting and also transferring a full framework business object to a compact framework business object doesn't seem possible.My next thought was to use web services but again the passing of business objects seems to be very hard to accomplish. Without doing this I would have to create individual web methods for each business operation.
Finally my next option is to use sockets and write the whole client/server logic within some classes and expose them to the UI/Business layer. My only problem with this is it is not scaleable should the number of clients increase dramatically whereas using remoting or web services I can host the solution via ASP.Net.Does anybody have an ideas on the best way forward for this or even have any input on how they would write an application that required a windows form, wpf, asp website and mobile device GUI all of which want to use the same business logic?
View 3 Replies
Aug 27, 2010
I have an application of which only 1 instance can run at the same time. Thus in the StartUp event I check for this to be true, and if not close the new instance started. At the same time though I'd like the application to switch automatically to the instance already running. By finding the processid of that instance and using appactivate this is working properly, except when the instance already running is minimized. It then switches to it, but since the instance is minimized, its ide will not show.
I need to use something like sendmessage, but am not able to find how.
-Since I already have the processid, could someone tell me how to use code to maximize and bring to the front the ide of another currenly minimized application?
View 1 Replies
Nov 29, 2010
I want to do a check to see if a item is in front if not then do MyItem.BringToFront else MyItem.SendToBack
View 1 Replies
Nov 5, 2009
I've been working on a way to check a user's hardware for performance reasons and have been using WMI to find almost all the information I need. One thing absent is the FSB of the processor (it's not in the Win32_Processor Class as far as I can tell).
Does anyone know of a way I could go about to find this using an API, Memcopy or something?
View 2 Replies
Mar 16, 2010
When another window, I have been using Calculator, is in front of my app, and it is moved around, it leaves ghost images until I get the picturebox refreshed. I assume that it has to do with the number of items that I am drawing, which can get extremely high. Here is PictureBox1.Paint handler.
[Code]...
View 3 Replies
Sep 3, 2009
have been developing an application for quite some time now. I have decided to create an mdi parent form to hold all the windows I have done so far. Is there an easy way to implement the mdi parent/ child associations?
View 12 Replies
May 16, 2009
How do I make it so that when a user brings an explorer folder on top of my app - so that they can drag and drop a file into a grid control
[edit] - it's actually a listview that they drag into - but that shouldn't matter [/edit]
That when they drop the file my app fires off a AddFile.ShowDialog pop-up form
I want that AddFile form to be in front of the explorer window
CODE:
View 6 Replies
May 11, 2009
I know there is an option when you right click a control you can bring it infront of another control and stuff, but....
When ever I draw a line in my vb.net script using
myGraphics.DrawLine(pen:=myPen, x1:=1, y1:=1, x2:=e.X, y2:=e.Y)
I want to know how I can make this line appear over a Panel, Label, and other stuff... like Bring to Front in a way.
View 4 Replies
Jun 17, 2009
I know there is an option when you right click a control you can bring it infront of another control and stuff, but....hen ever I draw a line in my vb.net script usingmyGraphics.DrawLine(pen:=myPen, x1:=1, y1:=1, x2:=e.X, y2:=e.Y) want to know how I can make this line appear over a Panel, Label, and other stuff..
View 12 Replies