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 TouchToneTommy 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: DannC
  • Order by date
  1. DannC

    API GradientFill

    Thanks for the lines tip i'll try it. Thanks for sharing your knowlege.
  2. DannC

    API GradientFill

    Hi, I've got a little problem using the GradientFill APi function. Everything works fine ( it returns .t. ) but there is no fill area on my form :( (getlasterror = 3 witch makes no sense ??? ). If someone has allready solve this problem please help me. Regards Thanks for sharing your knowlege.
  3. DannC

    How can I sort the records in a table?

    Try to create some indexes eg . Index on fieldname tag yourTagname see MSDN. Thanks for sharing your knowlege.
  4. DannC

    Conversion.... Num to Char.

    lnNumberToTranslate = 12345 lnDivider = 10 Divide your number to 10 depending how big it is. ( while lnNumberToTranslate > 0 ). After a division MOD(lnNumberToTranslate, 10) you gonna get the remainder. if it's your first division then that remainder it's zecimal and so on. Before you made...
  5. DannC

    Maping a network drive with password

    This is the code that I use to do this; hope it helps :) LOCAL loShell, loFolder, lcResource, lcPassword, lcDriveLetter, lcUserName, lcPassword loShell = CREATEOBJECT("Shell.Application") loFolder = loShell.BrowseForFolder(0, "Select directory: ", 0 ) DO CASE CASE...
  6. DannC

    Reports preview ....

    Thanks ! Thanks for sharing your knowlege.
  7. DannC

    Reports preview ....

    Hi, Is there a way to change the preview area of a report trough commands. All I want is to "dock" the report preview in a area of the screen. Thanks.
  8. DannC

    Grid Problem

    ITEM CODE ITEM NAME QUANTITY RATE AMOUNT If you have a grid named grdValues and 5 columns like this grdValues.ItemCode, grdValues.grditemName etc. and 5 txtboxes like grdValues.grdItemCode.txtItemCode, etc. When the grdValues.grdItemCode.txtItemCode loses focus U can fill the next...
  9. DannC

    ActiveX Control

    Create a custom method (ex. Initialise) and ajust your progressBar from there.
  10. DannC

    data enviornment from multiple sources ?

    What do U want is a little bit complicated. I'll sugest U to put in the LOAD method of the form this code WITH THIS .SETALL( "DATABASE",; gcYourDataDir+yourDataBase,; "Cursor" ) .DATAENVIRONMENT.OPENTABLES() ENDWITH Also in the DATAENVIRONMENT set to .f...
  11. DannC

    Happy Holidays

    Dear "Tek - Tips" I wish U a very Happy Holidays.
  12. DannC

    Mschart print

    Hi, I use a MsChart control to obtain some graphs. How can I print them through code. Thanks.
  13. DannC

    PLEASE, SOME HELP !!!!

    As DEDMOD said U can use this files but I suggest to convert them to VFP. To develop a APP for netw use see MDSN (Chapter 17: Programming for Shared Access) or get online an have a look to MS page. Anyway what do U want to do ?
  14. DannC

    Getting the date

    If U want to have the same date on the second computer U can set the proper date on the "Server" and record it into a table and set it on the second one "Station". Hope this helps.
  15. DannC

    Printing a particular page in Report

    Hi Manish, U ca try to use "Range" parameter from report form Hope this help U.
  16. DannC

    chm problem

    Hi, I have created a chm file and i distribute this with a app. The problem is: in run-time on the computer on wich the chm was done on f1 it works fine but on the other computers not. I've runned hhupd.exe, put set help to and the path is correct,the topics are correct but it dows not work. Any...
  17. DannC

    Grid problem

    Thanks
  18. DannC

    Grid problem

    Hi, I have a grid with 4 columns and on the 3 column I do in the Init Method a .removeObject() .addObject("cmdConflict","classConflict") ClassConflict is a commandbutton baseclass with has a property cPicture wich sets the picture of the button. My problem is that i can't...
  19. DannC

    Create a desktop shortcut

    If !file("c:\windows\desktop\Ecostart40.lnk") oShell =CreateObject("Wscript.Shell") If vartype(oShell)=="O" oShellLink = oShell.CreateShortcut("c:\windows\desktop\Ecostart40.lnk") If vartype(oShellLink)=="O" With oShellLink...
  20. DannC

    Challenge ! Can Anyone Solve This One!

    Try with backtracking. It will work, for sure .

Part and Inventory Search

Back
Top