Search found 11 matches
- Thu Mar 11, 2010 1:55 pm
- Forum: General
- Topic: Read email
- Replies: 1
- Views: 4415
Re: Read email
You can not read email with Winlog, you can only send.
- Thu Mar 11, 2010 1:51 pm
- Forum: General
- Topic: Ftp server
- Replies: 1
- Views: 4035
Re: Ftp server
With winlog code, using ftp functions, you can transfer the files. You can download demo application here viewtopic.php?f=20&t=73
- Thu Mar 11, 2010 1:39 pm
- Forum: General
- Topic: Sound Alarm
- Replies: 1
- Views: 6425
Re: Sound Alarm
Yes, you can do it through code. Download demo application viewtopic.php?f=20&t=71
- Tue Mar 09, 2010 3:48 pm
- Forum: Protocols
- Topic: Problem connect to SIEMENS
- Replies: 1
- Views: 6788
Re: Problem connect to SIEMENS
There are or two typical errors: A: if you use 3 as "station address" in the protocol configuration window, you must specify the same in the "Device" field od the gate in the GateBuilder. B: Slot number must specify the slot number of the ehternet card inside the PLC (may by 2 or...
- Tue Mar 09, 2010 3:40 pm
- Forum: Protocols
- Topic: ODBC driver
- Replies: 1
- Views: 5960
Re: ODBC driver
SELECT ValueSp,id FROM Tabela1 ORDERED BY id ASC (Wrong)
SELECT ValueSp,id FROM Tabela1 ORDER BY id ASC (Correct)
If you still have problem with ODBC communication use the ODBC protocol Configuration window and click on Errors to see the last error messages.
SELECT ValueSp,id FROM Tabela1 ORDER BY id ASC (Correct)
If you still have problem with ODBC communication use the ODBC protocol Configuration window and click on Errors to see the last error messages.
- Tue Mar 09, 2010 3:01 pm
- Forum: Code - Code Builder
- Topic: Set Bit in a Num Gate value
- Replies: 1
- Views: 6281
Re: Set Bit in a Num Gate value
Yes, here it is a Winlog code example: Function void CheckBit() int Value; Value=GetNumGateValue("N",1); if GetBit(Value,2)==1 then MessageBox("Bit 2=1",""); else MessageBox("Bit 2=0",""); end end Function void SetBit() int Value; Value=GetNumGateVal...
- Tue Mar 09, 2010 2:58 pm
- Forum: Code - Code Builder
- Topic: Ftp transfer
- Replies: 1
- Views: 5654
Re: Ftp transfer
Here it is a sample code to tranfer a file via FTP with Winlog Code: Function bool SendFTPFile() //******************************************************************** string SourceFullPathFileName; string DestFullPathFileName; string FTPHost; int Handle; //********************************** // Send...
- Tue Mar 09, 2010 2:48 pm
- Forum: General
- Topic: HTTP-API command
- Replies: 1
- Views: 3804
Re: HTTP-API command
Sorry, no.
Only FTP command.
Only FTP command.
- Tue Mar 09, 2010 2:36 pm
- Forum: Templates - Template Builder
- Topic: User login
- Replies: 1
- Views: 7215
Re: User login
Bout user login follow these steps: 1) Start Runtime 2) Select Menu item "Password->Defines->Groups Name" and define the names of the groups or operator levels (for example : Operator, Supervisor,All) 3) Select Menu item "Password->Define->Users" and define an user and his own pa...
- Tue Mar 09, 2010 2:33 pm
- Forum: Templates - Template Builder
- Topic: Winlog with a large display
- Replies: 1
- Views: 6782
Re: Winlog with a large display
Winlog can works with scroll bars, but I think that you can have a problem with Template Builder: it forces the size of the template to the maximum size supported from the actual screen settings: so I think that to draw templates, it is necessary to set your computer screen setting as the same as th...
- Tue Mar 09, 2010 2:23 pm
- Forum: Installation
- Topic: Problem with hardware key
- Replies: 1
- Views: 11838
Re: Problem with hardware key
There may be several reasons because the communication doesn't work. Try to follow these steps: 1) Remove Winlog lite from the computer. 2) Remove the Sentinel driver from the computer. 3) Remove the Runtime key from the computer. 4) Install Winlog PRO. 5) Insert a W-E key in the computer (I thin yo...