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 bkrike 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: bartvb
  • Content: Threads
  • Order by date
  1. bartvb

    Object server is stopping when OLE service contacts it

    When the COM+ dll does not start automatically through a client activation (automation error on the client) I try to start it manually through the "component services" of the "control panel". But then I get the following error => "An error occured while processing the...
  2. bartvb

    report.papersource = 259 ??

    when i read the report.papersource (hp 4050) value I get 257 for tray 1, 259 for tray 2 and 15 for automatic selection. How come, because the normal values are: crPRBinAuto 7 crPRBinCassette 14 crPRBinEnvelope 5 crPRBinEnvManual 6 crPRBinFormSource 15 crPRBinLargeCapacity 11 crPRBinLargeFmt...
  3. bartvb

    combo box "dropup" event

    I made the following : I change the font in a combo box when the users "dropdowns" to "courrier". (because all the letters have the same width) But i want to change it again to the normal font when the user selects an item. (i can't place it in the click event because...
  4. bartvb

    ADO stored procedure question

    ADO stored procedure question I've already called a stored procedure with parameters and so on. Now I have the following question: Is it possible to give a recordset as input parameter (REF CURSOR) to a stored procedure? Because i must select some data for a lot of id's (not always the same...
  5. bartvb

    textbox validate event

    Is there a way to find out that the source of a textbox validate event is the => Tab key => mouse click Thank you, Bart
  6. bartvb

    too many records make my subreport crash

    i made a report with a subreport. * if i run that report with 20 records it works normal. * But if i retreive 50 records and push the next button it crashes after 40 reports and i get the error message "not supported" * if i delete the subreport and run the report without...
  7. bartvb

    CRX variables in vb

    In the examples i find a lot of "CRX..." variable declarations in visual basic. But I cannot declare those. Is there a special reference or so i must set ?! Thank you !
  8. bartvb

    drilling down on group through vb

    Is it possible to show all group's drilled down simly using visual basic code ?? Thanx, Bart
  9. bartvb

    problem with string which get longer

    I use a stored procedure => for example select 'Hello' text1, personal.id text2 from personal where personal.name = 'Jos' and i placed those fields in a text object (width= whole page => large enough) And that works ... When i change 'Hello' in the stored procedure to 'Hell' is still works...
  10. bartvb

    changing printer

    I've tried to change the printer settings through visual basic ***************************************** Report.PrinterSetup (0) Report.PaperSource = 259 Call Report.PrintOut(false, 1, True, 1, 1) -- this prints the report from the correct tray, but -- the user gets a popup window that i don't...
  11. bartvb

    can CR print first all the section a's then section b' ...

    I have a report with three sections: section a, section b, section c and let's say 3 elements. Now CR prints a1 * b1 * c1 * a2 * b2 * c2 * a3 * b3 * c3 what i would like to have is the following => a1 * a2 * a3 * b1 * b2 * b3 * c1 * c2 * c3 Thanks, Bart
  12. bartvb

    results of query in one row ?!

    I have a table who looks like this ****A**** ****B**** ****C**** 20005454 abc 01 20005454 aqr 02 20005445 q 01 20001212 b1 01 20001212 baq 02 20001212 rst 03 i want a query that gives the following result (but each time in one row !!!!!!) for...
  13. bartvb

    problem accessing formula field with visual basic

    What i do get is the name: (debugging mode) ?report.FormulaFields.Item(1).Name {@amountofdata} So the formula field excists ! What doesn't work ?report.FormulaFields.Item(1).value => gives empty value although when i show the report on the screen a value is printed !? Does...
  14. bartvb

    stored procedure

    Is it possible that you can only have one parameter in a stored procedure you whish to call from crystal reports?? Because test2 is selectable from the stored procedures and test is NOT ?? Thanx, Bart ************************************************** PROCEDURE TEST2 (QUERY OUT REFTYPE...

Part and Inventory Search

Back
Top