Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. MarkGoldberg

    End program timer

    You can also use the IDLE command
  2. MarkGoldberg

    C7 list box - How do I refresh it?

    The same code as a C6 list box, or a CDDW 1.5 list box for that matter. What are you trying to do?
  3. MarkGoldberg

    Look for a way to print a Dos text file (usually a multi page TIff )

    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...
  4. MarkGoldberg

    Check change

    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...
  5. MarkGoldberg

    change properties of report on runtime

    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...
  6. MarkGoldberg

    Import a tps file to SQL

    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...
  7. MarkGoldberg

    Create a Licence Key

    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...
  8. MarkGoldberg

    Code - How do I save a form and close the window using code?

    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)...
  9. MarkGoldberg

    Keyboard Buffer - How do I flush it out?

    It should've worked, but maybe you're more interested in SetKeyCode(0) HTH, Mark
  10. MarkGoldberg

    OK now i'm realy angry!!!!!

    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
  11. MarkGoldberg

    Report problem

    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...
  12. MarkGoldberg

    Compile problem???

    Could it be a permissions issue on that folder? How are you logged in?
  13. MarkGoldberg

    Browse - Can I change the sort order on the fly?

    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...
  14. MarkGoldberg

    Browse - Can I change the sort order on the fly?

    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...
  15. MarkGoldberg

    Coding Images

    Hi Barryalan, see %cwroot%\examples\HowTo-ABC\Browses\abcbrws.app BrowsePub_Info description = With HOT FIELD, RTF, & Image HTH, Mark Goldberg
  16. MarkGoldberg

    EIP Code - No value in field until entry of full line is complete

    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...
  17. MarkGoldberg

    Code - How do I find a space character in a variable?

    ! 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...
  18. MarkGoldberg

    Rounding - How do I round to the nearest 20.00?

    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...
  19. MarkGoldberg

    regular expressions

    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
  20. MarkGoldberg

    topspeed dbase 3 memo

    Why not address the TPS corruption instead? Have you corrected your Users' OpLock settings? HTH, Mark Goldberg

Part and Inventory Search

Back
Top