Search results for query: *

  1. R

    images in dataset

    Thanks for the help. I finally got it working. It was my mistake. At first when I created the dataset object, the image column I set to System.Byte datatype which was wrong. Later on I changed it to System.Byte() but I forgot to drag it to the report document after verifying the database...
  2. R

    images in dataset

    Thanks for the reply guys, I appreciate it. Tom, I found the exact same example you posted in the link but I cant get the image to display. I created a dataset with a field as System.Byte as the datatype and dragged the field into the Crystal report but the control that was created in the...
  3. R

    images in dataset

    Hi, I could use some help regarding putting images in a dataset. I'm developing a windows application that accesses an sql server database in another server, an sql server 2000 database. A table, tblProducts, contains a field called ProdImage with type VarChar. ProdImage contains the path of...
  4. R

    crystal report datasource...

    In VB .NET 2003 when I make a crystal report and define a data source in the field explorer, I just browse for the database and select the tables... when I install the application in another computer, everything runs fine... Now im using VB 2005 and I do exactly the same thing when making a...
  5. R

    Crystal report question

    I made a subreport for the InvoiceItems table and linked the common field (InvoiceNumber) and I got what I want... Im also going to try DavidT suggestion, it might come useful in the future with larger reports. Thanks guys for the help... really thank you... This forum thing is great!!
  6. R

    SQL query help...

    Oh thanks I'll try that. I did that but I missed out the GROUP BY part... thanks alot.
  7. R

    SQL query help...

    Ok.. I have a Items table with the following fields: ProductCode Value The ProductCode is not unique and multiple entries of the same product code is allowable. Now I need, using an sql statement, to display only distinct ProductCode but also the sum Value. I know how to display distinct...
  8. R

    Crystal report question

    So far I've done simple reports using crystal reports with a repeating section and all. Now I need to make a report that has two repeating sections with data taken from two tables, they are related of course-1 to many. First table is Invoice table and second table is InvoiceItems. The Invoice...
  9. R

    Highlighting rows in datagrid

    Hi I have a question and its probably very simple, but I just can't seem to get it. I need to highlight certain rows in a datagrid programmatically. I'm using Visual Basic 2005. Please help. Thanks
  10. R

    copy file + progress bar

    Hi guys... I want to copy a file from one folder to another but I want a progress bar to show the progress of the transfer. Im using VB .NET 2003. Can anyone help me with a link or sample code. Thanks.
  11. R

    image from DB to Crystal reports

    I have an access database with an OLE Object field where I store images of employees. How do I display the images from the DB in crystal report. I've never done this before so I just tried dragging the image field to the crystal report like I would with other fields... but its not showing in...
  12. R

    ASP and RTF

    I have an access database and a field in it that stores rtf code. I'm using dreamweaver to make a website that would display my database on a webpage but when it displays the filed containing the Rich text format code, it only displays the rtf code... is there another textarea or a way to get...
  13. R

    Font Style

    I want to be able to apply more than one font style (eg Italics and Bold, not just Italics). I need to be able to do it to selected text in a rich text box. RichTextBox1.SelectionFont = New Font("Arial", 12, FontStyle.Italic) I use the above code to apply the font style but how can I add do...
  14. R

    Font list

    Can anyone help me with putting a list of all available fonts into a combo box. And if possible each font name in the combo box is also in the font style that it represents... like wat you see in the font list in MS Word. Basically I just want to load the font list into a combo box... Thanks...
  15. R

    saving/retrieving document to database

    I made a similar post but I need help again... I'm trying to save a word document into an access database (to the OLE Object field) and then retrieve it and open it again. I used a code I got for saving images to a database to save the Word document into the database: Dim da As New...
  16. R

    Save/retrieve file from DB

    Thanks David... It was me in that thread, I was asking the question of what to do if I want to save an rtf into database. He told me of what to do but then I realized I don't know how to do it...
  17. R

    Save/retrieve file from DB

    I want to save a formatted text from a rich text box directly to a OLE Object field (Access database). Can anyone help me with this? How do I directly save the formatted text in a rich text box directly to the OLE Object field in the database and then how do I retrieve it and display it...
  18. R

    Saving Rich Text box in DB...

    thanks Oh ok... Thanks alot, I really appreciate it. Just what I needed.
  19. R

    Saving Rich Text box in DB...

    If I want to save the contents of a rich text box to a database, what type of field should it be saved in? I'm using an Access database. I don't think the text field would be sufficient cuz that only saves in text format right... How about the Memo field type, would that be ok? I'm using a...
  20. R

    rich text box

    Oh ok... thanks alot for the tip
Back
Top