Search found 14 matches
- Thu Jul 09, 2020 12:38 pm
- Forum: Scripting
- Topic: Keyboard keys change property in the editor.
- Replies: 2
- Views: 9701
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...
- Tue Jan 14, 2020 10:45 am
- Forum: Scripting
- Topic: IX Developer IDE AutoComplete - HUH
- Replies: 2
- Views: 4456
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.
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.
- Sat Dec 21, 2019 10:30 pm
- Forum: Scripting
- Topic: IX Developer IDE AutoComplete - HUH
- Replies: 2
- Views: 4456
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.
- Sat Nov 23, 2019 2:16 pm
- Forum: Scripting
- Topic: Writing tag values to a file
- Replies: 19
- Views: 61258
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...
- Wed Jul 31, 2019 4:19 pm
- Forum: Scripting
- Topic: SqlServerCe
- Replies: 1
- Views: 6613
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...
- Tue Jul 02, 2019 12:44 am
- Forum: Scripting
- Topic: Email Issues
- Replies: 1
- Views: 9582
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...
- Tue Jul 02, 2019 12:37 am
- Forum: Scripting
- Topic: NullReferenceException
- Replies: 2
- Views: 5724
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...
- Sat Jun 22, 2019 12:10 pm
- Forum: Scripting
- Topic: NullReferenceException
- Replies: 2
- Views: 5724
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...
- Fri Jun 21, 2019 9:52 am
- Forum: Scripting
- Topic: Global Data Structures
- Replies: 8
- Views: 15581
Re: Global Data Structures
All good now thanks for the help
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.
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.
- Mon Jun 17, 2019 11:54 pm
- Forum: Scripting
- Topic: Global Data Structures
- Replies: 8
- Views: 15581
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. ...