Search found 214 matches

by Ron L.
Thu Jan 31, 2013 4:32 pm
Forum: Scripting
Topic: FTP FUNCTION
Replies: 17
Views: 35599

Re: FTP FUNCTION

Once you've figured out how to create an Image control in C#, you can display it by putting it on a screen. You can get access to the screen with a cast like this in the Screen opened action. Just remember that when a screen closes that Form is destroyed. void Screen1_Opened(System.Object sender, Sy...
by Ron L.
Thu Jan 31, 2013 4:25 pm
Forum: Scripting
Topic: FTP FUNCTION
Replies: 17
Views: 35599

Re: FTP FUNCTION

In HMI, I save image file into HMI, how can I get them ? One you save the file to a directory such as "\FlashDrive\Project\Project Files\", you would then need to open the file and load it's data to a Image or Picture object. I don't have any C# code written in iX Developer to do this, but it shoul...
by Ron L.
Mon Jan 28, 2013 2:05 pm
Forum: Scripting
Topic: FTP FUNCTION
Replies: 17
Views: 35599

Re: FTP FUNCTION

That example was written for WinCE-based HMI, you will need to modify it to make it work on a PC. The example downloads a file and copies that file to a USB thumb drive. You said you wanted to download an image and display it. I don't have any examples that do that, but it should be possible with so...
by Ron L.
Mon Jan 28, 2013 11:33 am
Forum: Scripting
Topic: FTP FUNCTION
Replies: 17
Views: 35599

Re: FTP FUNCTION

There is no OpenNETCF.NET.Ftp2, that's just what I re-named a DLL to distinguish it from an older version of that DLL. It is "OpenNETCF.NET.Ftp". Yes, that's possible with C# script. Discussed here: http://social.msdn.microsoft.com/Forums/en-US/csharplanguage/thread/abfdf0bf-b1af-4dca-8c17-fa7108a59...
by Ron L.
Mon Jan 28, 2013 10:17 am
Forum: Scripting
Topic: FTP FUNCTION
Replies: 17
Views: 35599

Re: FTP FUNCTION

by Ron L.
Fri Jan 25, 2013 2:51 pm
Forum: Scripting
Topic: FTP FUNCTION
Replies: 17
Views: 35599

Re: FTP FUNCTION

With some scripting effort in C# it should be possible. Here is an example project to help get you started.
https://beislc.sharefile.com/d/s7d5793abceb49e59
by Ron L.
Thu Jan 24, 2013 5:33 pm
Forum: Application Development FAQ
Topic: Loading Firmware to an iX Panel TxA or TxB
Replies: 1
Views: 15369

Loading Firmware to an iX Panel TxA or TxB

Loading Firmware to an iX Panel TxA or TxB Snap 2013-01-24 at 16.21.59.png Download the file IML_TxB_bX or IML_TxA_bX where X is the version number for the firmware. If the file is a .ZIP, unzip the file before opening. Go to control panel and disable the primary Ethernet card so the PC has only on...
by Ron L.
Mon Jan 21, 2013 3:41 pm
Forum: Scripting
Topic: How to open screen with the name of screen ?
Replies: 13
Views: 39731

Re: How to open screen with the name of screen ?

Came up with some code related to this topic to display a Screen or an Alias of a screen using strings. namespace Neo.ApplicationFramework.Generated { using System.Windows.Forms; using System; using System.Drawing; using Neo.ApplicationFramework.Tools; using Neo.ApplicationFramework.Common.Graphics....
by Ron L.
Fri Jan 11, 2013 9:01 am
Forum: Scripting
Topic: Setting tag if user is logged in.
Replies: 14
Views: 21016

Re: Setting tag if user is logged in.

I don't believe the "ValueOn" action works as it's name indicates. I would try using the "ValueChanged" action instead.
by Ron L.
Fri Jan 04, 2013 2:34 pm
Forum: Scripting FAQ
Topic: Scripting for custom serial or Ethernet communciation.
Replies: 2
Views: 22726

Re: Scripting for custom serial or Ethernet communciation.

Example for receiving strings in the format of "<tag name>=<value>;" on a serial port.