VS 2010 - Application Visible On Screen All Time?

Jan 7, 2012

How to do app active on screen all time?

View 2 Replies


ADVERTISEMENT

VS 2010 - Border Visible Only First Time On Form

Nov 7, 2010

I create an app, with it when I click a button it opens a new form on a second monitor.
This works perfectly, but every first time the app start and I open the second form, on my primary screen (right side) I see the border of the second form. When I click the button again, the form is hidden, and when I click it again, it appears again but then the border is gone. What I want is that the border is gone the first time and never appears.

Here is the code I have on the button_click event:
Private Sub RadButton3_click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadButton3.click
If screen.AllScreens.Length > 1 Then
If Me.RadButton3.ButtonElement.ButtonFillElement.BackColor = Color.Orange Then
[Code] .....

View 2 Replies

VS 2010 Splash Screen Time?

Dec 30, 2010

How to make the splash screen to have a time before to open Form1?

View 1 Replies

Create An Application That Will Allow To Monitoring In Real-time The Screen On A Remote Computer?

Feb 18, 2009

I would to create an application that will allow me to monitoring in real-time the screen on a remote computer, I dont want to keylog, or control mouse,ot keyboard, just watch what they do at real-time.

View 6 Replies

VS 2010 - Extended Listview For My Application - After Scrolling Up And Down Some Items Get Visible Again

Nov 15, 2010

I've made an extended listview for my application but do get some strange behaviour when i scroll down and select an item.

This is the

Imports System.Windows.Forms

Public Class iListView
Inherits System.Windows.Forms.ListView

[CODE]...

The strange thing is that after scrolling up and down some items get visible again.

View 5 Replies

Forms :: Border Visible First Time - Second Time Not

Nov 7, 2010

I create an app, with it when I click a button it opens a new form on a second monitor.
This works perfectly, but every first time the app start and I open the second form, on my primary screen (right side) I see the border of the second form. When I click the button again, the form is hidden, and when I click it again, it appears again but then the border is gone.

[Code]....

View 1 Replies

Taking A Snapshot Of A Form Which Is NOT Visible On Screen?

Jun 11, 2009

I need to take a snapshot of a form which is not necessarily visible on the screen. I need to save that into a Bitmap object. I cannot use Graphics.CopyFromScreen() because if there was anything obstructing the form, it will appear in the snapshot taken.

View 6 Replies

VS 2008 - How To Check If Image Visible On Screen

May 16, 2012

I am trying to code something that will check if a png image is visible on your screen. So lets say the image is a purple square with yellow circles in it (random example). It will keep checking to see if the same purple square with yellow circles is on your screen. What I'm trying to say is, instead of checking for one pixel color, check to see if the actual image is on there (maybe multiple pixels?)

View 10 Replies

Detecting If Windows Login Screen Is Visible To User?

Apr 26, 2011

After running the following code (which locks the computer), what code must I be applying to see if the user has successfully logged into the computer and that "Lock Screen" I'd so called has disappeared?

Private Declare Function LockWorkStation Lib "user32.dll" () As Long
Private Function LockComputer()
LockWorkStation()
End Function

I will call "LockComputer", after that what do I do to see if the Lock screen so called by this function (after say 2 minutes) has disappeared or is still there asking for the password from the user.

View 2 Replies

Print A Windows Form Which Occupies More Than The Visible Screen And Contains Controls?

Jan 14, 2010

I need to print a windows form which contains radio buttons, checkboxes, and other controls.

Printform doesn't work - even with the scrollable option it only prints the visible screen.

The PrintDocument doesn't work, because I can't add controls to it.

I can't capture the screen image, because the form occupies more than the visible screen.

View 6 Replies

PrintForm Still Only Prints Visible Portion Of Screen With Scrollable Option

Jan 14, 2010

When I call PrintForm1.Print(Me, PowerPacks.Printing.PrintForm.PrintOption.Scrollable)Only the visible portion of the screen is printed.What else do I need to dobill

View 5 Replies

VS 2010 Timer Interfers With Full Screen Application (Like VLC)?

Mar 21, 2012

I have two timers in my application. One that updates some text label every 100 ms, and another one which makes the text scroll to the left. Both timers are working fine, however,if Timer2 is enabled i get some problems while playing fullscreen video in VLC. Usually the mouse dissapears when running full screen and leaving the mouse, but if my program is running (and therefore Timer2 is enabled) the mouse wont dissapear. If i go disable Timer2 theres no problems.. I just dont understand why it is only Timer2 that does this and why timer one doesn't affect VLC? Timer1 and Timer2's code is below

vb.net
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick

[code]......

View 8 Replies

Make Form Visible For The First Time From Another Form (form.visible = True)

Aug 18, 2009

Below is the exception code info. when I try to make form visible for the first time from another form then I get an exception code. something like 'a required variable not set'

Quote:

CODE:

View 7 Replies

List Box Not Visible At Run Time?

Dec 15, 2011

Every time I run my code my list city still visible at run time how do i make not to visible when I run my vb code. lstCity.Visible = False

View 1 Replies

VS 2010 Time Out Application

Mar 20, 2011

I have tried searching for the anwser however all I picked up were questions about time out errors. In my program I would like to implement a feature that say after 5 minutes of inactivity the program closes?

View 4 Replies

VS 2010 Auto Update Application Via A File Location Path & Pausing Splash Screen?

Jan 8, 2011

1. Just looking for some general help on how to auto update my application via a file location path (e.g. I have a HTML file containing the current file version and the .exe file to download)

What I need is to read in the HTML file version - DONE Check file version vs HTML file stream input - DONE Replace current .exe file with new .exe file - HAVING ISSUES WITH THIS

I know I have to close the application and then replace the old exe file with the new exe file then restart the application but looking for the best/safest way this can be done

2. Basically what I want is during my Splash screen which runs for 5 seconds I want to check if a network drive is mapped.

if not, pause splash screen ask user for address of drive, map drive then un-pause splash screen and continue with load how do I check if a network drive is mapped? and how do I pause the splash screen?

View 2 Replies

Make Label1 Visible For A Specific Time?

Nov 26, 2011

I have a form which contains the following :

1. Textbox1
2. Button1
3. Label1

Label1.Text = "Updated Successfully"
Label1.Visible = False

Now what I want to do is, when I Enter something on Textbox1 and click Button1, Label1 should be visible and blinking.

Label1.Visible = True

But, when I type something on Textbox1 again (before even hitting Button1), Label1 should not be visible anymore and continues this way.Another way is to make Label1 visible for a specific time, say 5 seconds (blinking) and goes invisible. I prefer the first one though I would love to learn both?

View 2 Replies

[2005] Multi-Screen Application - Control Each Screen Separately?

Jun 23, 2009

im about to develop a small appliacation for a bet system, which needs 6 screens, each screen will be a touch screen for each client... the application will be running in one computer only just with 6 screens. my question is does anyone knows how to control each screen separately?. somethign that would allow me to output each forms in different screens would work fine.

View 2 Replies

Create An Overlay Screen On A Full Screen Application?

Feb 18, 2010

I am making a program that will put a black mask over an application (like a full screened game). This black mask will fade in and out, depending on certain criteria. Is there a way I can do that with VB? It's to help me dim my monitor without having to push anything.

View 3 Replies

Make An Application But That Isn't Visible In The Taskmanager -> Applications?

Nov 2, 2009

Is it possible to make an application, but that isn't visible in the taskmanager -> applications

View 39 Replies

IDE :: Make Application Stick To Screen Edge When Dragged Near Screen Edge?

Dec 7, 2011

i am developing one application for which i want it to stick to the edge of the screen when dragged near screen edge.

View 2 Replies

Application Data File Not Visible With Windows Explorer?

Jan 23, 2010

An application data file, created by my own VB program, is visible to read and save from that application, but is not visible from Windows Explorer or Notepad. The icon, visible from my VB program, shows a lock. How can I remove the lock and see the program with Windows Explorer. (I need to copy to a another computer to use in a workshop next week.)

View 2 Replies

Big Panel Visible And Not Visible Based On Selections Made By User

Jan 28, 2009

I've got a panel - that's in a group box. All of this - with lots of other textboxes on labels - is in another panel (the big panel).I make the big panel visible and not visible based on selections made by the user.This small panel - that's in the group box. I cannot seem to make it appear.Even if I leave it VISIBLE at design time - the objects in it will not appear.Is there some kind of nesting problem that I'm not aware of!

View 9 Replies

Making Menu Item Visible Or Not Visible In Master Page

Jan 25, 2011

I have five menu items that i have created as a user control and placed on the master page. Now i want one of the menu items to be visible only for particular user role and not visible for others. Here is what I did. Its not working though.

[Code]...

View 6 Replies

Visual Studio - Why Are Code-behind Files Not Visible In A .NET Web Application Project

Aug 17, 2011

I am trying to convert a VB.NET web site project to a web application project, yet the in web application project, my code-behind files are not visible unless I set the solution explorer "show all files" option. Why is this? What setting can I change so that my code behind files are always visible?

View 1 Replies

Time For Showing Splash Screen Is Not Enough?

Oct 29, 2005

I made this splash screen and since I just started working on my project, the app takes less than two seconds to load and the time for splash screen is not enough? I have tried to put System.Threading.Thread.Sleep(5000)but where? I put it in the code of the splash screen, then it waits 5 seconds before showing the splashscreen and I put it in the main program, then the splash screen is out THEN it waits 5 seconds after the splash screen is gone then it loads.

View 17 Replies

Jumping Between Forms - Making A Form Visible And Not Visible

Jul 17, 2009

I'm having an odd problem when making a form visible and not visible and it not continuing to function. Here is what I have happening. I have a main form (frmMain) that is an MDIParent. On this form I have a menu to open a second form (frmCalculate) and populate a listview from Items in the database.

As I click or select items in the listview on frmCalculate the tag is read and data is pulled based on the id stored in that tag and fills in various fields on the form. This works great. However, I also have a context menu attached to the listview that allows me to perform a "what if" scenerio on the items I am calculating. When I select this menu, I hide the frmCalculate and open the frmWhatIf form where I can mess around with values on the item I had hilighted in the listview on frmCalculate. Nothing is pulled from or written back to the database here, all the information is filled in from fields on frmCalculate. It just allows me to look at rising costs and how they will affect my margins.... anyway.

If I then close frmWhatIf, it brings my frmCalculate back by setting its visible propery to true (never closed frmCalculate, just hid it). At this point if I click an item in the listview I get an exception for a null reference. IF however I never hide frmCalculate, I can open and close frmWhatIF without ever having an issue. Why do I lose the functionality to select items just by hiding and unhiding the form? As a test I added two menus to the toolbar on frmMain one called hide and one called show. I then opened frmCalculate with original menu item to populate the listview and selected a few items to test that it was working and then using the hide menu I made the form invisible and the show button to bring it back. This yielded the same exception so without even opening frmWhatIf the problem still occurs.

View 3 Replies

C# - In A .NET Console App, Have A Line Of Text Stay Visible In The Console All The Time?

Jun 1, 2011

I was thinking of adding a simple bandwidth monitor to a console application and I was wondering if it would be possible to keep a line in the console window visible at all times. I could set something up manually to pass new console output into a method that would get the contents of the console, clear the console, add the bandwidth data on the first row, then rewrite each line of previous information back to the console, etc.. but that seems like a really hacky way to go about it, and I'd be limited to the amount of rows visible at once in the console window (no scrolling).

STATS: Downloaded: 2599b, Uploaded: 754b <- this always stays at the top
constantly changing text
constantly changing text
constantly changing text

[code]....

View 3 Replies

VS 2010 : Read A Textbox That Is Not Visible?

Oct 7, 2011

How can I read a textbox.text value when the textbox is not visible. This is a textbox that has been pulled on the form from a dataset. When it is visible it is fine. When I make the textbox.visible = False it no longer reads that value.

View 15 Replies

VS 2010 : Visible Column In DatagridView?

Apr 8, 2011

I do not know what this term in the computer. but I try to send pictures, might be able to know what I mean.I want to eliminate the columns that I marked in the picture.how? what can be set for width 0 ?

View 3 Replies







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