Hi,
Have you tried printing this .TIFF using other interactive tools - to establish a reasonable speed for this task.
I'm asking as I've been using a .TIFF inside of my program - converting it to a texture as a node in a 3D SceneGraph. I was going to save the texture in a blob and use it on...
Note: if you're a hand coder, then you should RTFM for the CALLBACK command which is what the client side Trigger relies upon.
Basically every file driver command goes through your code, so you can alter it's behavior.
A common head scratcher has to do with with INSERTS, when you have an...
Roberto,
You need to understand that field equates (FEQs) are nothing more than numbers.
The syntax for FEQs for DIMensioned USE variables, use an underscore for each dimension of the array.
For example:
estring[5] becomes ?estring_5
OtherArray[1,2] becomes ?OtherArray_1_2
But for purposes...
Welcome Nionios,
You wrote: "This is my first post and I am happy cause after a long search on the web, I found at last posts, about clarion/topspeed database."
Clarion has many strong online communities.
Here are a couple...
newsgroups: comp.lang.clarion
newsgroups: news.softvelocity.com...
The question becomes, what are you using the Licence Key for?
Assuming it's for some form of branding / copy protection. I suggest that you take a peek at Armadillo. It's a packer/encryptor with many built in features for controlling access to the entire program or even modules.
I noticed in...
I wonder if you're running this code inside of an EVENT:ACCEPTED portion of the logic.
In which case, surround it with:
IF 0{prop:AcceptedAll}=FALSE
If TranDet:SellPrice < 0 |
Then
TranDet:DiscountPercent = 0 - TranDet:SellPrice\
!etc.
!etc.
!etc.
POST(EVENT:Accepted, ?OK)...
Hi Grube,
If it's not a permissions issue,
then maybe it's a template issue.
Quick test, can you reproduce the problem when working on one of the shipping example applications?
like %cwrtoot%\examples\school\SCHOOL.APP
HTH,
Mark Goldberg
Grube,
I handle this by HIDE()/UNHIDE()
IOW, I have one page header, but I alter it at runtime via:
Report$?FirstPageHeaderGroup{prop:Hide}=TRUE
Report$?OtherPageHeaderGroup{prop:Hide}=FALSE
It makes for some challenges when working the report formatter, since I hand code, I just cut/paste one...
Hi Emad,
You forgot one line of code
!Your Code
!------------
Clear (CUS:Record)
Set (CUS:KeyPhone, CUS:KeyPhone)
Next (Customers)
!Revised Code
!------------
Clear (CUS:Record)
!vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
CUS:MainNumber = LocatorValue
!--- note: I'm guessing about the...
Hi Emad,
I spent a LITTLE time researching this.
Apparently CLASS(SortHeaderClassType) comes into play.
A quick search shows that the code for the class is in %cwroot%\libsrc\brwext.inc & .clw
In the generated code for the example: in abcbrws.app's BrowseEmpColSort I see a derived method for...
Hi Emad,
Essentially your code is firing too soon, you're checking a value in a browse, my guess is that that the browse hasn't been refreshed yet to reflect your change.
I think you want to find an embed, which is later on in the logic flow. Either that or change the variable you're looking...
! All of the following are equivalent.
IF INSTRING(' ', sVar, 1, 1)
IF INSTRING(' ', sVar)
IF INSTRING('<32>', sVar)
If you need to test for multiple characters, you might be interested in the results of an old competition for the most efficient code...
Emad,
If you wish to share this procedure amongst multiple APPs (and/or PRJs) then go back and read my posting in this thread dated [14 Mar 07 11:06].
Unless you're using the templates to actually generate code, then I would NOT recommend a Selective TXA Export / Import. As this creates a...
You could hack your procedure so that if your passed in regular expression started with a special symbol, say a '~', then you alter the logic to say NOT MATCH vs. MATCH
I know it's a hack, but it might be the cleanest solution.
HTH,
Mark
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.