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

  1. beedubau

    RE: Inno compiler

    I was seeing the period '.' next to the icon on the title bar but hadn't worked out where it was coming from =duh! BeeDub
  2. beedubau

    RE: Inno compiler

    Hi Folks, I found a period in the caption of my main form. When I replaced that with the name of my app the problem was solved - phew! Thank you very much. BeeDub
  3. beedubau

    RE: Inno compiler

    Well Mike I said " I fail to get the program name on the taskbar icon " I see the icon with the line under it showing the app is running but no program name that I see on all other icons. Thanks Mike BeeDub
  4. beedubau

    RE: Inno compiler

    I have been using Inno for a number of years. Now in my latest usage I fail to get the program name on the taskbar icon when my VFP program is running. I've never experienced this before and don't know where to look. Can anyone help Beedub
  5. beedubau

    similar Hand coded forms

    Mike, Thanks for that. Sorry - when I said 'I have the class defined in one of the forms - is this correct?' I meant ' in one of the 7 prg files' I had looked at the Help but wasn't aware that it was generic - so I'll go back and have another look. Regards Bryan
  6. beedubau

    similar Hand coded forms

    Hi Mike, Yes I am coding it in a PRG file. I have defined a class containing the buttons as you suggest. I am unclear of your instruction <From now on, in your form-definition code, just add the new class,> I have the class defined in one of the forms - is this correct? At what point will...
  7. beedubau

    similar Hand coded forms

    THanks Mike, I'll give it a go - this is a new step for me. Regards Bryan
  8. beedubau

    similar Hand coded forms

    I have a number of similar forms - the only differences are the composition of a grid and a label caption. Each form has 7 identical buttons coded as this example ADD OBJECT cmdexit AS COMMANDBUTTON WITH ; TOP = 300 + 450, ; LEFT = 400 + 650, ; HEIGHT = 27, ; WIDTH = 84, ; FONTBOLD...
  9. beedubau

    limitations of getfile()

    With chr length of 254 it seems difficult to allow a user to see and select ANY extensions that may be pertinent. eg GETFILE("JPG","BMP","GIF","TIF","PCX","PNG","Image Files") isn't allowed. I need to allow Audio files Video files as well in a separate getfile() and the same thing occurs...
  10. beedubau

    form not releasing

    Hi Mike, Thanks for your reply. I have tried several things. 1 I made CONTROLBOX = .T. and when the form was presented the X closed it OK. 2 I removed the USE editing_ after the make_repl procedure and removed the release(). 3 I added DO domygrid which runs (reruns)the grid on Form1...
  11. beedubau

    form not releasing

    Mike, I hope this isn't too long! ******************************************************************* *** Name.....: browse_replacement *** Function.: Show possible replacement exhibits - non image *** Called From: getfiles2...
  12. beedubau

    form not releasing

    Mike, Thanks for that. I was simply trying as many ways of addressing the form that were at all possible to try and close it. In the debugger I see my oform object set to NULL after the first thisform.release() but it still remains on screen. It is sitting over Form 2 produced from the...
  13. beedubau

    form not releasing

    Andy, I am having similar problems. To close the form I am trying USE the cursor - used in a grid on the form - works - grid dissappears. USE a currently OPEN table which is modified during a procedure in a grid button.click on my form. thisform.RELEASE thisform.DESTROY AS you say program...
  14. beedubau

    Grid Row and column coloring

    Mike, Thanks for that. Trying both before and after the line THIS.SETALL("dynamicbackcolor","IIF(MOD(recno(), 2) = 0, RGB(192,192,192), RGB(255,255,255))") I find I can only have either grey or blue or on a particular cell...? Can I put a bold capital 'P' in every column2 cell somehow...
  15. beedubau

    Grid Row and column coloring

    I have hand coded grid on a form. I have a textbox control in Column 2 I want to use both alternate rows in grey and a particular column in another constant colour incolumn 2. THIS.SETALL("dynamicbackcolor","IIF(MOD(recno(), 2) = 0, RGB(192,192,192), RGB(255,255,255))")...
  16. beedubau

    screen resolution

    I was given the following code some years ago -you may be able to modify it. CASE _SCREEN.WIDTH > 1000 AND _SCREEN.WIDTH < 1100 && 1024x768 DEFINE WINDOW MainWind FROM -1.5,0 TO 43.5,114 ; FONT 'COURIER NEW',15; ICON FILE 'SALONTEC.ICO' ; NOCLOSE...
  17. beedubau

    Finding drive size

    Hi Mike, Thanks again. I used oSize = TRANSFORM(oDrive.TotalSize, "999999999999") so I could do my maths later I now get 250048479232 which is correct. Regards Bryan
  18. beedubau

    Finding drive size

    I am using oFSO = CREATEOBJ('Scripting.FileSystemObject') oDrive = oFSO.GetDrive(CHR(I)+":") oSize = TRANSFORM(oDrive.TotalSize) to find drive sizes ( with some further processing to get say 35.6 GB. The value of oSize for my 250GB drive is **********.********* Is there any way to get...
  19. beedubau

    Thumbnail generator

    Hello Grif, Yes I have. I have a number of problems with it as I am trying to use more features than you. They are currently revising their code to better accomplish some of the advertised features. One other problem I have is using the control on a 'background' invisible form to gather image...
  20. beedubau

    Thumbnail generator

    Griff, Have you had any problems with ImageViewer? Regards Bryan

Part and Inventory Search

Back
Top