Create custom chrome for a windows form in vb.net using Visual Basic 2008 express - vb.net

How do you create custom chrome for a windows form in vb.net using Visual Basic 2008 express? I want to basically scrap what they give and start fresh, is there any way to do so easily?

I figured it out eventually. In the properties window with the form itself chosen, FormBorderStyle from "Sizable" to "None" will remove all built in chrome, therefore leaving me to go make my own. Resizability and moving may be a bit tough as I will have to code that myself, but this is an easy way to strip the chrome.

Related

VS 2010 Windows Form App - One Form has a different visual style - why?

I am building my first "real" VB Window Forms Application (I'm a "traditional programmer") and my application has perhaps half a dozen forms.
On execution all of these forms have the Windows 10 visual style (eg: grey on white max/min/close buttons at top right)... except for 1 form, which seems to be rendering in Win XP style (eg: Blue and red button style).
I have checked that "Enable XP Visual Styles" is UNClicked in the Project Properties, but this one form stubbornly refused to change.
I have a number of my forms that also appear in "XP style" in the VS Designer, but execute fine.
I suspect I may have enabled/disabled the "XP Visual Styles" option a couple of times, and perhaps initially created some forms when this was in different states... although I have no idea if this would have been the cause.
I really want this one form to be like all the others...
any ideas please? I am using VB in VS2010 (a bit old, but what I have to hand)
As I am quite new to VB so tell me what I can provide to help..
Many thanks,
David's comment has solved my immediate issue:
The single form appearing differently is indeed using Show() whereas the others are all ShowDialog(). There is no reason for me doing this, so I have changed it.

Office 2016 VBA wrong Toolbox icons size in windows 10

Not sure it this is the right place or how to describe my problem. I have a brand new windows 10 and installed Office 2016. Now when I want to develop something in VBA in Excel or Word and I add a UserForm the icons in toolbox which represent the controls to use on the form are too small. The strange thing is, when I first added a form, the toolbox windows was hardly visible (first image). Does anyone know what the problem is? Or better how to solve it.
I had the same issue with SQL Management Studio. Same odd behaviour. Luckely today I stumbled upon a solution which works perfectly for SMSS. So I guess I can try it voor VBA as well.
SMSS solution
This is a nice workaround, but it is not needed anymore, because MS has an updated version available for SMSS which you can find here
Anyway, I know now what the issue is, so I can try this workaround for other applications too.

Designing Win 8 Wire frames in Blend for VS 2012

I am trying to create wireframes for Win 8 and i am using Blend so as to make wireframes as close to actual app as possible.
IS there any short quickstart guide which i can read to start designing the UI in Blend?
I did google online but most of them very vague in description on how to design UI.
Normally you would use something as sketchflow to create your wireframes, but that's not available for Windows Store.
Only for WPF, Silverlight and Windows Phone (phone req. download from codeplex).
To create wireframes you would need to use something else like Microsoft Powerpoint. Please note though, to do this you one of the following versions of Visual Studio to create wireframes in Powerpoint:
Visual Studio Ultimate
Visual Studio Premium
Visual Studio Test Professional.
If you want to use PowerPoint for wireframing; check this Microsoft guide out
Hint: if using Powerpoint: If you search the Visual Studio Gallery for “storyboard”, you’ll find that the lots of shapes there. The link to the gallery and search is here.
You can still use Blend to create some mock ups. You just need to drag the controls onto the screen and start laying out your app. However this isn't wireframing, this is actually building a prototype of the app rather than doing your wireframes, which is a different thing.
You can still create your content in only using Blend and the Properties Panel on the right side of the screen.
There's a ton to material available here on the general design portal for Windows Store apps: http://design.windows.com
If you want wireframes looking as close as possible to the real deal, without actually building it, I recommend doing the wireframes in either Adobe Illustrator or Adobe Photoshop.
There a lot of assets available for designing screens here

how to create Windows form in VB 10 Express

This sounds like a dumb question, but I'm using VS 2010 Express edition and cannot find where to add a new Windows form. The templates provided don't indicate a Windows form . Are they called something different in this version of VS?
Yeah I am not sure because I am using the same thing and I just go to the top and click
Project>Add Windows Form

What can i use as a ComboBox alternative for Windows Phone development? (vb)

I've been thoroughly looking for a combobox alternative to use for Windows Phone development for a full 24 hours now. The best i've found so far was this
,which is perfectly fine, but i'm really looking for something to work with in Vb.net.
PS: I'm using Visual studio 2010 as my code editor
Anticipated thanks :)
The List Picker is the best alternative to a ComboBox.
You can get the List Picker by installing the Toolkit update: http://silverlight.codeplex.com/releases/view/55034
It doesn't matter whether you use VB or C#. The Listpicker is basically a control in XAML, in the design view.
The only difference would be the Databinding syntax in your code view.