Search found 14 matches

by dthomas
Thu Jul 09, 2020 12:38 pm
Forum: Scripting
Topic: Keyboard keys change property in the editor.
Replies: 2
Views: 5786

Re: Keyboard keys change property in the editor.

I am using iX Developer 2.40 SP4 and an issue similar to this happens constantly while scripting. Currently it is occurring every few minutes requiring a restart of iX. Basically I lose all navigation within the scripting window with my arrow keys. Sometimes the an arrow key will jump to a different...
by dthomas
Tue Jan 14, 2020 10:45 am
Forum: Scripting
Topic: IX Developer IDE AutoComplete - HUH
Replies: 2
Views: 2930

Re: IX Developer IDE AutoComplete - HUH

Thanks Chris,

I think the real issue is that it is CE. .NET 3.5 does actually have a lot of the libraries accessible, however .NET 3.5 CE does not. Then there are different 3.5 CE dll's that have some libraries and others that do not.
by dthomas
Sat Dec 21, 2019 10:30 pm
Forum: Scripting
Topic: IX Developer IDE AutoComplete - HUH
Replies: 2
Views: 2930

IX Developer IDE AutoComplete - HUH

Kind of getting tired with the auto-complete telling me I have access to libraries that do not exist when I go to Build project.
by dthomas
Sat Nov 23, 2019 2:16 pm
Forum: Scripting
Topic: Writing tag values to a file
Replies: 19
Views: 50998

Re: Writing tag values to a file

I know this is an older thread, however I am running into an issue with trying to use this code - specifically public IEnumerable<T> GetTags<T>() where T:GlobalDataItem { // Gets PropertyInfo array using reflection PropertyInfo[] props = this.GetType().GetProperties(); // Process all PropertyInfo ob...
by dthomas
Wed Jul 31, 2019 4:19 pm
Forum: Scripting
Topic: SqlServerCe
Replies: 1
Views: 3337

SqlServerCe

Just a quick question - I am working modifying a program to use a database instead of my previous solution. For testing sake I have created a sample db - used tools within VS to create a .sdf of the db. I am now trying to see if I can connect to the db within IX Developer. I found online some sample...
by dthomas
Tue Jul 02, 2019 12:44 am
Forum: Scripting
Topic: Email Issues
Replies: 1
Views: 5234

Email Issues

So I am having a rather weird email issue. Testing Email functionality with the Sample script works. I then saved a copy of the sample script and made modifications to it to meet what i am trying to do. Testing my modifications worked as well. I then copied the script and the Alarm distributor setti...
by dthomas
Tue Jul 02, 2019 12:37 am
Forum: Scripting
Topic: NullReferenceException
Replies: 2
Views: 3759

Re: NullReferenceException

I will leave this one alone for now. Is weird because it is throwing a NullException whe i am testing for Null so not sure why that is. If I go to the tags tab I cab build and run and program works fine - so at this point assuming this is a weird glitch in the system. Then again now I am having a pr...
by dthomas
Sat Jun 22, 2019 12:10 pm
Forum: Scripting
Topic: NullReferenceException
Replies: 2
Views: 3759

NullReferenceException

I have two instances where if I try to run the program on specific Screens the program throws a NullReferenceException on an Object - yet if I change to a different screen in IX Developer and run the code it works just fine. The weird one is I am not sure why it is throwing this exception. In the fi...
by dthomas
Fri Jun 21, 2019 9:52 am
Forum: Scripting
Topic: Global Data Structures
Replies: 8
Views: 10808

Re: Global Data Structures

All good now thanks for the help :D

Now I just have to figure out how to change the .NET framework this project is using. 2.40 SP2 from what I read should support at least 4.6.1 and yet right now it is only using 4.0.
by dthomas
Mon Jun 17, 2019 11:54 pm
Forum: Scripting
Topic: Global Data Structures
Replies: 8
Views: 10808

Re: Global Data Structures

Of course after I type this big response I try something else that seems to work. I went back in to Scriptmodule and removed system args from function definition. Then I went back to Confirmation screen and in the hook for Button_Click I just called Scriptmodule.function, and everything built fine. ...