Search results

  1. D

    Resolved Error On Letter Only Fill-ins

    Worked like a charm. Thank you so much. :)
  2. D

    Resolved Error On Letter Only Fill-ins

    I need my textboxes to not accept number or special characters but formatting my fill-ins/textboxes to "Allow Letters only" or "Allow Letters and Convert to Caps" gives me these errors: ** Character at position 4 must be a letter. (631) ** Data string ASD does not match format (629) ** The...
  3. D

    Question How To Disable Moving Of Windows Through Dragging?

    Hi. I need my program to not move when clicked and dragged from the title bar. I tried the MOVABLE option, but it only works on widgets. Any help would be appreciated. Thanks.
  4. D

    Question Is Progress 10.1b Compatible With Windows 10?

    Thanks for the responses. I'm quite the one that still uses something even if it's old as long as it's working. But I'm definitely going to upgrade my Progress. Thanks again. :)
  5. D

    Question Is Progress 10.1b Compatible With Windows 10?

    Hi. I recently upgraded to Windows 10. My Progress 10.1B, which perfectly runs on the Windows 8.1, does not work anymore. Is there a compatibility issue? Do I need to install a newer version of Progress?
  6. D

    Some questions in mind

    I see. Thanks for the quick reply! :)
  7. D

    Some questions in mind

    Hi. I have designed an image that I have used as the background in all my programs. It's a mix of some lines and a gradient of green and blue. But I'll be using some fill-ins to output some text in the window. My problem is, the fill-in isn't "transparent". How can I make the fill-in's bgcolor...
  8. D

    Answered Question about free form queries

    Wow, it worked like I wanted it to! Thanks a lot RealHeavyDude. :)
  9. D

    Answered Question about free form queries

    Hi. I am trying to do a free form query for a browse and I've been having a problem. I have joined multiple tables in it and it seems to be working fine, but when one of the table's record is not found, the browse will not display the record even if there are records from the other tables. To...
  10. D

    Round and Truncate functions

    Wow. Great codes guys. But I think what I really needed is what Tom said, the "Ceiling" procedure, which I think Progress doesn't have. I'll try out all your codes with my procedure to check which fit/compute best. Thank you all and God Bless. :)
  11. D

    Round and Truncate functions

    So TRUNCATE just removes the decimal places and retains integer? Hmm. So can I use TRUNCATE to my expressions and then add 1 for the automatic round off?
  12. D

    Round and Truncate functions

    I need help about these two functions. I can't differentiate them. And also, I have this task wherein I need to automatically round off to the nearest ones whenever the digit has a decimal value. Is there a built-in function/procedure for that? I don't think Round and Truncate is correct to use...
  13. D

    Need help in some codes

    Sorry about the first line, I actually erased that already. This code is for a CHOOSE trigger of btnDraw. iLastNum is an integer that I declared to get the total number of entries in the table Names. TixNum(or Ticket Number) is the table field which has a corresponding name that will appear on...
  14. D

    Need help in some codes

    Soory about that. Here's a sample of my code: ASSIGN fiWinner. FOR EACH Names. iLastNum = iLastNum + 1. END. IF btnDraw:LABEL = "Draw" THEN DO: iRandom = STRING(RANDOM(1,iLastNum)). FIND FIRST Names WHERE TixNum = iRandom AND Checker = NO. IF...
  15. D

    Need help in some codes

    Hi. Newbie programmer here. I was assigned to create an electronic raffle program. I created a table where all the entries that can be drawn by the program are saved there. I also created a field where whenever the program draws the entry, it will be marked and will not be able to be drawn again...
  16. D

    Question What's wrong with my code?

    Thanks RealHeavyDude. I really need that LOCK lesson for my other programs. ;)
  17. D

    Question What's wrong with my code?

    Yes, I have tried what you all have said, and it worked. I am now on my testing phase with this code. Thanks for your help guys. :)
  18. D

    Question What's wrong with my code?

    I actually have three procedures. The first one is to create an entry on the LogRest table whenever a user logs into the system. The second one is to block/deny access to the system whenever the procudure sees the user has a LogRest entry. And the third one is this. Sorry for my bad...
  19. D

    Question What's wrong with my code?

    Hi. I'm quite new to Progress programming, so I'm not really familiar with all the codes. I'm trying to figure out what's wrong with this one, can anyone help me? ON 'WINDOW-CLOSE':U OF wMain_SNL.r: DO: FIND CURRENT Users NO-LOCK NO-ERROR. FIND FIRST LogRest WHERE LogRest.Username =...
Top