TheNovice

Members
  • Posts

    47
  • Joined

  • Last visited

Everything posted by TheNovice

  1. I was able to connect fine using different PC on different network. So it seems some networking and firewall thing. Thanks and Sorry to bother
  2. I am trying to establish MS SQL Server connection to Databse on Microsoft Azure, I am using the same connection string which I normally use to connect to local MS SQL Server DB. Can you have a look and help if I need to change any part of the connection string as it is on Azure Cloud. global string Con_Str = "Driver={SQL Server};Server=abc-xyz.database.pqr.net;Database=SCADA_DB;Uid=UserOne;Pwd=UserPass" global conn= db.OpenEx(Con_Str) Thanks in advance.
  3. Interesting and good to know! I'll keep that in mind now. Thank you so much for your help was banging my head since past 2 days, trying different things. Thanks again!!
  4. Damn, never noticed that, but I had same name previously. Thanks. Also, I have had multiple functions inside the same sequence, and it has worked fine, any tips about naming sequence/function when having multiple function in same sequence? Thanks again.
  5. Hi, I have been using Daqfactory for quite a while now. Are there some changes lately? Today I was creating a simple new file to collect data and push it to sql server, and I noticed I am not able to run even simple function which I use to use previously. So I created a new file added a sequence(TempSeq) created a Temp Function as: Function TempFn() ?"abcd" Private string TempName = "ab" ?TempName EndFunction Apply, Compiled and saved the file.* When I try to run the function using command TempFn()/?TempFn() it say channel or function not found. The above same issue is happening with all my functions I am creating since yesterday. I am pretty much doing the same thing which we use to do always, but seems there is some weird problem since past couple days. Is there anything I am missing? Thanks!
  6. I have a project with multiple modbus channels. I have timings and events for those channels, while I monitor, I can see Tx and Rx for all the modbus ID's but the channel is not reading thus not collecting data, not executing event code as well as the UI component displaying that channel is not getting updated, until I force read it using channel.read('channel_X'). I am facing the same issue with 2 recent project. I am currently using a sequence with While loop to Force read all the channels. Any help would be much appreciated. Thanks!!
  7. Thanks for the info, I'll get back to you in any case we need to do that.
  8. I have a document which says the document license is expired. I want to remove that document licensing, but I don't remember the password for it Is there any way to remove the licensing from the file? As I am not able to edit the file on another PC even after having a developer USB key inserted into the system.
  9. Perfect, Thanks for the quick reply.
  10. Hi, Is there any way we can Thaw and Freeze graph using code. Eg.: component.graph.Freeze() and component.graph.Thaw() Thanks.
  11. I second that, also I think it would be great if we can like literally rotate it 360° and not just vertical or horizontal. Thanks!!
  12. Hi,

    I have a huge application with multiple sequences and functions(sequences).

    Now in the same application I want to add scheduling part.

    Eg: User will select days of week and a time. I want to set a value to a channel when system clock hits the user selected day and time.

    I am planning to do it with a sequence using while loop and waituntil function.

    So, I wanted to know is it possible to run multiple sequences simultaneously in Daqfactory? 

    I have one startup sequence currently, so after adding the scheduling part can I make multiple sequence to run at startup and keep running one in while loop without affecting other operations it is supposed to do?

    Or is there any other efficient way I can perform an action for certain days of a week at a specified time?

    Thanks!