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. alank01

    true type fonts

    windows 2000 CR 8.5 I have certain non true type fonts installed on my machine that show under the control panel fonts however under CR fonts it would appear only true type fonts are listed e.g. Advocra (True Type) shows AdvOCR-A 9,12 does not show in CR AdvOCR-B 12 does not show in CR...
  2. alank01

    stored proc with input para and subreport

    crystal 8.5 sql 2000 stored procedures with input para. main report proc1 with p1,p2,p3 sub report 1 proc2 with p1,p2,p3 sub report 2 proc3 with p1,p2,p3 question: while report is printing can a requery of a stored procedure in a sub report be issued with changed values of...
  3. alank01

    stored proc with para and subreport

    crystal 8.5 sql 2000 stored procedure with para. main report proc1 with p1,p2,p3 sub report 1 proc2 with p1,p2,p3 sub report 2 proc3 with p1,p2,p3 the question is how do you ensure that para sent to the main report are also received by sub reports? currently the report will...
  4. alank01

    select statement question

    thks JHall. i was not too clear on the repeating values. i need repeating values but not the multiplier effect. in my example i have the key value 12 in both tables i would like to see 12 12 null 12 not the multiplier effect of many selects 12 12 12 12 [pc3]
  5. alank01

    select statement question

    thks for effort JHall unfortunately using this select per you suggestion : Select tablea.fkey,Max(tableb.fkey)from tablea left join tableb ON tablea.fkey == tableb.fkey group by tablea.fkey order by tablea.fkey result 11 null 12 12 13 null 14 14 i should clarify that although i used numbers...
  6. alank01

    select statement question

    basic problem is as follows i have three tables, table C has the primary key and unique entries, A and B hold foriegn keys that are many to one into table C table A table B table C f_key f_key p_key sample data data A data B data C 11 12 11 11 12...
  7. alank01

    Microsoft DirectX 8.1 Software Development Kit

    got everything i needed from 1-800-MSPRESS. they were very help full.
  8. alank01

    set relation to

    thanks ian that browse ...for did the trick. i guess i was too focused on the set relation to command.
  9. alank01

    set relation to

    i have a question on set relation. i have as an example a client table and a contacts table (ccontacts). the client field exits in both tables so a simple browse might be. use ccontacts order client use clients in 0 set relation to client into ccontacts set skip to ccontacts && one to many...
  10. alank01

    Microsoft DirectX 8.1 Software Development Kit

    this download is approx 173 meg. (out of my league with 56k). i am interested in ordering a cd from ms but i can't seem to find a number or link at microsoft.com to order this cd. anyone have a link or comment. thks. :-)
  11. alank01

    dataenvironment tidy up

    is there a trick or tip for tidying up the display of tables in the dataenvironment of a form / database container. something similar to arrange icons in windows. the only way i know how to do it is to manually move them around so they are nicely arranged. not a major issue but still gets a...
  12. alank01

    report from a view

    thanks ramani for your response. these are two good tips that i was not really aware of that would be useful for views - NODATAONLOAD=.t. and REQUERY() on the view. basically thats the procedure i would use running a report via sql cursor i.e run query and check for result if _tally greater than...
  13. alank01

    report from a view

    i am a newbie with views and am probably going to ask some very basic questions here. i am more familiar with creating a sql select cursor before running a required report but i have a case were a view seems more appropriate because all the data setup is done in the dataenvironement of the...
  14. alank01

    Big memo field whacks my report

    my understanding of the report header is that it behaves like any other group band that has reprint header on each page checked. with such a large page header you are asking the report writer to reprint the page header before a new page has triggered (i guess a sort of loop). i suggest you...
  15. alank01

    TROUBLE CLOSING PROGRAM

    i believe it may be as simple as issuing the QUIT command. you may want to try the following after THISFORM.RELEASE in your calling program. clear dlls release all extended clear all quit
  16. alank01

    CALC MIN(VAL)...FOR... I need to speed this process up

    just as a suggestion to ramani's tip becuase of the way the min function will work on the ascii field you could leave out the val() function and gain some more optimization from the tag and not have to convert lowseq back to str. eg '00030' will give you 30 in lowseq.
  17. alank01

    NTH select

    you may want to confirm the set deleted environment status if SET DELETED ON you will not return any deleted records and hence get unexpected results with the select criteria. see if these return the same records SET DELETED OFF select * from myfile where !EMTPY(maildate) .and. mod(recno(),2)...
  18. alank01

    Retrieve HTML source from IE

    this article might be a useful starting point. good luck http://www.microsoft.com/mind/defaulttop.asp?page=/mind/0898/dom.htm&nav=/mind/0898/inthisissuecolumns0898.htm
  19. alank01

    Retrieve HTML source from IE

    if you want read it line by line at the command prompt try ? oIE.Document.Body.All(n).InnerHTML n being the line you would like to see. the text would be ? oIE.Document.Body.All(n).InnerText
  20. alank01

    A member object with this name already exists

    thks for yr input. i think the way the class name 'application' was used was by opening up custom.vcx table and changing the memo fields to name='application'. by hacking the vcx table the class name had an association outside of _vfp application before creation and works fine! point taken about...

Part and Inventory Search

Back
Top