Hi Dave, I wanted my application icon to come into the sys tray. I am installing my program after then...,I am able to do it on double clicking my exe . But this is not required. I wanted to invoke the icon into the sys tray during the installation process.I meant into the System Configuration Utility (msconfig) Can U help me. Thank You.
amaneet
Posts
-
exe in the system tray -
exe in the system trayI am not afraid too , that how somebody select u as a Microsoft MVP C++
-
exe in the system trayHi Christian, I am not getting ur point. My question was based on , how to pogramically put the application in the sys tray before the complition of the installation.I know the diffeence between startup and systray.Can u provide some steps to accomplish this task. Thanks and Regards Pankaj Garg
-
Very urgent problem in crystal reports please helptry using ParameterRangeValue Hope this may help u.
-
operating system accounts(to login) in vb.netI am using the following code to list the accounts of my operating system. Currently i have just two accounts namely 1.Administator 2.Guest But it shows 6 accounts. can i filter the query to make it to show the actual accounts.
Dim oQuery As New Management.ObjectQuery("select * from Win32_Account WHERE SIDType = 1") Dim osearch As New ManagementObjectSearcher(oQuery) Dim ocollection As ManagementObjectCollection = osearch.Get Dim oresult As ManagementObject For Each oresult In ocollection TextBox1.Text = oresult("Name").ToString & " " Next
Thank You Pankaj -
exe in the system traySystem Configuation Utility/StartUp(System tray) can I make my installer put it in the System tray Thank You Christian Graus
-
exe in the system trayHI there, so what's the logic to tell the Installer.... , to do a particular thing, before the complition of the installation. I mean can i put my poject exe into the System Configuation Utility/StartUp programatically , before the complition of the installation. Thanks You.
-
exe in the system trayHi all, My Question is concerned with the setup and deployment project in vb.net2005. I wanted to know.... , Is there any way that I may place my exe - into the system tray after complition of the installation of my program - programatically in vb.net 2005 Thanks and regards Pankaj Garg
-
Help!!!! Trying to create shared folder. VB.NETThanks for ur kind attention. But if u please explain with the help of an example how to create the shared folder.example means to say.... , tell us something about which classes should be used to create a shared folder on my machine or at the remote machine. The link u provided... , did not have an enough infomation. Thanks again Satips.
-
Restiction to certain applicationsHi... Is there any way to restrict the current logged in use to access certain applications in windows environment…!! VB.net 2005 Thanks...
-
How to create a shortcut of my application on the right click menu of desktopHi.. i want my application to run from the right click menu of desktop... From where we refresh our desktop..that one. Is there any installer that can do this... or shud have i to first write code for this and call that application... during the installation of my default appplication. I am using vb.net 2005 Plz help me out... need it urgently
-
How to Get data From Dataset To Arrayplease elaborate ur query
-
How do I initialize instantiiation of a multifield recordtry this one dim myrecord as new foo this may help u.
-
marshalas in vb.netHi there, Can somebody tell me the utility of marshalas in vb.net 2.0.I mean for what purpose i should use it. Thanks
-
File saved is too large..(excel)u r using window or web application?
-
asycnh classis it concerned with asynchonous. can u please explain a little bit more precisely.
-
Capture windows shutdown eventSystem.Diagnostics.Process.Start("shutdown", "-s") hope this will help u.
-
setup project in 2003as far as the database(sql serve is concerned). u need to export the database file manually to the client end. framework is the dependency so just add it to ur deployment project. hope this will help u.
-
Error sending mail using smtpTry this code. Hope this will help u. Public Function OpenEmail(ByVal EmailAddress As String) ', Optional ByVal Subject As String = "", Optional ByVal Body As String = "") As Boolean Dim bAns As Boolean = True Dim sParams As String sParams = EmailAddress If LCase(Strings.Left(sParams, 7)) <> "mailto:" Then sParams = "mailto:" & sParams 'If Subject <> "" Then sParams = sParams & _ ' "?subject=" & Subject 'If Body <> "" Then ' sParams = sParams & IIf(Subject = "", "?", "&") ' sParams = sParams & "body=" & Body 'End If Try System.Diagnostics.Process.Start(sParams) Catch bAns = False End Try Return bAns End Function
-
minimize to system trayThanks .This aticle helped me a lot.