Search results for query: *

  1. S

    changing font family and serif style in word

    hi...does anyone know how to change font family or serif style of the selected text in ms word through vb.net code??? thanks in advance.
  2. S

    Topmost property

    as well as you can use LostFocus event handler of form
  3. S

    Topmost property

    as well as you can use LostFocus event handler
  4. S

    Using Alt+# Keys in VB.NET Win Forms

    well i think to achieve your desired objective you might have to use all three key related events i.e. KeyUp, KeyDown and KeyPress. now, declare a global boolean variable lets say: Private isAltKeyDown As Boolean now, when any key is pressed down, KeyDown event will be fired. to detect if an...
  5. S

    tiff to doc

    hi! veebees objective: to retrieve text and images from an ocred image and then copy those in a doc file that must be created programmatically. text must retain its format (such as bold, italic, face, size etc) as well. achieved: i can retrieve the text right and can copy it as well in doc file...
  6. S

    monitoring file storage in database through progress bar

    hi veebees. still there is no response to my previous query with title 'retrieving file associated icons'. anyway, hop there will be soon from someone. besides that above said problem, i would like to forward my second problem. this time i will like to know how can i show progress of file...
  7. S

    retrieving file associated icon

    how can we retrieve an icon for the associated file extension??? can someone just help me out in writing a function that takes an extension (such as .doc; i am not passing a file name as an argument because it should not be mandatory to have some physically existing file on the hard disk to get...
  8. S

    converting OCRed tif image into word document

    Thanks a lot for reply deemore. I searched a lot and finally I have found a solution to ocr tif file with image or text or both. To see how to do this thing, follow the link below: http://www.microsoft.com/downloads/details.aspx?familyid=8f93e445-b1cf-4477-a373-e17417d616bc&displaylang=en From...
  9. S

    Starting form?

    search for this topic on this forum using keywork 'splash screen'
  10. S

    moving splitter in desired range????

    i have a form with two panels with a splitter in between them...i want to restrict splitter moving toward right side of the form; i.e. i dont want to shrink right-side panel...i only want to move splitter towards left-side of the form upto CERTAIN LIMIT; i dont want to shrink left-panel that...
  11. S

    problem with adding icon to imagelist...

    hi twoendy...thanks for the reply...yes u are right...i had changed the 'TransparentColor' property from Transparent to some other value; that is why i was getting that error msg...but later i found out the problem and changed the value of 'TransparentColor' property back to...
  12. S

    opening file in default editor

    hi paszt thks a lot for the reply...ya i had tried this thing and it worked even...but it really takes a lot of time to open the file...isn't there any other way that i can open the file in less time...n other thing i will like to know is that how can i check that if the associated executable or...
  13. S

    opening file in default editor

    how can we open the file in its default editor like for example opening doc file in word, pdf file in acrobat through your code.
  14. S

    converting OCRed tif image into word document

    hi...can someone tell me the way of coverting OCRed tif image into word document through vb.net code???
  15. S

    creating Banners

    search on this forum using search keyword 'splash screen'.
  16. S

    how to design tip-of-the-day

    hi edward and paszt...thanks a lot for the reply...now i hope that i will able to manage tip-of-the-day dialog for my application...edward if possible, post the help page you were talking about just for the safe side...i will like to go through it...bye and take care...
  17. S

    how to design tip-of-the-day

    hi edward...thanks a lot for the reply...if u dont mind can u briefly explain the arguments of function SaveSetting; what type of values do they require, what do they represent in registry, how can we use them...i just need a simple brief explanation...i hope u have got what i m trying to...
  18. S

    how to design tip-of-the-day

    hi...can some one help in implementing tip-of-the-day dialog??? especially i wud like to know how to implement the logic behind checkbox tht asks the user if he/she wud like to see the tip next time if he/she opens the application; in other words, how can we restore the settings set by the user...
  19. S

    problem with adding icon to imagelist...

    hi...i m having very minor problem but cant figure out how to solve it...first i made my own icon using .NET IDE and add it to my project (by using "Add Existing Item" option)but when i try to add that icon in ImageList the error message appears that says: "Bitmaps that are Icons can not be made...
  20. S

    creating help for application

    hi...is there any package available in .NET that can be used to facilitate in creating HELP for applications (in vb.net) just like the way Java provides javax.help package for the same above purpose. if possible, provide the link where best tutorial is available for this purpose.
Back
Top