compre (9K)



Male-User-Help-icon (19K)

Need help?



E-mail: CONTATO


Feel free to contact us with any additional questions.

Example using Scribes.

Help video





Graph with Scribes

If you this using this version for the first time lowers this video to know the configurations initial
Att: Users of the XP in some case and necessary to register the DLL midas.dll.
Admin Password Standard : 1234

As to execute reports generated for the SCRIBES through another application, this example and in VB but for other Tools the same logic

Private Sub CmdEdm_Click()
Vl_Str_Text1 = Text1.Text 'Database
Vl_Str_Text2 = Text2.Text 'user
Vl_Str_Text3 = Text3.Text 'pass
Vl_Str_Text4 = Text4.Text 'server
Vl_Str_Text5 = Text5.Text 'dir
Vl_Str_Text6 = Text6.Text 'port
Vl_Str_Text7 = Text7.Text 'Type (ex.:firebird-1.5)
Vl_Str_Text8 = Text8.Text '(if you not to pass this, it open a menu report)

ChamaPrograma = "c:\scribes\ScribesR.exe "
ChamaPrograma = ChamaPrograma & Vl_Str_Text1 & " "
ChamaPrograma = ChamaPrograma & Vl_Str_Text2 & " "
ChamaPrograma = ChamaPrograma & Vl_Str_Text3 & " "
ChamaPrograma = ChamaPrograma & Vl_Str_Text4 & " "
ChamaPrograma = ChamaPrograma & Vl_Str_Text5 & " "
ChamaPrograma = ChamaPrograma & Vl_Str_Text6 & " "
ChamaPrograma = ChamaPrograma & Vl_Str_Text7 & " "
ChamaPrograma = ChamaPrograma & Vl_Str_Text8 & " "
ReturnValue = Shell(ChamaPrograma, 1)
End;