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 dencom on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by MarkGoldberg

  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

Part and Inventory Search

Back
Top