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 Shaun E 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: *

  • Users: laado
  • Order by date
  1. laado

    Error ESCAPE/65533 - Printing Error

    Hello Guys I made some changes to our "Invoicing Program" (written in version 5.2e). Our Invoice program creates and Print Invoices, the change i made was at the end of invoicing i was splitting the invoice based on different PO (Purchase Orders) so from 1 Invoice i was creating "n" Invoices...
  2. laado

    CLIPPER S87 EXE using 100% CPU on XP

    Hi Drago, Have you tried "Dosidle" i have been using this for 3-4 years now....Search for "Dosidle" & if you find "Dosidle.obj" keep this file in app folder and call this function like "Dosidle()" in your main function... Laadi
  3. laado

    Compiling On XP ?

    Griff,Sam Thanks alot for your help, I am able to Compile my clipper apps from XP now.... Griff....you r the best mate!!!! you helped me before (couple of years ago) & now....thanks Laado
  4. laado

    Compiling On XP ?

    Sam Thanks but i still having problems using your way. To set my Variable i use the batch file which is my first postings. Following your way i created rmk & Lnk Files as follows " rmk file .prg.obj: clipper $< /O$@ /n/a/i..\include > ERR.OUT sh001.obj: sh001.prg Sh000.obj: sh000.prg...
  5. laado

    Compiling On XP ?

    Griff I tried Creating a batch file as follows @echo on C:\Clip52\Bin\Clipper %Sh001.prg -m -ustd.ch -oOBJ\%sh001.obj @echo off I got this error message SH001.PRG(30) Warning C1004 Ambiguous reference, assuming memvar: 'REG_ARR' SH001.PRG(32) Warning C1004 Ambiguous reference, assuming...
  6. laado

    Compiling On XP ?

    Guys, Clipper version : 5.2e Blinker 4 I have been doing development on Win 2000 from last 3 years without any trouble. Last week my company gave me new one with "XP" on it and all of a sudden my clipper Prgs will not compile. I spent last 5 hrs looking through past post about this subject...
  7. laado

    Cule.Net

    Guys I am trying work out how good Cule.net is before i buy? Has any one used it? All the info re Cule.net is here http://www.CULEPlace.com According to them it supports all the Known locking issues and supports DBFNTX. Any suggestions, ideas will be appreciated. Laadi
  8. laado

    Getting Date from Another Computer

    Thanks GriffMG,JockMullin,Sboomer for the help. I have managed to work it out the problem. Thanks alot Guys You ROCK !!!!!
  9. laado

    Getting Date from Another Computer

    Griff Thanks for the Reply..yeah semms pretty staright forward... I am at home today(saturday here in australia)..don't have access to any clipper book.. I have changed a bit the function .. i am creating a file..in a shared drive then used ddate := FDate(cFile) But getting a error when...
  10. laado

    Getting Date from Another Computer

    Guys, I have problem with windows 98 Boxes with users changing dates very often. As they also use a Clipper Application for Invoicing it prints wrong dates on the invoices. Can you suggest a way to fix it? Also is there any way to get date() from a different Computer lets say our File...
  11. laado

    Strange

    Hey Guys I am not quite sure how to fix this error. "HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly" I will try...
  12. laado

    Printing ASP.Net Code?

    Hi Guys When i print a ASP.net file, it prints in a dodgy way for example it replace "SYSTEM" with "S/stem"?? same goes with other words. Regards
  13. laado

    Checking for null values

    Siena You can generate Two different Errors by Storing then in different error string as Declare @ErrString as varchar(255) for a error Select @ErrString = 'errors here...' goto err_handler err_handler RAISERROR(@ErrString ,16,1) ..... Just a suggestion If you know you don't...
  14. laado

    Checking for null values

    Hi Siena I hope i understand your Problem properly... Create Procedure AccidentEventPut( @ClientID INT, @OrgCode INT, **Don't Accept Null Values @Empid INT **Don't Accept Null Values ) AS DECLARE @Success TINYINT, @Failure TINYINT SELECT @Success...
  15. laado

    INNER JOINING 3 tables not working

    Hi Steve Try this, SELECT U.NName, C.CommitteeName FROM Users U JOIN (Committee_Members CM JOIN Committees C ON CM.CID = C.CID) ON U.UID = CM.UID WHERE U.UID = varintUID Hope this helps.... Daljinder
  16. laado

    Default value --&gt; NULL

    Hi Guys We do some reports by importing DBF files in Access, The problem i have got is sometimes a value (Numeric)which is read as 0 in Clipper But in Access it becomes Empty, For Example , If i add a new record in our Products.dbf, the onhand values are set as 0 (By Default), I have no...
  17. laado

    Starting Windows Apps From Clipper

    Hi there I tried to run RUN cmd.exe /c &quot;C:\Program Files\Microsoft Office\Office\WINWORD.EXE&quot; iltopenb.doc /mILOPEN but got a error message Bad command or file name, i have never tried to start windows app from Dos Apps, i didn't even knew that we can. Please help, it will solve...
  18. laado

    Compiling Question

    Ian Thanks a lot, Batch file did the trick. Regards
  19. laado

    Compiling Question

    Ian, Thanks a lot i will give it a go Regards
  20. laado

    Compiling Question

    Ian Thanks for your reply,Can you please explain a bit more about how can i add more environment space (i am using W2K) and about batch file. Regards

Part and Inventory Search

Back
Top