Forum Replies Created
-
AuthorReplies
-
March 18, 2014 at 2:43 pm in reply to: Testing tool and Database admin GUInot working on one Laptop #80155
Thanks for your suggestions, firewall is disabled and tried the client.ini but still same problem. Anitivirus is the same for all computers in hospital so dont think that would be the problem but I will try and disable it
March 14, 2014 at 7:45 pm in reply to: Testing tool and Database admin GUInot working on one Laptop #80152This used to work before, I do have that in the client option.
Any update on 6.0 Documentation being posted
Here is the code that I have been testing with. It searches the string for double or single quotes and sees if they are odd. If they are odd then it appends a single or double quote at the end of the message. The source file is tab delimited, I still have an issue with the modified message
keylget args MSGID mh
set msg [msgget $mh]
set message [split $msg r]
set double [regsub -all ” $message {} ignore]
set single [regsub -all ‘ $message {} ignore]
if {$double%2} {
set db 1
}
if {$single%2} {
set sin 1
}
if {[cequal $db 1] && [cequal $sin 1]} {
set beg [crange $message 0 end-5]
set end [crange $message end-4 end]
set new “$beg$dbl$sing$endr”
msgset $mh $new
} elseif {[cequal $db 1] && ![cequal $sin 1]} {
set beg [crange $message 0 end-5]
set end [crange $message end-4 end]
set new “$beg$dbl$endr”
msgset $mh $new
} elseif {![cequal $db 1] && [cequal $sin 1]} {
set beg [crange $message 0 end-5]
set end [crange $message end-4 end]
set new “$beg$sing$endr”
msgset $mh $new
} else {
}
lappend dispList “CONTINUE $mh”
Yes I am trying to create a TCP thread in Cloverleaf. So the first bottle neck I am having is how do I create the CSR file. We are on Red Hat 5.3.
The plan is to have both side have a signed certificate from Versign or godaddy.
The next problem will be configuring Cloverleaf
It might help to run it through your testing tool with just the variant and see how it is displaying and play with it before you get to the translation The tilde is actually a repeating field identifier not a sub field delimiter. You can set the field to not repeat in the variant
OK the file command worked perfect. Thanks for the help
You should only have the iterate at the group level not at the segment level as well
Is there a way to validate that the folder is created and if not create the folder Charlie, Can you explain why this command did not work for the hour of 00 but works for every other time.
It works fine if I change the hour to 01 intead of 00 Why will this time not work with clock scan 20080816005200
There is a little program called TclTutor that could help you with learning TCL I suggest you buy the book Practical Programming in TCL and TK by Brent Welch. This book is great for learning TCL and a good resource -
AuthorReplies