Specifying a font in AutoComplete TextBox - vb.net

Has anyone managed to modify the default font size for a AutoComplete TextBox, Windows Forms.

No, the underline Windows API does not have an option to change the font size. If you need to customize the suggest list's appearance you need to implement autocomplete by yourself.
Suggested reading:AUTOCOMPLETEOPTIONS

Related

Can the Font for a UWP Drag and Drop (DragUI) caption be changed?

I am implementing drag and drop for a UWP application and all is working well, except for the Font on the DragUI caption.
I have DragUIOverride.IsCaptionVisible = True and DragUIOverride.Caption = "My Text String",
but does anyone know how to change the font? My application uses a unique font and the system font stick out like a sore thumb.
(On a similar vein, I had the same issue with ToolTips, but figured out how to set a new style for ToolTip in <Application.Resources>, but I cant seem to find anything (i.e. a TargetType) for the DragUI text.)
Any help appreciated.
Can the Font for a UWP Drag and Drop (DragUI) caption be changed?
I'm afraid, you can't change the font style for DragUIOverride.Caption, currently, there is not such api to change Caption font, it was manage by the system. And you could post your requirement with windows feed back hub.
And we have a workaround that use SetContentFromBitmapImage method insert text image to replace DragUIOverride.Caption. For more please refer XamlDragAndDrop code sample

Is there a standard Font Dialog for winrt?

Want to display a Font Choice dialog appropriate for UWP app. Is there such a class in winrt? Or do we need to roll our own?
I should have searched for Font Picker. Found a discussion in another forum that seems to have an answer: No. There is no standard font picker for winrt. Seems like something that would be a useful addition!

is there any command to change all font when i maximize windows in vb?

In my program, my default font is fit to small windows but user can maximize windows and then all font is too small when user do that. I would like to increase all font size in all page of my program when user maximize a windows. I can change size for each text but there are too many text that i need to change. Is there any command to change all font in my program ??
Thank you.
If you have not messed about with the fonts in the controls, then they should all be linked via their ParentFont property. So all you have to do is assign a new font to the form they are on and they'll all happily follow suit.
Note you'll need to get your controls resizing properly as well.

Text Editor Control in Windows application in VB.net

I am using Windows application for development. In that i have functionality where there is a control in which user can type anything then edit them like bold, italic, underline, fore colour,back colour, insert image, edit size of font, change font type etc. Its like MS Word.
At present i am using RTF ( Rich text box) control for the same. but its to complex to use. Now i want other way to do that.
can any one suggest me any third party control which can full fill my requirement or any other way to do it? I am ready by third party control like MS Word functionality.
Thanks in Advance.
Try controls from http://www.devexpress.com or http://www.telerik.com

Change console text kerning in vb.net

I'm trying to make each letter a "square" essentially, so each letter is no more tall than it is wide, in vb.net. Is this possible? If so, how? I can't seem to find anything, and I've been searching hard.
Thanks for the help!
Why dont you just use a fixed size font ? Or create your own font ?
The Windows API has a function called SetCurrentConsoleFontEx which you could pinvoke. It accepts a width and height, font etc. Depending on how it handles these you may also need to make and add a 'square font' to the registry list of allowed fonts (example of adding a new font to the console here.)