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

  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

    Displaying picture in Crystal Reports from VB Form

    examples: http://support.crystaldecisions.com/communityCS/FilesAndUpdates/cr8_vb_rdc_loadpic.exe.asp http://support.crystaldecisions.com/communityCS/FilesAndUpdates/scr8_vb_rdc_changeimages.exe.asp
  4. bartvb

    combo box "dropup" event

    (make sure the sorted property is true) Run the example above: click on the arrow of the combo box and press "def" ---------------------------------------- Add the following code and do the same => you will notice the difference... Private Sub Combo1_Click() Combo1.Font =...
  5. 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...
  6. bartvb

    ADO stored procedure question

    Yes, perhaps that is the only solution Perhaps some more explanation of the situation. I must make 15 reports in vb which all select different fields from the database, but all have the same where clause where blabla like parameter1 ... abce like parameter20 (20 times like in where...
  7. 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...
  8. 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
  9. bartvb

    too many records make my subreport crash

    Thanks for the tip, checked it, but i haven't found the problem. It seems that there is somehow a maximum number of subreports possible ?! Because when i first do some other actions, it doesn't crash always on the same place. i'll try to create the report without subreport... Happy new year...
  10. 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...
  11. bartvb

    CRX variables in vb

    Sorry, found the solution. I'm really sorry
  12. 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 !
  13. bartvb

    drilling down on group through vb

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

    problem with string which get longer

    Yes... and like i said, a whole page is large enough for the word "Hellooo"
  15. 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...
  16. 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...
  17. bartvb

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

    Sorry... Indeed, i'm talking about DETAIL a, DETAIL b, DETAIL c Now CR prints a1 * b1 * c1 * a2 * b2 * c2 * a3 * b3 * c3 By sorting the records i can accomplish for examola a3 * b3 * c3 * a1 * b1 * c1 * a2 * b2 * c3 what i would like to have is the following => a1 * a2 * a3 * b1 * b2 * b3 *...
  18. 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
  19. bartvb

    results of query in one row ?!

    Yep, your remarks are correct !! (I must say I didn't think of that at first...) But in this case, if there are more than three items, (which only occurs 1/12000) there's no need to mention the fourth one. But, thanks for your remarks!!

Part and Inventory Search

Back
Top