Search results for query: *

  1. U

    Copy Selected row in One data grid to another Data Grid

    Hi Stuart, Do check my thread on a similar issue here
  2. U

    Save webbrowser content to textbox

    Thanks JB. I'd like to automate this process, ie: click on the download link and the downloaded file just opens in the textbox. Thanks for any help
  3. U

    DGVs: Dragdrop copy + reorder with givefeedback

    Can someone please help show me how to implement this solution found here to drag drop & reorder with target red-line feedback. How do I get this solution to work with an existing DGV on my form ? http://www.danielsoper.com/programming/DataGridViewDragDropRowsColumns.aspx Imports System...
  4. U

    Save webbrowser content to textbox

    anyone who can help with this ?
  5. U

    View image thumbnails in a fisheye control

    Fabulous, just fabulous. Can you please show me how to run this with a backgroundworker and progressbar? Opening a folder with many pictures slows it right down. Also how can I soften the fisheye animation. Right now its a little abrupt. Thanks again for the help.
  6. U

    View image thumbnails in a fisheye control

    Instead of using a vertically scrolling listview to show thumbnails of pictures in a directory, is there any way to show thumbs in a horizontally scrolling fisheye ? Eg : something like http://www.codeproject.com/KB/WPF/Panels.aspx Thanks for any help
  7. U

    Save webbrowser content to textbox

    I have a webbrowser control on my form. Clicking a link on my website downloads a text file eg: http://www.mysite.com/MyDocs/Download.cfm?format=txt&id=3350395&language=English downloads doc # 3350395. How can I capture the contents of this downloaded text file directly into the textbox1 on...
  8. U

    Import powerpoint slides into Datagridview

    Can anyone show me how to import thumbnails of powerpoint slides into a datagridview column. Clicking on each DGV cell should open the relevant slide... Thanks for any help
  9. U

    Displaying progress bar

    jmc, thanks for those pointers
  10. U

    Richtextbox : highlight entire line based on found word

    The above code correctly highlights the line containing "fox" How can I extend the highlighting from the beginning of the line to the right edge of the richtextbox ? ie: the full line within the richtextbox. Also how can I recursively find and highlight all lines containing fox ?
  11. U

    Richtextbox : highlight entire line based on found word

    JohnH, you've been a great help. Thanks
  12. U

    Richtextbox : highlight entire line based on found word

    In a richtextbox, how can I highlight the entire line where a given word is found. eg "fox" Thanks for any help.
  13. U

    Display video thumbmails in a DGV

    No laughing matter :D Are there any links you know of to learn how to process video using vb.net ? And maybe some sample code ? Thanks !
  14. U

    Display video thumbmails in a DGV

    Sorry I lost you here. How can I achieve this ?
  15. U

    Display video thumbmails in a DGV

    Thanks for that link which I'm experimenting with. I'm wondering how to set the thumbnail from frame number xx of each video ?
  16. U

    Display video thumbmails in a DGV

    Display video thumbnails in a DGV I'm looking for a way to display thumbnails of all available video files like avis, wmvs, mpgs, movs in a particular directory in a datagridview column Clicking on a thumbnail should open the relevant video. I would appreciate any help. Thanks
  17. U

    complex sql in TableNameBindingSource.Filter

    To Filter datagridview you could just use the string.Replace to replace single apostrophes with double ones -> dataGridView.Filter = "Country = '" & textBox1.Text().Replace("'","''") & "'" This will take care of Frankie's house
  18. U

    Filmstrip border overlay on existing image

    Bob Powell's site is extremely valuable. Thanks. I understood what you said about sizing the 2 rectangles but I can't figure out how & where to size them in the code...
  19. U

    Filmstrip border overlay on existing image

    Thanks for the pseudo. After your pointer I did a search and found this interesting code snippet here Dim Circle As Bitmap = CType(Image.FromFile("c:\circle.bmp"),Bitmap) Dim MergedBMP As Bitmap = CType(Image.FromFile("c:\cross.bmp"),Bitmap) Dim g As Graphics = Graphics.FromImage(Circle)...
  20. U

    Filmstrip border overlay on existing image

    Thanks. Is it possible to do this using GDI using filmstrip image as watermark overlay on an existing image ... and save the output as another image
Back
Top