Skip to content

Commit

Permalink
Refatorado setup.prg e Fmg
Browse files Browse the repository at this point in the history
  • Loading branch information
nilton-medeiros committed Dec 20, 2024
1 parent bf78e30 commit b82c05b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions DFeMonitor.rc
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
1 VERSIONINFO
FILEVERSION 4,1,31{
FILEVERSION 4,1,32{
BLOCK "StringFileInfo"
{
BLOCK "040904E4"
Expand All @@ -9,7 +9,7 @@
VALUE "LegalCopyright" , "Copyright (c) Sistrom Web"
VALUE "OriginalFilename" , "DFeMonitor.exe"
VALUE "ProductName" , "DFe Monitor"
VALUE "ProductVersion" , "4.1.30.Hb.MS"
VALUE "ProductVersion" , "4.1.32.Hb.MS"
}
}
BLOCK "VarFileInfo"
Expand Down
2 changes: 1 addition & 1 deletion main.prg
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ REQUEST HB_CODEPAGE_UTF8
*/
Function Main

public appData := TAppData():new("4.1.31")
public appData := TAppData():new("4.1.32")
public appDataSource
public appFTP
public appEmpresas
Expand Down
4 changes: 2 additions & 2 deletions setup.fmg
Original file line number Diff line number Diff line change
Expand Up @@ -936,9 +936,9 @@ DEFINE WINDOW TEMPLATE AT 210 , 380 WIDTH 853 HEIGHT 533 VIRTUAL WIDTH Nil VIRTU
DEFINE LABEL Label_SenhaPFX
ROW 280
COL 20
WIDTH 50
WIDTH 130
HEIGHT 18
VALUE "Senha"
VALUE "Senha Arquivo PFX"
FONTNAME "Arial"
FONTSIZE 9
TOOLTIP ""
Expand Down
8 changes: 4 additions & 4 deletions setup.prg
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,10 @@ procedure setup_form_oninit()
SetProperty('setup', 'Text_das', 'Value', appData:timerStart)
SetProperty('setup', 'Text_as', 'Value', appData:timerEnd)
SetProperty('setup', 'Text_path_xml_pdf', 'Value', appData:dfePath)
SetProperty("setup", "ProgressBar_Transmitindo", "visible", false)
SetProperty("setup", "ProgressBar_Transmitindo", "enabled", false)
SetProperty("setup", "ProgressBar_Transmitindo", "value", 50)
SetProperty("setup", "StatusBar", "Item", 1, "Database: " + notifyTooltip)
SetProperty("setup", "ProgressBar_Transmitindo", "visible", false)
SetProperty("setup", "ProgressBar_Transmitindo", "enabled", false)
SetProperty("setup", "ProgressBar_Transmitindo", "value", 50)
SetProperty("setup", "StatusBar", "Item", 1, "Database: " + notifyTooltip)
SetProperty("setup", "StatusBar", "Item", 2, appDataSource:connectionStatus)
SetProperty("setup", "StatusBar", "Icon", 2, appDataSource:iconStatus)

Expand Down

0 comments on commit b82c05b

Please sign in to comment.