Search found 175 matches

by wlederer
Thu Mar 01, 2012 2:45 am
Forum: Scripting
Topic: MSDN library
Replies: 5
Views: 10533

Re: MSDN library

Thank You Ron. Which platform is "for us"? Should we buy subscription?
by wlederer
Wed Feb 29, 2012 11:57 am
Forum: Scripting
Topic: MSDN library
Replies: 5
Views: 10533

MSDN library

I heard many times about MSDN library from Microsoft. Can we get some benefit from use it for iX Developer? Or it is not relevant to HMI programming?
regards, Waldemar
by wlederer
Tue Feb 28, 2012 2:47 am
Forum: Application Development
Topic: Printing DataGrid data to USB printer connected iXT10A
Replies: 31
Views: 51974

Re: Printing DataGrid data to USB printer connected iXT10A

Dear Skylar, thank You for the interesting information. The question is, which commercially available printer (laser, black/white preferred) can be used with the panel T7A? At first, i tried to find out myself. Called to HP technical support and asked them which of their printers support PCL5e langu...
by wlederer
Thu Feb 23, 2012 2:20 am
Forum: Application Development
Topic: Printing DataGrid data to USB printer connected iXT10A
Replies: 31
Views: 51974

Re: Printing DataGrid data to USB printer connected iXT10A

Thank You Skylar. May be, it is possible to add direct a printer driver to Win CE 6.0?
Which applications can we add to iX Panel T7A? Something like Windows (File) Explorer is possible?
by wlederer
Fri Feb 17, 2012 7:05 am
Forum: Application Development
Topic: Printing DataGrid data to USB printer connected iXT10A
Replies: 31
Views: 51974

Re: Printing DataGrid data to USB printer connected iXT10A

The only printer found in our IT department was Brother HL 2035 (laser). In the internet I found a web page where was possible to generate the PPD file for the printer: http://www.openprinting.org/driver/hpijs-pcl5e/ Will it work with WinCE 6.0? Is it possible to use the Brother HL 2035 printer with...
by wlederer
Fri Feb 17, 2012 6:51 am
Forum: Application Development
Topic: TA 150 buzzer
Replies: 2
Views: 9655

Re: TA 150 buzzer

Tried this example. Works. Not clear what is the Queueing button for?
Another question, how the loudness could be controlled?
regards, Waldemar
by wlederer
Wed Feb 15, 2012 9:41 am
Forum: Scripting
Topic: Debugging in Visual Studio 2010 Express
Replies: 13
Views: 28247

Re: Debugging in Visual Studio 2010 Express

Yes, the target is T7A. I am not sure, where it will be stored, probably, on T7A as well.
Thank You, Waldemar
by wlederer
Wed Feb 15, 2012 2:28 am
Forum: Scripting
Topic: Debugging in Visual Studio 2010 Express
Replies: 13
Views: 28247

Re: Debugging in Visual Studio 2010 Express

Sorry, the question not about installation, but which database programm is better for iX Developer applications, SQL server express, Access or something different?
Has anybody related experience?
by wlederer
Tue Feb 14, 2012 5:59 am
Forum: Scripting
Topic: Debugging in Visual Studio 2010 Express
Replies: 13
Views: 28247

Re: Debugging in Visual Studio 2010 Express

I would recommend surrounding any script you write with try/catch blocks to make sure if any errors occur, you handle them and your application doesn't crash. try { //your code here } catch (Exception ex) { MessageBox.Show("error occured") } There's also thousands of C# and Visual Studio tutorials ...