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

  • Users: Norviking
  • Order by date
  1. Norviking

    deploying my project error!!!

    I dont have a runtime.hlp file. I'm using Visual studio.net 2002 with crystal reports.
  2. Norviking

    deploying my project error!!!

    Hi.. I have just finished a project, and then deployed this to another pc. When runnuing my application it comes up with the following error: Method not found: void crystaldecisions.crystalreports.engine.reportdocument.setparametervalue(System.string, system.object) I guess there is a file i...
  3. Norviking

    Prinint a word document...

    Hi.. How can I at runtime start printing a Word file on my default printer????? Plz help...
  4. Norviking

    get certain value in a string parameter..

    Hi.. If I understand correctly, when I send a parameter to my report, where I have declared a field to be a multiple value, I can send a String Array to that field?? But if I would make me a formula in my report, how can I get a certain value in that string[] that I pass???? My code...
  5. Norviking

    Dataset too big for one page..

    Thanks buddy, You made my day.
  6. Norviking

    Dataset too big for one page..

    Hi.. I have created a dataset which I send to my report at runtime. The problem is that the data included in the dataset is to big to fit in one page in the report. I wonder if it is possible to break this dataset up in the report, and ie. have to coloumns in th details section so that the...
  7. Norviking

    Dataset too big for one page..

    Hi.. I have created a dataset which I send to my report at runtime. The problem is that the data included in the dataset is to big to fit in one page in the report. I wonder if it is possible to break this dataset up in the report, and ie. have to coloumns in th details section so that the...
  8. Norviking

    Making a folder....

    Hi.. How can I at runtime make a folder on my hard drive?? Is it possible??
  9. Norviking

    Parameter fields...

    I made a parameter value called attachment, and made ticked the "Allow multiple values". I then placed the field on my report. In my c# app. string[] String = new String[] {"test1","test2"}; report.SetParameterValue("attachment",String); The report...
  10. Norviking

    Parameter fields...

    Hi... 1: I just added a parameter field to my report. (string). Now I want this parameter.value = to an array of string that I set in my application on runtime. Is it possible??? 2: Is it possible to insert a picture at runtime in my report? |'m using c# and visual.studio.net, crystal report.
  11. Norviking

    Parameter fields..

    I just added a parameter field to my report. (string). Now I want this parameter.value = to an array of string that I set in my application on runtime. Is it possible??? |'m using c# and visual.studio.net, crystal report.
  12. Norviking

    Picture in my report.

    Hi.. I created a reprot that include a picture. Sometimes when i want to export this report, I dont want the picture included, but other times I want this picture to be included. Is it a way to set/delete this picure in my application before I export it?? My app. is written in C#...
  13. Norviking

    Cant read my exported word document..

    Hi.. I'm having problem opening my exported word document. Word comes up with a file conversion box. when i try to open it.. Hers my code.. fullpathname ="c:\\temp\\rammeavtale.doc"; rapporter.Rammeavtale1 ramme = new rapporter.Rammeavtale1()...
  14. Norviking

    Multiple pages in report

    Hi.. I want to generate a report with multiple pages. What I have is a word document(5 pages), which I want to paste into my crystal report. When i Export my report into pdf I want this to include the hole report. I tried to just cut/paste the text from the document into a textbox in my...
  15. Norviking

    How can I a parameter field value in run time??

    Hi. I have just made myself a new report which include a parameter field. When I use my application, i want to set this field to ie. "John Smith". How?? Is it possible to have a report that contains multiple typedatasets? And how can I set the reports.datasource to contain both...
  16. Norviking

    Typed dataset for crystal report

    Hi.. I have populated a typed dataset. The dataset includes 5 columns.I'm trying to use this datset in my report. If I choose to display coloumn 1 and 2, No Problem, but when I tried to display the 3 or 4 or 5, I'm getting a Query Engine Error. Does anyone know what the problem might be?? Col...
  17. Norviking

    Newbie question. grid

    Hi.. In my report I have some data which I have collected from a typed dataset. In the report it is displayed without any lines or any sort of grid. Is it possible to have such a grid without formating the data as a crosstable, or without setting a box object around the data for each value...
  18. Norviking

    report templates....

    In my application, I want to generate a dataset, which i will display in a report. And I want to make this report available to be opened in Word so the layout could be changed without doing it in ie. visual studio.net. Is this possible by using crystal reports?? Is it possible at all??? Plz...
  19. Norviking

    outlook and c#

    In my application I want to be able to send mail with attachments. By using the smptMail object I can add attachments by using a filedialog and then the code: aMessage.Attachments.Add( new MailAttachment(VedleggTxtBox.Text,MailEncoding.Base64)) where the VedleggTxtBox.Text is set by whatever...
  20. Norviking

    outlook attachments....

    Hi.. can anyone tell me how to add an attachment to an outlook object??? this is my code so far... public void addToOutBox(string toValue, string subjectValue, string bodyValue, ArrayList documents) { //creates the MailItem object Outlook._MailItem oMailItem =...

Part and Inventory Search

Back
Top