Search results for query: *

  • Users: Ultrawhack
  • Content: Threads
  • Order by date
  1. 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
  2. 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...
  3. 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
  4. 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.
  5. 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
  6. U

    Filmstrip border overlay on existing image

    Is it possible to use an image as a custom border around an image? Something like adding a film border around a existing bmp or jpeg ? Basically I have images in a directory that I'd like to show in a form picturebox with a film strip border. Thanks for any help
  7. U

    Datagridview : TextAndImageColumn

    Can anyone please point me to a sample where I can see how textandimagecolumn works in a datagridview. I'd like to include an icon with the column1 text. Thanks !
  8. U

    icons in target datagridview

    I have 3 source datagridviews, DGVSource1, DGVSource2, DGVSource3. Each is filled with items in a particular category. I have a target datagridview DGVTarget onto which selected items from the above will be dropped. I'd like DGVTarget's column1 to have distinct icons to show which DGVSource...
  9. U

    mimic Windows screen identify function

    Hi, How can I mimic Windows screen identify function ? In a multiple monitor setup there is an Identify option which throws up big numbers 1, 2, 3 etc for every screen. Right click desktop, go properties, settings, identify... I'd really like to know how to achieve this by having forms appear...
  10. U

    combobox selectedindexchanged fires when filled with dataset

    I fill my unbound combobox using a dataset on form load. When the form loads it automatically fires the code in the combobox selectedindexchanged event without the user changing the selection. Obviously it is recognising the fill as part of the event. How can I get this code to fire only when...
  11. U

    Filter DGV by combobox programmatically

    I am trying to filter a databound DGV from a combobox. All procedures are strictly read-only. Access db. 2 tables Countries, Addresses. Added datasource MyDb on Data Designer added underlying Select Query to Addresses TableAdaptor SELECT city + ', ' + State + ' ' + cstr(Zip) + chr(13) +...
  12. U

    Programmatically change TableAdapter Query

    How can I programatically change TableAdapter Queries ? My DGV is bound to a (access db) TableAdapter/Bindingsource Query and I need to programmatically change the query sql behind the tableadapter. And hopefully the DGV will update itself. Can someone walk me through this ?
  13. U

    concatenating fields into single column datagridview

    According to sql concatenation, joining fields syntax http://4h.wsu.edu/4hData/4H/pdf/03sqlselectexamples.pdf Select City || ‘, ‘ || State|| ‘ ‘ || Zip from Youth2B should result in output : Wausau, WI 54402-6097 My question is, how can I use datasets to fill a single column DGV with...
  14. U

    Background Load Datagridview with 1000s of records

    Hi, I need to "quickly" display 30,000+ records in my datagridview. Using a traditional dataset & fill like http://www.codeproject.com/useritems/DataGridView__GridView.asp it takes upwards of 20 seconds for the DGV to display the records on a Intel DualCore 3Ghz 2GB RAM system (and of course...
  15. U

    Distinguish between Folder drop & Files dropped

    I need to trigger specific code when a user drops an entire folder on my form. How can I test if whats dropped is file(s) or folder. How can I distinguish between a folderdrop and filedrop ? Thanks !
  16. U

    Drilldown comboboxes

    I have 3 tables tblCountry, tblState, tblCity with CountryID & StateID as relational fields. when a user selects from cboCountry CountryID filters the content of cboState when a user selects from cboState StateID filters the content of cboCity I need help with the filtering code please for...
  17. U

    Cascading comboboxes

    I'd like to be able to mimic Access cascading comboboxes where Based on selected value in cbo1, cbo2 is filled Based on selected value in cbo2, cbo3 is filled An example of this is found here: http://www.fontstuff.com/access/acctut10.htm http://www.utterangel.com/pages/access_downloads.aspx...
  18. U

    Close and compact MS-Access Backend

    I have added an Access mdb as my VB2005e datasource using Data | Add new data source, etc. I would like to be able to compact and repair this mdb programmatically using http://www.codeproject.com/cs/database/mdbcompact_latebind.asp The code expressly states that I need to "make sure there's...
  19. U

    DGV: backgound flash green on dragdrop

    Right now I'm not sure if this would be boon or bane but... How can I get the background (all cells) of a dgv to flash green once (confirmation) after a dragdrop has been completed ? Thanks for any help
  20. U

    DGVs: Dragdrop copy + reorder with givefeedback

    DGV1 is a databound DGV and DGV2 is unbound. Both are Selectionmode=Fullrowselect, multiselect=false, AllowUserToAddRows=false DGV1 rowselected can be dragdropped and copied to DGV2. DGV2 rowselected should be reorderable within DGV2. Both DGVs Givefeedback should use rowselected, column 1 as...
Back
Top