Update: UltraVNC 1.4.3.6 and UltraVNC SC 1.4.3.6: viewtopic.php?t=37885
Important: Please update to latest version before to create a reply, a topic or an issue: viewtopic.php?t=37864

Join us on social networks and share our announcements:
- Website: https://uvnc.com/
- GitHub: https://github.com/ultravnc
- Mastodon: https://mastodon.social/@ultravnc
- Facebook: https://www.facebook.com/ultravnc1
- X/Twitter: https://twitter.com/ultravnc1
- Reddit community: https://www.reddit.com/r/ultravnc
- OpenHub: https://openhub.net/p/ultravnc

ChunkVNC Bigger Logo

Simple, Free, Open Source UltraVNC Wrapper Supporting Windows and Mac OSX
Post Reply
dillydog
Posts: 4
Joined: 2012-05-28 14:47

ChunkVNC Bigger Logo

Post by dillydog »

Hello Can anyone tell me what I need to modify in order to make the Chunkvnc Logo section bigger so that my company logo isn't distorted?

Thank you
User avatar
supercoe
400
400
Posts: 1732
Joined: 2009-07-20 21:27
Location: Walker, MN
Contact:

Re: ChunkVNC Bigger Logo

Post by supercoe »

Create your logo in a 450x90px jpg like the included logo.jpg and it will not be distorted as any other size gets stretched.
http://www.chunkvnc.com - ChunkVNC - Free PC Remote control with the Open Source UltraVNC wrapper InstantSupport!
dillydog
Posts: 4
Joined: 2012-05-28 14:47

Re: ChunkVNC Bigger Logo

Post by dillydog »

Thank you but is there a way to actually make the window and logo area bigger?

By the way your software is fantastic and just saved my company $2500
User avatar
supercoe
400
400
Posts: 1732
Joined: 2009-07-20 21:27
Location: Walker, MN
Contact:

Re: ChunkVNC Bigger Logo

Post by supercoe »

You can edit the SRC\InstantSupport.au3 file in a text editor (SciTE or Notepad++) and look at line 248:

Code: Select all

; Create the GUI.
$InstantSupport = GUICreate( $str_Program_Title, 450, 200, -1, -1, BitOR( $WS_SYSMENU,$WS_CAPTION,$WS_POPUP,$WS_POPUPWINDOW,$WS_BORDER,$WS_CLIPSIBLINGS,$WS_MINIMIZEBOX ) )
GUISetBkColor( 0xFFFFFF )
$Label2 = GUICtrlCreateLabel( $IDNumber, 0, 100, 450, 100, $SS_CENTER )
GUICtrlSetFont( -1, 50, 800, 0, "Arial Black" )
$Pic1 = GUICtrlCreatePic( $WorkingPath & "\logo.jpg", 0, 0, 450, 90, BitOR( $SS_NOTIFY,$WS_GROUP,$WS_CLIPSIBLINGS ) )
GUISetState( @SW_SHOW )
WinSetOnTop( $str_Program_Title, "",1)
You can change the size of the window from it's default size of 450px wide 200px tall on line 249.
You can change the size of the pic from it's default size of 450px wide 90px tall on line 253.

Take a look at the AutoIT manuals for further explanations of GUICreate and GUICtrlCreatePic if you want to get more advanced in styling. :)

Glad you like the software and happy to have saved your company some cash as this project surely helped my business in the same way.

Good luck!
http://www.chunkvnc.com - ChunkVNC - Free PC Remote control with the Open Source UltraVNC wrapper InstantSupport!
User avatar
supercoe
400
400
Posts: 1732
Joined: 2009-07-20 21:27
Location: Walker, MN
Contact:

Re: ChunkVNC Bigger Logo

Post by supercoe »

Oh yea, and don't forget to compile again after editing the source code. :)
http://www.chunkvnc.com - ChunkVNC - Free PC Remote control with the Open Source UltraVNC wrapper InstantSupport!
dillydog
Posts: 4
Joined: 2012-05-28 14:47

Re: ChunkVNC Bigger Logo

Post by dillydog »

Thank you that is exactly what I was looking for.

I really appreciate your assistance. Thanks for the quick response and keep up the fantastic work.

regards
dillydog
Posts: 4
Joined: 2012-05-28 14:47

Re: ChunkVNC Bigger Logo

Post by dillydog »

For your interest, and I probably deserve an idiot award for this. I was editing those fields prior to posting but it wasn't changing my settings. I eventually figured out that Microsoft permissions were unhappy with me editing the file in that location directly...

So I copied the file sideways, edited it and copied it back now it works a treat.

Feel free to award me with the Idiot of the week award...

Thanks again for your help
User avatar
supercoe
400
400
Posts: 1732
Joined: 2009-07-20 21:27
Location: Walker, MN
Contact:

Re: ChunkVNC Bigger Logo

Post by supercoe »

No problem, have fun. :)
http://www.chunkvnc.com - ChunkVNC - Free PC Remote control with the Open Source UltraVNC wrapper InstantSupport!
Post Reply