Search results for query: *

  1. N

    background color of datagrid

    can someone please tell ,me how can i change the bg color of dtagrid in my web form. thanks a lot for your time and effort.
  2. N

    Downloading file from web server

    i am trying to download a file from internet using webclient class. Dim myWebclient As New WebClient myWebclient.DownloadFile("http://www.xyz.com/test.jpg", "c:\test.jpg") This works well but when i download a "test.emf" file then it gives error that 404-file not found. But the file exists...
  3. N

    Implementation of design on windows form

    I want to implement designs on my desktop application. the designer has made sliced images and made a html page. How will i imlement the sliced images onto my windows forms? Is there any way to add all the slices onto the windows form?
  4. N

    serialization

    I am using serialization to implement undo-redo. But i m getting error that System.Drawing.Drawing2D.GraphicsPath is not marked serializable. I need mousePath for freehand drawing, therefore i m using Public mousePath As New System.Drawing.Drawing2D.GraphicsPath ? How to solve this problem?
  5. N

    Border Color in Label Controls

    Is it possible to Have a border color in a label control in vb.net? If yes, then please explain it to me or suggest me some better idea of diaplaying aborder color in a label control. Anyone out there please help me out.
  6. N

    Saving as Image

    I am working on a desktop application using vb.net. i have multiple controls on a panel (labels, pictureboxes). I want to save my panel as an image. I have tried the bitBLT function but it works the printscreen way. So its not successful in many ways. Can anyone out there please give me a...
  7. N

    Panel Printing

    panel saving as an image in vb.net I am working on a desktop application using vb.net. i have multiple controls on a panel (labels, pictureboxes). I want to save my panel as an image. so that later on i can print that image. or is there any more effective way of printing a panel. Can anyone...
  8. N

    Image Manipulation

    Brightness,Contrast of Image I want to adjust the color,brightness, hue and saturation of an image. What all properties of the image should i manipulate. I am providing the slider bar for all the for properties. On the movement of the slider bar what all properties of the image needs to be...
  9. N

    Inter Projects Interaction

    I have 2 projects within a single solution. Now i want that when i click on a button on form1 in Project 1 then it should open me the Form 1 of Project 2. Can anyone please help me in this.
  10. N

    Edit Image

    I want to edit and transform an image, so as to place a polygon onto a image and the image is cut into that shape. Only the part which is covered by the polygon is left and rest is removed. For example if i select an image to be cut into the shape of a heart, then the rectangular image will be...
  11. N

    Thumbnails in Listview control

    How can i display thumbnails of images in a listview control in vb.net
  12. N

    transparency of controls in vb.net

    Can someone help me out in making a control behave as transparent control on windows form. color.transparent only makes it with respect to the form but i want the control to behave as a transaprent control with respect to every other control placed on the form.
  13. N

    Saving contents of panel

    Can the contents of a panel be saved as an image ? After saving as an image, all the contents of the panel must be visible whether it is an image or text or control.
  14. N

    transparent labels

    Is it possible to have transparent labels in vb.net? Means if we place a label1 on another label, say label2, then will the text of label2 be visible ?
  15. N

    Font Style in Labels

    Is is possible to have 2 different font styles in a singel label ? Means there are two sentences written in a single label with one showing in red color and the other one showing in blue color. any help would be really great.
  16. N

    Tranparent Lables

    Is it possible to have transparent labels in vb.net? Means if we place a label1 on another label, say label2, then will the text of label2 be visible on runtime.
  17. N

    URGENT! Moving picturebox in a panel

    I am having problem in moving the picturebox in a panel.I am able to move the picturebox in the panel along the mouse movement. But when there are more pictureboxes then the moving picturebox gets stuck as another picturebox is lying in its way. It gets stuck there and as soon as the cursor...
  18. N

    Problem in resizing the panel with pictureboxes

    I am using a panel where number of pictureboxes r placed dynamically. Now i m using a combobox to select the zoom size. I used the scale method of panel to resize earlier but it was a failure when i zoom to 200% and then back to 25%. Anyways after zoom in and zoom out the sizes and the location...
  19. N

    How to select & edit picturebox placed on a panel

    I have added images onto a panel by dynamically adding pictureboxes to the panel while dragging n dropping images. Now i want to select one of the pictureboxes placed on the panel and edit it. How is it possible? Please help me its urgent.
Back
Top