Determine Icon Size On Desktop?
Sep 6, 2010
I am running Windows 7 home premium (64bit) and writing programs using VB 2010 Express.
I have found a user can change icon display size using 'control panel' > 'appearance and personalization' >'Display' where they can select small, medium or large. The result, even though the icon heigth & width values are not changed, the apparent icon size on the desktop(and also text size in controls) is changed. Hence, if the user has chosen a larger icon size that I have on my machine, text in a button is larger and may not be completely visible.Knowing the user font size choice, I could adjust font size as required.[code]...
View 4 Replies
ADVERTISEMENT
Nov 21, 2011
I have an issue with the icon displayed on the desktop. I have used the project's properties, application form and used the dropdown menu under icon to associate an Icon to the application. I have done this loads of times before and it has always worked.
View 6 Replies
Sep 23, 2010
What is the size difference between desktop and screen size?
I've been developing an application, which consists of a bar to the bottom of the screen that I want to keep allways visible .
When i open a window and maximize it, it do not stay behind the bar but only to maximize the top of the bar!
View 7 Replies
Dec 29, 2009
How to determine whether form is it inside the desktop?
View 3 Replies
Aug 25, 2009
when the user installs my vb.net application, i would like my icon (a shortcut) to be placed on the user's desktop. i am using vb express 2008, and am using the installer that it comes with. how do i specify an icon for this:?
View 2 Replies
Oct 25, 2009
i have visual basics 2008 express and i made a app, how can i change the icon that it displays when on the desktop, and how can i get it to minimize to the right bottom of the screen next to the clock.
View 2 Replies
Jul 25, 2009
I am working in VB.NET 2003. I have one exe file in a particular folder. I want to create desktop shortcut icon for that exe file. How can I do this?
View 1 Replies
Jul 16, 2011
Is there a way to know/dictate where an icon is to be placed on the Desktop.For example, if I was to be in My Documents and I see a file of which I desire to have a Shortcut of Send(ed) to the Desktop (by using the right-click command "Send to Desktop"),how can I "peek" the Windows processing and determine, then intercept, the location it's determined to place this icon at.I desire to be able to dictate more than the location, but believe that upon acquiring this information I can obtain everything else I need.
View 1 Replies
Sep 5, 2010
Any visual basic net code to make the application run between desktop icon and background wallpaper. It mean if that application is running in background the icon in the desktop should be selectable..
View 1 Replies
Oct 27, 2009
Is there a way to determine if the application is running from an RDP session or not? Our staff has VPN access and use Microsoft's RDP Client to connect to their computers at the office. They mostly interract with software we've written. I'd like to identify those people that use our applications via RDP as opposed to being physically at their computer.
View 1 Replies
Jul 22, 2009
Does anyone know of a way to create a desktop icon when installing an application, in addition to adding it to the start menu.
View 5 Replies
Nov 24, 2011
I've created my first Visual Studio (2010) app. It's a simple, single form, single exe app. I set the application icon in Project Properties and built the app. When I view the exe file in Windows Explorer the small icon displays but when I copy the exe file to my Windows 7 desktop I get the default exe icon instead of the icon I've specified. If I copy the ico file to the desktop the picture displays and when I create a shortcut to the exe file and specify my ico as the icon it also displays.
View 1 Replies
Jun 1, 2011
I found this thread[url]...
and I have encountered the exact same problem, that the desktop shortcut icon created by the Setup program does not work when dragging and dropping a file (in this case an Access-database) onto it,
while a shortcut manually created works just fine.
I do not understand the answer in the above thread. But, anyway I would like to find a way to solve the problem directly, preferably through the Setup program itself.
View 2 Replies
Aug 4, 2009
I found some VB6 code over here to get and set icons on the desktop.After converting it to VB.NET and making some minor modifications it should simply save the icon's locations at startup into an array of POINT structures, set all icons to random locations when a button is pressed and put the icons back when the applications exits. When I start the app all icons dissapear and nothing happens when the button is pressed or when I exit (I can get the icons back by aligning them by grid).The VB6 to VB.NET converter gives me a warning when i try to marshal the POINT structure saying that i need special conversion for marshaling non bittable types.
Here's the code:
Imports Microsoft.VisualBasicImports Microsoft.VisualBasic.Compatibility.VB6Imports SystemImports System.Runtime.InteropServicesImports System.Windows.Forms
Imports Project1.Declarations
Friend Partial Class Form1
Inherits System.Windows.Forms.Form
[Code] .....
View 1 Replies
Apr 21, 2009
is there a way to hide the desktop icon then show it again?
View 1 Replies
Nov 25, 2010
I just created a game program out of VBE2008 and did the build process to turn it into a .exe file.When I did the build function I apparently missed the step of attaching an icon to the project.Now when I do a desktop shortcut to the .exe file there is no pretty icon - just an ordinary looking window box.How do I add a desktop shortcut icon to inside the project settings?
View 1 Replies
May 31, 2010
I finished True Tune and built it then published it, but it doesn't appear in the win7 start menu or as an icon on the desktop.
View 6 Replies
Oct 10, 2009
I have created a project that uses a listview associated to an imagelist (LargeImagelist, I have set the size as 100 x 75 and 32 bit depth), that displays information from a database along with an image from the image list. My listview is set to tilemode so that I can control the size of the tiles to get two columns of six. The image list is populated when the form is loaded from all the images in a specific folder, this part is working appropriately as I can get a picturebox working consistently that references an image from the imagelist.
[Code]...
View 2 Replies
Apr 8, 2009
How can I get all the names of the shortcuts icons in the desktop into a String?
Like: Computer, Microsoft Office Word 2003, Internet Explorer....etz.
I tried to use "My.Computer.FileSystem..." , but didn't find a way.
View 3 Replies
Aug 22, 2011
Public Class A
Private aa As Integer
Dim bb As Integer
Public cc As Integer
[code]....
what is the size of the object oA?and what if Class A and B contain methods?(I meant the size of object)what if inherited class B contains overridden methods?(size of object)what if inherited class B contains variables with same name as in Class A?(size of object)I need theoretical answer. Does those access specifiers Private,Dim,Public make any difference in allocating memory because of their different scopes?On what basis memory is allotted for a method? etc.
View 1 Replies
Jan 25, 2010
I am trying to create a setup file which would automatically install a link to the executable in the User's Desktop and Startup--> Program. However despite following all the steps in the right order I do not see any short cut in the desktop and Start -> Program.
View 4 Replies
Apr 16, 2012
I'm working on a project and need to determine the size of a text file. I know that I could just count characters but the file will be several MB's large.
View 1 Replies
Jul 8, 2010
So we're having this problem. A user goes to upload a file, and if it's above 10MB, it just kind of times out the page, and clears, and no good error is thrown to describe what happened. Ideally, we would like to examine the file size when the user chooses the file they want to upload but I don't know if this is even possible. Our framework is built with ASP.NET, VB.NET, and Javascript (and ExtJS 3.0), and it runs in IE.
View 6 Replies
Jul 28, 2011
I'm trying to find the sum of all the digits that make up the number 2^1000, which you may have guessed is from Project Eula. I think it's good so far except I'm just learning about arrays and dynamic arrays, so how will I know what the size of the index will be so I can specify when the Do loop should stop so I don't get an indexoutofrange exception?
vb.net
Dim BigNumber As Double = 2 ^ 1000
Dim DigitArray() As Char = BigNumber.ToString.ToCharArray
Dim Index As Integer = 0
Dim SumOfDigits As Integer = 0
[Code] .....
View 3 Replies
Jul 30, 2009
I want to determine size/length of an array that is, how many elements are in my 1 dimen array, can't seem to find the right method that works.
View 9 Replies
Sep 16, 2009
I have a form that starts at a specific point (the right side of the left screen on an extended desktop). I am trying to work with users with different resolution. Insteadof changing the resolution to match the application, I want to try and get the size of the desktop (1280 x 2 for an extended desktop, 800 x 2 for a different resolution) and set the form to the same point... the inside (right side) of the left screen on an extended desktop. Is there a way to tell how long the desktop is from left to right and top to bottom?
View 2 Replies
Jan 4, 2010
how can i determine the file size and the date it was last modified..
i need to compare two files and determine which one is the latest and which one is bigger in file size..
compare a.xml to b.xml..
View 4 Replies
Dec 8, 2011
Been baffling me for an hour or so. The icons i am using look really squashed.
[Code]...
View 4 Replies
Jun 11, 2009
Im trying to set a forms size to fill my desktop screen is any function that does this or do you have to set the form size manually depending on the screen size each time ?
View 5 Replies
Jun 21, 2010
My vb app uses an icon which is 128x128, which looks fine on the desktop. But when viewed in a folder with View set to Extra Large Icons its size doesn't change - it is too small (smaller than 128x128). Any ideas how I can rectify this?
View 1 Replies