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 IamaSherpa 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. MitchUK

    Password Protecting A Table

    Hi, don't know whether you have decided on best course of action. there is a 3rd party add-on that encrypts and entire database and cannot be opened (even by vfp) unless the correct password, and unencryption routine is executed. The database remains encrypted, even whilst in use by your...
  2. MitchUK

    Optiongroup1.option1 - images nightmare!

    Jon, in answer (pardoned) 1. Had problems with refreshing forms previously, that was the best way round it as there are many forms in the application but only one or two are in use at any one time. see thread184-49772 2. Now if the entire form is refreshed, doesn't that autromatically refresh...
  3. MitchUK

    Optiongroup1.option1 - images nightmare!

    Have worked out when the buttons work and when they don't. as you can see by the previous messages, I have the disabledpicture, picture properties pointing to a fixed directory for now. when you reassign the locations (i.e. change the name/path/type) it works, then the next time you run the...
  4. MitchUK

    Optiongroup1.option1 - images nightmare!

    RG, Yes, running VFP6.0 sp4, refresh all forms currently used by package after every option "click" using the following : local lnCounter IF _screen.formcount > 0 FOR lnCounter = 1 TO _screen.formcount IF PEMSTATUS(_SCREEN.FORMS[lnCounter], "REFRESH", 5)...
  5. MitchUK

    Optiongroup1.option1 - images nightmare!

    RGBean, I have a "setnavigator" function that, when BOF is reached Thisform.topmode=.t. and therefore, first and prior buttons are disabled (and vice versa for eof). In between records (i.e. >1 !eof) all buttons are enabled. I don't disable the option group. Is it calling this...
  6. MitchUK

    bad index?

    Just created a similar table, enabled data buffering, and used your expression. Added rec's 3000011 0 3000010 5 3000011 0 3000012 2 then opened the work area properties and implemented the index. browser now shows 3000011 0 3000011 0 3000012 2 3000010 5 Looking at this, this is adding them...
  7. MitchUK

    bad index?

    Unsure, but are both fields numberic?? If so does this expression add the numbers together, or concatenate them as a string? does converting them to a string work? GOOD LUCK Have knowledge, lack patience. >:-< MitchBsc@yahoo.co.uk
  8. MitchUK

    Optiongroup1.option1 - images nightmare!

    MitchUK back with another nightmare : >:-< Have &quot;optiongroup&quot; with a selection of buttons &quot;style 1.graphical&quot; (in this case for database navigation). I have set the PICTURE property to &quot;Image1.bmp&quot; and the DISABLED PICTURE to &quot;image2.bmp&quot;. HOWEVER when...
  9. MitchUK

    changing bar prompt at runtime

    Ok here's the answer. Whenever I tried to change the code in &quot;MyMenu.mpr&quot; it wouldn't handle the variable, if I tried using the menu designer, same result ALWAYS CHANGES IT TO TEXT. SO, putting this in the Menu Designer works a treat &quot;+olabel(164)+&quot; This looks in the code...
  10. MitchUK

    changing bar prompt at runtime

    I'm trying to assign a variable to this command DEFINE BAR 1 OF form PROMPT &quot;olabel(164)&quot; variable being olabel(164) Tried olabel(164) =olabel(164) But every time I try it turns it into text, can this be pointed to a variable and what is the syntax (foxpro help is, as usual no...
  11. MitchUK

    Can I change the colour of Option buttons?

    Here, goes. ChrisRChamberlain - no problem. DEDMOD - I usually use images nowadays instead of buttons as they look better from a design point of view, but this package I'm working on was inherited so there would be too much coding involved to change now. Furthermore, I need to change the text...
  12. MitchUK

    Can I change the colour of Option buttons?

    Chris, Nice try but no cigar. That code only changes the text in the button. I want to change to actual colour of the button (currently set to grey (192,192,192 ???) Thanx anyway Have knowledge, lack patience. MitchBsc@yahoo.co.uk
  13. MitchUK

    Can I change the colour of Option buttons?

    I have a number of option buttons that I would like to change the colour of, I have tried changing the backcolor property to no avail and would like some help. Do I need to create a new colorscheme and colorsource and if so, how is it done? Find Help and Online help about as useful as a...
  14. MitchUK

    How do you refresh your entire application?

    weedz THX jobsagoodun
  15. MitchUK

    Encryption of your databases!!!!

    Have just aquired CRYPTOR from XITECH and found it to be easy to use, and quite frankly Brilliant. p.s. I don't work for them! p.p.s. I don't get comission either! Evaluation available from their website (there are several so you won't have a problem finding them yourself)
  16. MitchUK

    How do you refresh your entire application?

    HELP DEADLINE TO MEET, ONE MORE BUG TO FIX!!! APPLICATION.UPDATE or REFRESH FUNCTION REQUIRED TO UPDATE ALL FORMS AND CONTROLS ON SHOW I have an application that uses several forms and even more databases. At the moment the forms update fine for the &quot;skip &amp; skip -1&quot; command but...
  17. MitchUK

    Info from Two Dimensional Array

    if it's a two domensional array, don't you need to reference it with two dimensions!! Secondly, a string // mystring : string; is an array of chars by default (one dimensional) and can be referenced by character alone. Is this any easier? Hope this helps.
  18. MitchUK

    Accessing alternate form methods using form name as variable

    Tomas, I know the use of &amp; is overused in this code, but this is the original code I have &quot;Inherited&quot;, but thanks for the tip. To one and all, thanx for the help!!
  19. MitchUK

    Accessing alternate form methods using form name as variable

    Thanks to Foxdev and Rgbean, who didn't give me the answers but let me know I wasn't barking up the wrong tree. After searching through all of the current threads I got enough pointer to work out the solution to my problem : activate window &amp;mywindow &amp;&amp; grabs the current forms...
  20. MitchUK

    VFP BrainBench beta exam now available

    got your reply, have posted another addition to the thread (MitchUK - multiple forms), sent this so you'd know there was more information for you to look at. Thanx Mitch

Part and Inventory Search

Back
Top