Jump to content

Why is the execution time of GUISetIcon 7 seconds more then in scriptmode ?


Recommended Posts

When I execute the program as an exe, the execution time is very long. When I execute it in direct mode (F5), the execution time is much faster. It is a difference of 1 sec to 7 sec and only for the instruction line : GUISetIcon.

See log file in attach.

Elke vogel zingt zoals hij gebekt is !Als alleen die vogels zongen die het mooiste zingen zou het stil zijn in het bos.

Link to comment
Share on other sites

We're missing a few things that would help us help you.

First, please show your script so we can see for ourselves what the issue might be

Second, there's no log file attached

Third, what version of AutoIt are you using, not the version of SciTE but the AutoIt version number

Fourth, OS used and whether x86 or x64.

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Link to comment
Share on other sites

I attached a JPG with the restult of the consolewrite ater each statement. There are no statements between the statement GUISetIcon and StringSplit.

The verion of AutoIt is Production v3.3.8.0

OS = XP Service Pack 3

x86

Func Splash_Screen($t)

$Proc = "Splash_Screen - " & $t

; Create the GUI window and controls

If $Splash_GUI <> 0 Then Return

$Splash_Closed = False

$Splash_GUI = GUICreate(_StringProper($Msglab[1]), 420, 300)

GUISetBkColor($BG) ;set Background color

GUICtrlSetDefColor($FG) ;set text Color

GUISetFont(8.5, $FW_NORMAL, 1, $Font) ; set fontsize

GUISetIcon($Application_Icon) ;set icon

$A = StringSplit(_Picture_Format(2, 5, 390, 60, $Application_Logo), "|")

$Logo_Pic = GUICtrlCreatePic($Application_Logo, 2, 5, $A[3], $A[4]) ; Logo

$sHeight = $A[4] + 7

$Version = FileGetVersion(@ScriptDir & "va.exe")

$Version_Lab = GUICtrlCreateLabel($Msglab[221] & " " & $Version, 15, 67, 395, 15) ; Version

$sHeight = $sHeight + 15

$sData = _StringSize(_FSU($Msglab[2]), 8.5, $FW_NORMAL, 0, $Font, 405)

$I = GUICtrlCreateLabel($sData[0], 15, $sHeight, $sData[2], $sData[3])

$sHeight += $sData[3] - 3

$I = GUICtrlCreateLabel("-", 25, $sHeight)

$sData = _StringSize(_FSU($Msglab[7]), 8.5, $FW_NORMAL, 0, $Font, 390)

GUICtrlCreateLabel($sData[0], 30, $sHeight, $sData[2], $sData[3])

$sHeight += $sData[3] - 3

GUICtrlCreateLabel("-", 25, $sHeight)

$sData = _StringSize($Msglab[8], 8.5, $FW_NORMAL, 0, $Font, 390)

GUICtrlCreateLabel($sData[0], 30, $sHeight, $sData[2], $sData[3])

$sHeight += $sData[3] - 3

GUICtrlCreateLabel("-", 25, $sHeight)

$sData = _StringSize($Msglab[9], 8.5, $FW_NORMAL, 0, $Font, 390)

GUICtrlCreateLabel($sData[0], 30, $sHeight, $sData[2], $sData[3])

$sHeight += $sData[3] - 3

GUICtrlCreateLabel("-", 25, $sHeight)

$sData = _StringSize($Msglab[10], 8.5, $FW_NORMAL, 0, $Font, 390)

GUICtrlCreateLabel($sData[0], 30, $sHeight, $sData[2], $sData[3])

$sHeight += $sData[3] - 3

GUICtrlCreateLabel("-", 25, $sHeight)

$sData = _StringSize($Msglab[12], 8.5, $FW_NORMAL, 0, $Font, 390)

GUICtrlCreateLabel($sData[0], 30, $sHeight, $sData[2], $sData[3])

$sHeight += $sData[3] - 3

GUICtrlCreateLabel("-", 25, $sHeight)

$sData = _StringSize($Msglab[17], 8.5, $FW_NORMAL, 0, $Font, 390)

GUICtrlCreateLabel($sData[0], 30, $sHeight, $sData[2], $sData[3])

$sHeight += $sData[3] - 3

GUICtrlCreateLabel("-", 25, $sHeight, 5, 15)

$sData = _StringSize($Msglab[19], 8.5, $FW_NORMAL, 0, $Font, 390)

GUICtrlCreateLabel($sData[0], 30, $sHeight, $sData[2], $sData[3])

$sHeight += $sData[3]

$Separator = GUICtrlCreateGraphic(0, $sHeight, 500, 1) ; line

GUICtrlSetColor(-1, $_clBlack)

GUICtrlSetGraphic($Separator, $GUI_GR_LINE, 500, 0) ; line

$sHeight += 2

$sData = _StringSize($Msglab[3], 8.5, $FW_NORMAL, 0, $Font, 340)

GUICtrlCreateLabel($sData[0], 15, $sHeight, $sData[2], $sData[3])

$sHeight += $sData[3] - 3

$sData = _StringSize($Msglab[20], 8.5, $FW_NORMAL, 0, $Font, 325)

GUICtrlCreateLabel($sData[0], 30, $sHeight, $sData[2], $sData[3])

$sHeight += $sData[3] - 3

$sOk_B = GUICtrlCreateButton(_FSU($Msglab[312]), 360, $sHeight - 22, 45, 20, $BS_DEFPUSHBUTTON) ; OK button

If $sHeight > 280 Then WinMove(_StringProper($Msglab[1]), "", Default, Default, 420, $sHeight + 45)

GUISetState(@SW_SHOW, $Splash_GUI)

GUISetOnEvent($GUI_EVENT_CLOSE, "Splash_Screen_Closed", $Splash_GUI)

GUICtrlSetOnEvent($sOk_B, "Splash_Screen_Closed")

If $t Then $sTimer = _Timer_SetTimer($Splash_GUI, 10000, "Splash_Timer")

EndFunc ;==>Splash_Screen

Elke vogel zingt zoals hij gebekt is !Als alleen die vogels zongen die het mooiste zingen zou het stil zijn in het bos.

Link to comment
Share on other sites

  • Moderators

Disable - "render inoperative; cripple ". Basically, turn off your antivirus, and try the script again.

"Profanity is the last vestige of the feeble mind. For the man who cannot express himself forcibly through intellect must do so through shock and awe" - Spencer W. Kimball

How to get your question answered on this forum!

Link to comment
Share on other sites

It sounds like that your anti virus program probably blocks the execution of your compiled exe for some seconds. It is only a guess!

Disable your anti virus program and try again.

If you don't have an AV program ignore my post.

Br,

UEZ

Please don't send me any personal message and ask for support! I will not reply!

Selection of finest graphical examples at Codepen.io

The own fart smells best!
Her 'sikim hıyar' diyene bir avuç tuz alıp koşma!
¯\_(ツ)_/¯  ٩(●̮̮̃•̃)۶ ٩(-̮̮̃-̃)۶ૐ

Link to comment
Share on other sites

Hera are the two log :

Script :

@@ Trace(16260) :(52:09) $Splash_Closed = False

>Error code: 0

@@ Trace(16262) :(52:09) $Splash_GUI = GUICreate(_StringProper($Msglab[1]), 420, 300)

>Error code: 0

@@ Trace(16264) :(52:09) GUISetBkColor($BG) ;set Background color

>Error code: 0

@@ Trace(16266) :(52:09) GUICtrlSetDefColor($FG) ;set text Color

>Error code: 0

@@ Trace(16268) :(52:09) GUISetFont(8.5, $FW_NORMAL, 1, $Font) ; set fontsize

>Error code: 0

@@ Trace(16270) :(52:09) GUISetIcon($Application_Icon) ;set icon

>Error code: 0

@@ Trace(16272) :(52:09) $A = StringSplit(_Picture_Format(2, 5, 390, 60, $Application_Logo), "|")

>Error code: 0

@@ Trace(16274) :(52:09) $Logo_Pic = GUICtrlCreatePic($Application_Logo, 2, 5, $A[3], $A[4]) ; Logo

>Error code: 0

@@ Trace(16276) :(52:09) $sHeight = $A[4] + 7

>Error code: 0

@@ Trace(16278) :(52:09) $Version = FileGetVersion(@ScriptDir & "va.exe")

>Error code: 0

@@ Trace(16280) :(52:09) $Version_Lab = GUICtrlCreateLabel($Msglab[221] & " " & $Version, 15, 67, 395, 15) ; Version

>Error code: 0

@@ Trace(16282) :(52:09) $sHeight = $sHeight + 15

>Error code: 0

@@ Trace(16284) :(52:09) $sData = _StringSize(_FSU($Msglab[2]), 8.5, $FW_NORMAL, 0, $Font, 405)

>Error code: 0

Compiled :

@@ Trace(16260) :(07:58) $Splash_Closed = False

>Error code: 0

@@ Trace(16262) :(07:58) $Splash_GUI = GUICreate(_StringProper($Msglab[1]), 420, 300)

>Error code: 0

@@ Trace(16264) :(07:58) GUISetBkColor($BG) ;set Background color

>Error code: 0

@@ Trace(16266) :(07:58) GUICtrlSetDefColor($FG) ;set text Color

>Error code: 0

@@ Trace(16268) :(07:58) GUISetFont(8.5, $FW_NORMAL, 1, $Font) ; set fontsize

>Error code: 0

@@ Trace(16270) :(07:58) GUISetIcon($Application_Icon) ;set icon

>Error code: 0

@@ Trace(16272) :(08:05) $A = StringSplit(_Picture_Format(2, 5, 390, 60, $Application_Logo), "|")

>Error code: 0

@@ Trace(16274) :(08:05) $Logo_Pic = GUICtrlCreatePic($Application_Logo, 2, 5, $A[3], $A[4]) ; Logo

>Error code: 0

@@ Trace(16276) :(08:05) $sHeight = $A[4] + 7

>Error code: 0

@@ Trace(16278) :(08:05) $Version = FileGetVersion(@ScriptDir & "va.exe")

>Error code: 0

@@ Trace(16280) :(08:05) $Version_Lab = GUICtrlCreateLabel($Msglab[221] & " " & $Version, 15, 67, 395, 15) ; Version

>Error code: 0

@@ Trace(16282) :(08:05) $sHeight = $sHeight + 15

>Error code: 0

@@ Trace(16284) :(08:05) $sData = _StringSize(_FSU($Msglab[2]), 8.5, $FW_NORMAL, 0, $Font, 405)

>Error code: 0

Edited by Richardr

Elke vogel zingt zoals hij gebekt is !Als alleen die vogels zongen die het mooiste zingen zou het stil zijn in het bos.

Link to comment
Share on other sites

it is AV

I was that same problem

it is because

AV check the file when you setting icon

in my Case file was on net shared folder

and checking file over net by AV takes that long time

Signature beginning:
Please remember: "AutoIt"..... *  Wondering who uses AutoIt and what it can be used for ? * Forum Rules *
ADO.au3 UDF * POP3.au3 UDF * XML.au3 UDF * IE on Windows 11 * How to ask ChatGPT for AutoIt Codefor other useful stuff click the following button:

Spoiler

Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind. 

My contribution (my own projects): * Debenu Quick PDF Library - UDF * Debenu PDF Viewer SDK - UDF * Acrobat Reader - ActiveX Viewer * UDF for PDFCreator v1.x.x * XZip - UDF * AppCompatFlags UDF * CrowdinAPI UDF * _WinMergeCompare2Files() * _JavaExceptionAdd() * _IsBeta() * Writing DPI Awareness App - workaround * _AutoIt_RequiredVersion() * Chilkatsoft.au3 UDF * TeamViewer.au3 UDF * JavaManagement UDF * VIES over SOAP * WinSCP UDF * GHAPI UDF - modest begining - comunication with GitHub REST APIErrorLog.au3 UDF - A logging Library * Include Dependency Tree (Tool for analyzing script relations) * Show_Macro_Values.au3 *

 

My contribution to others projects or UDF based on  others projects: * _sql.au3 UDF  * POP3.au3 UDF *  RTF Printer - UDF * XML.au3 UDF * ADO.au3 UDF SMTP Mailer UDF * Dual Monitor resolution detection * * 2GUI on Dual Monitor System * _SciLexer.au3 UDF * SciTE - Lexer for console pane

Useful links: * Forum Rules * Forum etiquette *  Forum Information and FAQs * How to post code on the forum * AutoIt Online Documentation * AutoIt Online Beta Documentation * SciTE4AutoIt3 getting started * Convert text blocks to AutoIt code * Games made in Autoit * Programming related sites * Polish AutoIt Tutorial * DllCall Code Generator * 

Wiki: Expand your knowledge - AutoIt Wiki * Collection of User Defined Functions * How to use HelpFile * Good coding practices in AutoIt * 

OpenOffice/LibreOffice/XLS Related: WriterDemo.au3 * XLS/MDB from scratch with ADOX

IE Related:  * How to use IE.au3  UDF with  AutoIt v3.3.14.x * Why isn't Autoit able to click a Javascript Dialog? * Clicking javascript button with no ID * IE document >> save as MHT file * IETab Switcher (by LarsJ ) * HTML Entities * _IEquerySelectorAll() (by uncommon) * IE in TaskSchedulerIE Embedded Control Versioning (use IE9+ and HTML5 in a GUI) * PDF Related:How to get reference to PDF object embeded in IE * IE on Windows 11

I encourage you to read: * Global Vars * Best Coding Practices * Please explain code used in Help file for several File functions * OOP-like approach in AutoIt * UDF-Spec Questions *  EXAMPLE: How To Catch ConsoleWrite() output to a file or to CMD *

I also encourage you to check awesome @trancexx code:  * Create COM objects from modules without any demand on user to register anything. * Another COM object registering stuffOnHungApp handlerAvoid "AutoIt Error" message box in unknown errors  * HTML editor

winhttp.au3 related : * https://www.autoitscript.com/forum/topic/206771-winhttpau3-download-problem-youre-speaking-plain-http-to-an-ssl-enabled-server-port/

"Homo sum; humani nil a me alienum puto" - Publius Terentius Afer
"Program are meant to be read by humans and only incidentally for computers and execute" - Donald Knuth, "The Art of Computer Programming"
:naughty:  :ranting:, be  :) and       \\//_.

Anticipating Errors :  "Any program that accepts data from a user must include code to validate that data before sending it to the data store. You cannot rely on the data store, ...., or even your programming language to notify you of problems. You must check every byte entered by your users, making sure that data is the correct type for its field and that required fields are not empty."

Signature last update: 2023-04-24

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...