VS 2008 Staying On Top Of Desktop

Jun 29, 2010

Is there a way to keep my application on top of the windows desktop, but other aplications can run on top of it?Like Windows Vista/Windows7 widgets.

View 13 Replies


ADVERTISEMENT

VS 2008 - ListView Selected Row Not Staying Shown

Dec 23, 2010

I have a listview control setup with full row select. When I select a row and then tab to the next control, the selected row is no longer selected visually. Is there any way to keep it marked so the use knows which row they selected even when the focus is on another control?

View 2 Replies

VS 2008 - Use "Go To Desktop" Function That Goes Directly To Desktop Without Minimizing Any Window

May 17, 2009

I'm working on one of my applications and I'm trying to find a way to use the "Go To Desktop" function that goes directly to the desktop without minimizing any window (This can be achieved by clicking on the Win + D buttons or on the desktop icon in the quick launch toolbar), but how can I activate it using vb? I thought about sending keys but I guess there is more offical ways to do it.

View 10 Replies

Cached Objects Staying In Memory?

Mar 24, 2010

I have a asp.net web forms app that uses System.Web.Caching.Cache to cache xml data from a number of web services for 2 hours.

webCacheObj.Remove(dataCacheKey)
webCacheObj.Insert(dataCacheKey, dataToCache, Nothing, DateTime.Now.AddHours(2), Nothing)

Every 90 minutes a Microsoft Search Server hits a particular (spider) page which calls the code to put the objects into the cache.The issue i have is that over a period of time, the memory usage of the application grows exponentially. Lets say that in a week, the memory usage of the application pool grows to over 1gb

View 1 Replies

Service Not Staying On Unless Started Manually?

Nov 7, 2011

So I have this Windows service created in VB.Net, and all it does is perform a few calls and sits there.I have it installed on a test machine and when I start it manually, it starts up. When I stop manually, shuts down properly (onStop is called).When I start it, and reboot the machine, the service starts like it should, but when I log in, the service isn't running anymore and the onStop never showed up as being executed.I installed the service with admin privileges, so that shouldn't be an issue.Here is what I have:

Sub New()
' This call is required by the Windows Form Designer.
InitializeComponent()[code].....

View 3 Replies

VS 2010 Date Not Staying As Shortdate?

Apr 21, 2011

I am making a small bill manager program. I have setup a listview and I am using access db. Things are working great and when I pay a bill it enters in the database perfect, but when it is shown in the listview it shows the date plus the time. Why does it show correct in the database and not in the listview? I tried using .ToShortDateString instead .ToString but then it just tells me it doesn't like late binding.

[Code]...

View 7 Replies

Make My Form In Program Staying Top Of Other Windows?

Jun 26, 2010

I have a form in vb.net with a checkbox and I want it to stay in top of other windows if the user checks the checkbox and not to stay in top of other windows when the checkbox is not checked

View 2 Replies

SplashScreen Staying Open Even After Application Exits?

Apr 30, 2012

Windows Forms VB Application.. I added a splashScreen to my application. And it was flashing only for a second then going away so I added a sleep timer to my Form Load event... The problem is now the splashScreen stays open even After Application exits, instead of simply closing at the end of the sleeptimer.. The Part of the Form Load event that is causing this is as follows:

Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Me.Load
Threading.Thread.Sleep(5000)

[Code].....

View 3 Replies

Timer - .net Console App Pausing And Staying Open?

Mar 20, 2012

i am trying to understand how to keep my console app open even after it gathers data and sends it off. I am converting a GUI to the console app. It has a timer that fires the sub every 20 seconds. But it doesnt seem like it works in the console app since after it fires off the sub it closes the app without waiting.

[Code]...

View 1 Replies

VS 2010 Merging Toolstrips (MDI) - Staying Separate

Nov 30, 2011

I have a parent MDI form and several MDI children. All have menustrips and toolstrips. The merging of the menustrips was no problem at all but I'm trying to do the same thing for the toolstrips, but now it's a no go. The toolstrips are staying separated. Is it possible to merge toolstrips?

View 1 Replies

Open Excel On Local Desktop Using Remote Desktop Application ?

Jun 11, 2012

We have a Windows Forms VB.NET application running on Windows Server 2008. Users access this app using Remote desktop.The app displays information in Excel, but Excel opens on the server.Is there a way for the .NET app to launch Excel on the users local desktop?

View 1 Replies

Start Explorer.exe - Switching To A New Desktop It Starts A New Instance Of App In That Desktop?

Sep 5, 2011

Some of u already know I'm making a 'virtual desktop'- thing.Only one problem. When switching to a new desktop it starts a new instance of my app in that desktop (works) and on the form load event it says process.start("explorer.exe") <- here is the problem. It only shows a window not the actually bar.Also this may be important it shows the window, but when I navigate to explorer.exe 'C:Windowsexplorer.exe' and open it there. The explorer bar does show up.

View 14 Replies

VS 2008 : How To Refresh The Desktop

May 2, 2011

im looking for a simple way to refresh the desktop.

View 5 Replies

VS 2008 How To Refresh The Desktop

Aug 11, 2009

how can i refresh the desktop?

View 4 Replies

VS 2008 Remote Desktop .net(RMI)?

Aug 6, 2010

Myself Sandeep Francis I am working with a project tat can monitor the remote pc without knowing the user who uses that pc, the project module goes as below

[Code]...

View 2 Replies

VS 2008 : Display Desktop Shortcut Name?

Mar 5, 2010

If i drag 'n drop a desktop shortcut to a picturebox , how can i display its name on a mouse_hover event ? Or any other way.

View 5 Replies

VS 2008 : Get The Argument For The Desktop Of The User?

Sep 5, 2009

I cant remember which one it is , i looked in Application. and My.Application but couldn't find it, i want to get the argument for the desktop of the user?

View 2 Replies

VS 2008 : List Files In Desktop?

Oct 23, 2010

I'm trying to list all files in my desktop folder.But strUserDir value is "0" any ideas why?

My code

VB.net
Dim strUserDir As String = Environment.SpecialFolder.Desktop
For Each foundFile As String In My.Computer.FileSystem.GetFiles(strUserDir)
ListBox1.Items.Add(foundFile)
Next

View 9 Replies

VS 2008 Count How Many Icons The Desktop Has On It?

Aug 4, 2010

how would i count how many icons the desktop has on it? and if i could can i read them

View 1 Replies

VS 2008 Desktop Wallpaper Changer?

Feb 2, 2010

im making a Desktop Wallpaper Changer, using a timer to change the wallpaper after a select interval. I have 13 images in my directory numbered 1-13.

But im getting an error when it reaches 13 , is there any way i can maybe loop it ? so that it select no.1 again and repeats the process?

View 11 Replies

VS 2008 How To Make A Form Like A Desktop

Jul 24, 2009

can some one so me an example of how i can make a form to a desktop that will let me save files to the form and duble click the file and it open a program to view that file in,

View 3 Replies

VS 2008 Why Can't Create Folder On Desktop By VB

Jan 10, 2010

I don't know what went wrong, but I am not able to create a folder using the following code

My.Computer.FileSystem.CreateDirectory(Environ("%UserProfile%") & "Desktopabc")

View 5 Replies

EMAIL Validation In Desktop Application Vb 2008

Jun 29, 2009

email validation for textbox in vb 2008

View 2 Replies

Quotation Management (desktop) Applicaion In Vb 2008?

Sep 2, 2010

Using WINFORMS (VB 2008 Professional) in an XP Pro system, I have been able to create Data entry forms that capture required variables from user necessary to generate price/profit/resources required for a given project. The entry forms comprise textboxes, numeric updowns, comboboxes. All my calcs run well and I output the control contents to tables in SQLExpress. (I am a landscape architect).

But, I have to find out how to:1. Save contents of all data entries on the quotation form as a Project1.(suffix) file (as well as the current SQL DB), such that the user can at a later date, reopen original quotation details and rework the original estimate by altering one or more of the controls on the form. User can then save again and so on until user issues his/her final quote estimate to client.

I have been on some journey trying to pin this down - to no avail really; although tempted to ring the infamous (and very eloquent) Beth Massi, thought I would seek help from this Forum first.

View 8 Replies

VS 2008 - Adding Another Button To ContextMenu Of Desktop

Sep 21, 2009

Is it possible to add another button to contextmenu of the desktop?

View 1 Replies

VS 2008 : Desktop Icons Are Created In Some Computer While Not In Others?

Mar 21, 2012

I am having a problem I have created a program which will create Shortcuts by using CLSID. (Edd Bott say God Mode)The problem is it runs fine on some computer but in other it did not work fine.

View 5 Replies

VS 2008 : Hide The Desktop Icon Then Show It Again?

Apr 21, 2009

is there a way to hide the desktop icon then show it again?

View 1 Replies

VS 2008 Desktop Icons Are Created In Some Computer While Not In Others

Jan 11, 2010

I am having a problem I have created a program which will create Shortcuts by using CLSID. (Edd Bott say God Mode) The problem is it runs fine on some computer but in other it did not work fine.

View 1 Replies

VS 2008 Fill A Web Form Using Desktop Application?

Jul 12, 2009

I need to fill a web form using VB.Net Desktop Application. If a webform contains a captcha image to enter, will that can be shown in desktop application to enter and submi

View 1 Replies

Split Desktop Screen Into 2 Sections In Program 2008?

May 28, 2010

I am a novice programmer and would like to create a program that will divide the user desktop screen into 2 sections such that one bigger section of around 90% screen size is left for user to work with other windows that when maximized should not ovelrap the other 10% section which will hold some other information that will always be static on the user's screen.I am using vb2008.

View 3 Replies







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