Search results for query: *

  • Users: Xancholy
  • Content: Threads
  • Order by date
  1. X

    Display powerpoint ppt slides on form

    Assume there is no powerpoint installed on an end-users system. Is there any way to display ppt slides on a vb.net form when there is no powerpoint installed ? Sort of like the slide sorter view in powerpoint. I can then use the powerpoint viewer to display the slides. Thanks for any help
  2. X

    Windows media player: add visualization

    I added a windows media player to my form after referencing wmp.dll Can anyone show me how to programmatically call up a named visualization like "bars" Thanks !
  3. X

    Is mpeg-2 codec installed ?

    Is there any way to check if mpeg-2 codec is already installed on an end user's machine and if not, install it ? Can I use ClickOnce's features to do this ?
  4. X

    Datarepeater: filter by <filename>

    I have datarepeater with 1 picturebox control which on form load I would like to fill with images (*.jpg, *.bmp, *.tiff, *.png) found in my pictures. I have textbox1 used to pass a searchstring to the filter. Once loaded I would like to filter the pictures in the datarepeater by filename Code...
  5. X

    Application.DoEvents Alternative

    Using Application.Doevents on a child form halts my UI until it completes. Is there any alternative that will not affect user interface ? Thanks
  6. X

    Datagridview: filenames with bindingsource filter

    I have a datagridview1 and search textbox1 on my form On form load I need to fill datagridview1 with absolute path+filename of certain filetypes like *.jpg,png,gif,bmp in a specific directory like Application.StartupPath & "\Images" When user types in search textbox1 datagridview1 contents...
  7. X

    Filter filenames in temp table

    I need to read filenames within a specific directory into a temp table. When user types into search textbox1, the filtered filelist needs to be displayed in a listbox/datagridview. I know this must be child's play for most of you, but please can you show me how to code this scenario ? Thanks
  8. X

    Richtextbox: Highlight a line only if line starts with "string"

    In my richtextbox, how can I highlight any given line only if "Hello" is found at the very start of the line within the textbox. To avoid text wrap issues and wrong highlighting, I guessing "Hello" has to appear after a environment.newline. eg: Hello highlights on this line space + hello does...
  9. X

    Splitcontainer : change splitter color on drag

    In a splitcontainer, how can I change the splitter bar's color to red when I begin to drag it ? Can someone please show me how to code this?
  10. X

    Powerpacks3 Line Control : draw line in richtextbox

    According to their MS docu, the new line control is to 'simply' replace gdi line drawings. I have a richtextbox where text is input in paras. Whenever text is changed, how can I draw a line whereever a blank line is found ? To handle instances where multiple blank lines are found, the line...
  11. X

    referring datarepeater controls

    How do I refer to a textbox1 inside datarepeater control ? me.datarepeater1.???
  12. X

    Picturebox : maintain 4:3 aspect ratio

    I have a picturebox in a horizontal splitpanel. I would like the dimensions of the picturebox to : grow/shrink as the form is sized OR if the splitpanel shrinks/grows BUT the picturebox must retain a 4:3 aspect ratio I have tried anchoring & docking just won't work. How can I code this to...
  13. X

    Datarepeater: datasource as richtextbox.text

    I am using the MS VB powerpack 3 datarepeater control. I have a richtextboxSource, datarepeater1 on my form I would like to add a docked richtextboxTarget to my datarepeater1 The datasource for each row(richtextboxTarget) in the datarepeater1 will be the output of richtextboxSource's...
  14. X

    Fontdialog alternative

    Rather than using fontdialog opening it's own window... is there any alternative out there to display a MS-Word-like menubar-like control that shows fontnames, forecolor, styles, etc ? Perhaps a free or 3rd party activex/ocx ?
  15. X

    Grid-snap subform to mainform's x,y location

    I have mdi forms Main and Child I expressly position smaller Child near Main's Close button with the following code Public Class Form1 Private OwnedForm As Form Private bypass As Boolean = True Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs)...
  16. X

    Mousedown ->show current paragraph(cursor position)

    I have a richtextbox on a form. Users will type in text in blocks(paragraphs) separated by a blank line When user clicks cursor into a particular paragraph... - I need to trap the entire current paragraph where the cursor is placed Pseudo: On mousedown event...
  17. X

    Tool to check memory leaks

    Experts, tell us what tool do you use to check for memory leaks in your apps? Thanks
  18. X

    Host richtextbox inside datagridview cell

    Can someone please show me sample code of how to host a richtextbox control inside a datagridview cell ? Thanks very much
  19. X

    Richtextbox : split text into paragraphs

    Please can someone tell me what regex to use to: Split richtextbox1.text into paragraphs (where blank line is found) I have tried "\r\n\r\n" but it does not seem to work on richtextbox. For Each para As String In System.Text.RegularExpressions.Regex.Split(Richtextbox1.Text...
  20. X

    Flickerfree Richtextbox : Convert subclassed richtextbox control to dll

    I found this code to help make a richtextbox control fairly flickerfree. How can I convert this sublassed control to a dll that I can add to my toolbox ? Imports System Imports System.Windows.Forms Public Class FlickerFreeRichTextbox Inherits RichTextBox Private Const WM_PAINT As...
Back
Top