Search Results

0
votes
2answers
94 views

ContextMenuStrip Custom Layout

I'm trying to have a Windows Forms ContextMenuStrip control display a list of countries, about 200 total. Currently it displays them all vertically which creates for a long wait time to scroll to …
1
vote

Strategies for personal knowledge expansion as a .NET developer

I can relate with you here... seems a lot has been introduced into .NET with version 3.0/3.5 and it's a bit daunting at first. But, I just looked back to when I was first a CS student and was try …
1
vote

Accessing the settings (app.config) of the calling application

Add a reference to System.Configuration to your proejct. Then in the particular .cs or .vb (or whatever) file you are wishing to make a reference to the config file add the following: …
0
votes

Is there a default SQL Driver included with the .NET Framework?

I believe the MSSQL ADO.NET Providers (drivers) are installed when the .NET runtime is instsalled, but it looks like you're rockin MySql. You're best bet is to use the .NET ADO.NET Provider for MyS …
2
votes

Visual C++ application as a frontend to MS Access database - multiuser data access and canvas-like GUI questions.

I wouldn't use C++ to do this, there is no real need. I would suggest VB.NET or C#... unless of course you're already highly familiar with C++ and not the other languages. …