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!

Recent content by 2good2btru

  1. 2good2btru

    Supress page as per subreport output

    Hi, I am using Crystal Report 8.5 I have one group in the main report and in the detail section i have a subreport. I will have only one record for the group and am printing the subreport based on that record. Further I am printing each detail record in the main report in a new page. Am also...
  2. 2good2btru

    Multiple receipients in VB Mail

    u know the best part...... if i do it like .. .RecipAddress = "person1@add1.com; person2@add2.com" and the rest of the params and then say Send True The mail thing opens up rite!, then i try clicking on send , it doesnt send it, tries to search for the whole string in the address...
  3. 2good2btru

    Multiple receipients in VB Mail

    I tried ur solution ted, but i am getting an error... No Transport service was provided for the recipients Though the same is working fine for single Recipient...
  4. 2good2btru

    Multiple receipients in VB Mail

    I tried ur solution ted, but i am getting an error... "No Transport service was provided for the recipients" Though the same is working fine for single Recipient...
  5. 2good2btru

    Multiple receipients in VB Mail

    I am using the MAPI controls for sending mail through code.... Problem is I want to send these mails to multiple clients.... I tried seperating the client address by a ';', It didnt work, then i tried enclosing the address within a <>... eg..<add1@aa.com>;<add2@aa.com>, It send the mail to...
  6. 2good2btru

    Dynamic Datawindow

    Nice logic....... Theres another logic which I tried,.. looping thru the array which Object.datawindow.Objects returns....... colname_t signifies the header text and the rest are all columns..... so i get all the columns and then as u specified.....coltype gives me the datatype..... But have to...
  7. 2good2btru

    Dynamic Datawindow

    hi If i get a reference to a datawindow.....Can i dynamically find out its columns and the datatype each is holding......
  8. 2good2btru

    Edit Mask Time Format

    hi I am trying to display time in the format h:mm tt ie, 8.30 PM.... 12.00 AM etc... I tried giving the timemask as h:mm tt , but still it isnt working...... Any suggestions..... One workaround is changing the mask to stringmask! dynamically and set it appropriately... the string formatting...
  9. 2good2btru

    Windows Open

    Read help on the opensheet function the second last param is the menu index which would display ur window.......add a menu window in ur menu and give the id of the menu to this param in opensheet() opensheet(window_name,parent_window,menu_id,Original!) hope this helps ....
  10. 2good2btru

    Open &amp; activevate an exe from VB

    Have you tried the window API CreateProcess This not only runs the executable from ur code, also allows u control on the executable, i.e u can end the running process at any time.... which is not possible by shell command.... hope this helps.....
  11. 2good2btru

    'Typecasting' to menu

    hi prob solved i attached the menu object to the treeview item , declared a menu type variable and assigned the data to this variable. When the user double-clicked the item i assigned the object to the variable and called its event clicked! the solution was simpler than i thought.....
  12. 2good2btru

    'Typecasting' to menu

    I have converted one of my main menu item which had about 200 submenus into a treeview, the idea is to open the window which opened on the click of the menu item on the click of the treeview item, i am storing the menu item name as the treeviewitem data... now i can easily trace back the entire...
  13. 2good2btru

    Crystal RDC with stored procedure recordset

    i am developing a scheduler which would mail reports to clients i am using RDC 7 with VB6, i am taking all the records available for all the clients and am preparing a report which would contain details of them all. i am using a clientside, static type recordset, and attaching this recordset to...
  14. 2good2btru

    Exporting Reports Dialog

    I am using the Report Designer Component to generate reports....Can i disable the exporting reports dialog window which popsup when i export the report I dont mean the initial exporting option window...but the progress indication window when i export my reports... Can i disable it....
  15. 2good2btru

    Hyperlinks in Report

    can i put hyperlinks in the report

Part and Inventory Search

Back
Top