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
Celebrating the 22th anniversary of the UltraVNC: https://forum.uvnc.com/viewtopic.php?t=38031
Update: UltraVNC 1.4.3.6 and UltraVNC SC 1.4.3.6: https://forum.uvnc.com/viewtopic.php?t=37885
Important: Please update to latest version before to create a reply, a topic or an issue: https://forum.uvnc.com/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
- Bluesky/AT Protocol: https://bsky.app/profile/ultravnc.bsky.social
- Facebook: https://www.facebook.com/ultravnc1
- X/Twitter: https://x.com/ultravnc1
- Reddit community: https://www.reddit.com/r/ultravnc
- OpenHub: https://openhub.net/p/ultravnc
Update: UltraVNC 1.4.3.6 and UltraVNC SC 1.4.3.6: https://forum.uvnc.com/viewtopic.php?t=37885
Important: Please update to latest version before to create a reply, a topic or an issue: https://forum.uvnc.com/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
- Bluesky/AT Protocol: https://bsky.app/profile/ultravnc.bsky.social
- Facebook: https://www.facebook.com/ultravnc1
- X/Twitter: https://x.com/ultravnc1
- Reddit community: https://www.reddit.com/r/ultravnc
- OpenHub: https://openhub.net/p/ultravnc
ChunkVNC Bigger Logo
Re: ChunkVNC Bigger Logo
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!
Re: ChunkVNC Bigger Logo
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
By the way your software is fantastic and just saved my company $2500
Re: ChunkVNC Bigger Logo
You can edit the SRC\InstantSupport.au3 file in a text editor (SciTE or Notepad++) and look at line 248:
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!
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 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!
Re: ChunkVNC Bigger Logo
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!
Re: ChunkVNC Bigger Logo
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
I really appreciate your assistance. Thanks for the quick response and keep up the fantastic work.
regards
Re: ChunkVNC Bigger Logo
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
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
Re: ChunkVNC Bigger Logo
No problem, have fun.
http://www.chunkvnc.com - ChunkVNC - Free PC Remote control with the Open Source UltraVNC wrapper InstantSupport!