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 SkipVought 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. snehakevin

    Why is this error, when running a cristal report ?

    Dim Report As New CrystalReport7 Dim db As Database Dim rs As Recordset Private Sub Form_Load() Screen.MousePointer = vbHourglass Report.Application.OpenReport ("xxxxxx.rpt") Report.PaperOrientation = crPortrait CRViewer91.ReportSource = Report CRViewer91.ViewReport...
  2. snehakevin

    Can I cut and paste a graph from excel into powerpoint through VB CODE

    I have an application which populates data from acces into a template excel file, which has a graph in it, through VB code. The user copies the graph into a power point slide for his presentation. Can I copy this graph straight into the power point slide with my VB coding? Can anyone help ?
  3. snehakevin

    Opening Access Reports

    which window are you talking about... use Acc.DoCmd.Minimize you can minimize the window....
  4. snehakevin

    Export recordset to Excel file

    You can try this also.....if you want.... 'Code starts Dim a As Object Dim w As Object Dim WSN As Object Dim q As Object Set a = CreateObject("Excel.Application") Set w = a.Workbooks.Add() Set WSN = w.Worksheets(1) WSN.Activate WSN.Range("a1").Select...
  5. snehakevin

    How to zip the file and send mail?

    I am using the following code to send documents through mails..... MAPISession1.LogonUI = True MAPISession1.SignOn MAPMess.SessionID = MAPISession1.SessionID MAPMess.Compose MAPMess.RecipAddress = "mailid@xxxxx.com" MAPMess.ResolveName MAPMess.MsgSubject = "Testing Email&quot...
  6. snehakevin

    Can we create a .PDF file from VB ?

    I already have a pdf driver installed. I want to know how to print an excel file without openning into a pdf format?
  7. snehakevin

    Can we create a .PDF file from VB ?

    I am creating few excel files from VB, the user is interested in having the excel files in .Pdf format. Can we create .pdf files from VB ? If so can anyone help!!! Thank your
  8. snehakevin

    How to add a Process Indicator ?

    I tried all your suggestions but it does not work. I have put your code (ca8msm's code above) in a new form, it works when I click the command button, but it does not work in my procedure of creating the excel sheets. I cant figure out the problem....
  9. snehakevin

    How to add a Process Indicator ?

    Thank u nicsin, I have added the progressbar, how to use it? can you explain little bit....
  10. snehakevin

    How to add a Process Indicator ?

    My application is in VB. One of my option in the application is to create excel files in a required format. The process takes more than 3minutes. I want to show a process bar on the screen. I tried with timer event.. but it is not working or I may not used in the right way.. The code is like...
  11. snehakevin

    How to open a Cristal report in VB?

    Thank you very much...
  12. snehakevin

    How to open a Cristal report in VB?

    I have a Cristal report to be opened in VB. My application runs in a stand alone PC, which has no VB or Cristal report installed. I have copied the .rpt files. How do I open these reports? The data is from MDB. Please help
  13. snehakevin

    How to send Mails from a VB Application?

    I am using a Access DB to create, say 50 Excel files, through a VB Application. I need to send this to 50 people by mail using lotus notes mailer.. Can anyone help
  14. snehakevin

    How to UNLOCK a locked form?

    I added the project in sourcesafe in the same directory, all the forms in the project got locked. Every time I open the project the forms are in locked mode only I could not do any changes.... How to unlock it? Please help.
  15. snehakevin

    How do I Change Font size and color of a cell ?

    Thank you very much...
  16. snehakevin

    How do I Change Font size and color of a cell ?

    I am creating an excel sheet from VB6. This is working fine. I need to change the font size and color of few cells, say sheet heading and column heading... can anyone help..
  17. snehakevin

    How to find if the table exist in my MDB ?

    I am using Visual Basic 6 and my database is in Access. I need to find whether a table exist in the database
  18. snehakevin

    How to find if the table exist in my MDB ?

    In my VB project I read data from different tables as per the user input, I decide the table name from the user input, before my select statement I should know if the table exist in my database. Can anyone get me the command for this? Thanks
  19. snehakevin

    I need a table where all the cells are different sizes

    What is this? Your question is not clear explain further if you need help...
  20. snehakevin

    Excel graph and VB6

    So your graph will take the data from the selected column... it seems you graph has data from only one column... Do your graph in such a way that it takes data from a specific column (not from the data columns)... every time when the user enters the column number copy the data from that column...

Part and Inventory Search

Back
Top