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

    How to use Validate Record embeds (Range Checking or Filter Checking)

    Hello, The if condition returning record:filtered will filter out the corresponding record. The snippet below shows where about to put your condition. In short returning a record:fitered will filter out the record in process. Best Regards Samir BRW1::RecordStatus BYTE,AUTO ...
  2. samirss56

    Memo in List box

    Hi Steve, The second browse is a class named something like "Brw2". This class have a view which is referenced as "Brw2.View". It has also a queue which is referenced as "Brw2.Q". The Browse view "Brw2.View" is based on a primary file which is referenced from the dictionary. In code, it...
  3. samirss56

    Memo in List box

    Hello Steve, Populate the Note on the window using a text rather than an entry control to allow multi-line display of the data. This can be done by changing the control type of the note from the dictionary. To synchronize the display with the corresponding line from the second browse...
  4. samirss56

    Memo in List box

    Hello, I think the Browse Grid will do the job. Sameer
  5. samirss56

    Agenda with Clarion

    Hi, Check Capesoft HotDates. It may help... Sameer
  6. samirss56

    How to close Login window after Main procedure is displayed?

    Hello, Create global variables that will save the thread id of your procedures. e.g. login_threadID = thread() ! inside the login procedure. later on from any where post a close event to the specified thread. e.g post(event:closeWindow,0,login_threadID). This will close the target procedure...
  7. samirss56

    Use Windows DLL in Clarion

    Hello, The following link may be helpful. http://www.icetips.com/showarticle.php?articleid=416 Sameer
  8. samirss56

    CreateIOCompletionPort

    Hi, Does anybody know how to use CreateIOCompletionPort and GetQueuedCompletionStatus in Clarion ? Any help will be appreciated... Sameer
  9. samirss56

    running a procedure who's memory address and prototype are known

    Hi, I have come across a situation where an MS procedure could be loaded using a standard call to a win32 dll and returning the memory address of the specified procedure. Is it possible to call the specified procedure using its memory address and prototype. Here is the equivalent in C: void...

Part and Inventory Search

Back
Top