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

  • Users: GlynW
  • Order by date
  1. GlynW

    running query on existing tquery arghhhh

    I'm having (i think) a syntax Referencing problem when trying to run a query on 1 table and 1 existing tquery. The problem is I want to run the tquery linking an ordinary mytable.db to a query I've already created using a TQuery. Example: //**** THE FIRST QUERY ****** strSQL :=...
  2. GlynW

    Explorer-File-Page Setup-Margin properties

    Im trying to print Laser address labels from my ASP Database. Getting the data and everything is cool.. The problem is setting the printer page margins. What I need to know is how can I in ASP/VBScript set Explorers Page Setup, Margin Width properties. If I can set the margin, I can fit my...
  3. GlynW

    Fading Images, problem in netscape

    Doesn't seem to work in Netscape 6.2 I think Netscape lost a lot of cool code when they rewrote the browser. decided to go with the script standard with no exceptions. (shoot self in foot). I'm actually looking for similar code that will work in netscape/ mozilla/ opera etc, so if anyone has...
  4. GlynW

    Date Display

    Being in the UK I have exactly the same problem with the date formatting displaying as mm/dd/yy even though the machines and the server are all set to british date format... Did you find a better way of doing this rather than the huge code that guy posted? Is there a ... "Make Microsoft...
  5. GlynW

    MDI Child WindowState in a Right State!

    WORKED IT OUT! ============== I've posted this for anyone else who has the problem I described above and does a search in TekTips.. The problem was solved by making sure that all MDI Children are set to WindowState wsNormal, and then Maximize in code when creating the instance, this way they...
  6. GlynW

    MDI Child WindowState in a Right State!

    Thanks for the advise, but i don't agree... The users can resize the windows if they want to, I just want all the windows to default to maximized, and stay maximized unless the |-|_|x| buttons have been pressed. There are a lot of Applications that work this way.. Sage Line50 Accounts (one that...
  7. GlynW

    MDI Child WindowState in a Right State!

    I have a MDI form with lots of child windows which are created from a toolbar on the mdi parent.. no problem.. I want all the MDI children to open maximized, and always stay maximized, and this is becoming a bit of a problem... If I close one of the children, all the others all revert to a...
  8. GlynW

    DBLookupComboBox Column Widths

    Hi Frank Just Thought Id let you know your not alone... I have a similar problem You could link your DBLookup to a SQL of the table (with just the relevant fields) rather than the table itself. The column widths seem to default to the field sizes that your columns are allocated to.. This is...
  9. GlynW

    Filter (TTable) - Partial String compare

    I tried what you said, and the program compiles and runs but when the filter is activated it comes up with the message 'Operation Not Applicable'. It doesn't seem to like the LIKE command inside the filter (no pun intended!) Is there something else going wrong?
  10. GlynW

    Filter (TTable) - Partial String compare

    You'll have to forgive me, I new to Delphi, but have been a programmer in other languages for years. I am using the filter property to filter the records depending on text entered into an edit box. The problem I am having is as follows: I can only get results for strings that have a partial...
  11. GlynW

    Javascript Pixel Color Finder

    Does anyone know a function that allows you to pass an X,Y pixel co-ords and then the function returns the Color(in any format, #FF00FF, RGB, etc) of the specified pixel. Cheers Glyn
  12. GlynW

    Challenge ! Can Anyone Solve This One!

    ALL STOP!!!!!! rgbean (Programmer) was an absolute star, and sent me example of code what would help me out, and it works a treat! Thanks everyone for your help :) I am a happy man! Cheers Glyn
  13. GlynW

    Brain Teaser! Can anyone sort this out?

    Your an absolute star matey... If you live anywhere near the south west of UK i'd buy you a drink for that. Thanks You've been very helpful Glyn
  14. GlynW

    Challenge ! Can Anyone Solve This One!

    Cheers for your ideas, but I'm still having problems Shanachie, your right it will be a nightmare, but In reality the program will only deal with between 2 and 5 records and no more, anything above five records I would supress and display a message. This is what I have so far... If anyone...
  15. GlynW

    Brain Teaser! Can anyone sort this out?

    I need to write a fox prog to display every possible combination of stored records in a table possible. The trick is to show every combination without duplicating or missing combinations. for example: Cursor BOB Rec1 A Rec2 B Rec3 C Rec4 D The result should be 15 combinations (I think!)...
  16. GlynW

    Challenge ! Can Anyone Solve This One!

    I need to write a fox prog to display every possible combination of stored records in a table possible. The trick is to show every combination without duplicating or missing combinations. for example: Cursor BOB Rec1 A Rec2 B Rec3 C Rec4 D The result should be 15 combinations (I think!)...
  17. GlynW

    Null Strings

    I write software in many languages, and am just getting to grips with Java and Java Script. I know all the programming concepts, but it's just finding the matching keywords. I want to know how to tell if a string is empty: I've tried: if (request.company_type.length > 1){ which is fine unless...
  18. GlynW

    Image Color masking... HELP!

    I found the answer myself, so I've posted it if anyone else needed to know.... Cheers Me! Using Picture Masks =================== Often, a .bmp picture contains white space you don’t want to appear on your controls. A white border around an irregularly shaped image could make your control...
  19. GlynW

    VFP equivalent of RETURN?

    Whoops... I missed out the ELSE's doh! they should be the following IF ConditionN() .AND. VarLastConditionPassed ELSE VarLastConditionPassed = .F. ENDIF ...... When I said the 'condition check to a new function' I ment the condition code. so you will still be left with your. IF...
  20. GlynW

    VFP equivalent of RETURN?

    How about...... VarLastConditionPassed = .F. IF Condition1() VarLastConditionPassed = .T. ENDIF IF Condition2() .AND. VarLastConditionPassed VarLastConditionPassed = .T. ENDIF IF Condition3() .AND. VarLastConditionPassed VarLastConditionPassed = .T. ENDIF IF Condition4()...

Part and Inventory Search

Back
Top