does anyone know of a visual programming tool that could be adapted for children (kids age 7-12) so that they can generate c programs to control device?
in visualstudio is the member dropdown, where you can select all members of the current type alphabetically ordered.
is there an option which allows grouping of the members? i.e. all constructors before all methods before all properties before all events before all fields?
if there is not, bad for me, i guess—it would really enhance productivity
I wonder if some of you would like the idea to collect in this place features/improvements we would like to see most in visualstudio, vote for them and then send them (these with the most votes) to VS Team. Maybe some of them would make their way into another release of VS.
Looking forward to see what you're thinking about it.
When using Zend Studio to write views for a MVC framework, is there any way of having those variables autocomplete, perhaps using PHPdoc?
For example, I set a variable in a view called $cart which is an instance of my ShoppingCart class. When I type "$cart-", I'd like the IDE to pop up with all of the objects properties.
I recently moved the asp.net website solution folder (along with class projects) to different location.
As the result, visualstudio doesn't stop at break points, and I could not able to debug.
I see none of my assemblies at Debug Windows Modules; only microsoft assemblies are loaded. I have also deleted all bin folder and re-referenced all projects. But still no luck.
Thanks in advance!
Hi there I have build a project with visualstudio 2010 but I now need to open it using an older version vs2008. Is this possible by just changing the target framework to .net 3.5?
I'm currently using VisualStudio 2010 Professional, and noticed the ability to create Word 2007 and Word 2010 documents with C# code-behinds.
What I'm looking to do is fill in a report-type document with information in my C# application, and then output the final .docx. Is this possible using this feature, and how do I go about doing it?
Does anybody have an example of working with database using Visual C++ and OLEDB? What should I include on top of my code?
I have searched the internet and most examples are using C# or VB. Examples written by C++ are usually not complete.
I really appreciate your help.
Best,
Shadi.
I have an ASP.net MVC 1.0 VS2008 application that I just opened in VisualStudio 2010. When I did this Studio upgraded the app from VS2008 to the VS2010 project. It also upgraded the MVC references from 1.0 to 2.0.
In my app I have a class for a form post, I then use the class for the model binding in the Action method so it will auto populate the values. This worked fine in mvc 1.0 but now it does not work in 2.0 after the upgrade.
Does does anyone know why? Or where I should look to resolve this?
Here is my class,
public class Add_Postal_Form_Input
{
public string ACTION_RDO { get; set; }
public string POSTALSELECT { get; set; }
public string CNY_CD { get; set; }
public string S_PST_LOW { get; set; }
public string R_PST_LOW { get; set; }
public string R_PST_HI { get; set; }
public string G_PST_LOW { get; set; }
public string G_GRP_CD { get; set; }
public string CAT_CD { get; set; }
public string SUB_CD { get; set; }
public string ATTR_VAL { get; set; }
public string NBG_HR { get; set; }
public string NBG_MN { get; set; }
public string REC_STT_DT { get; set; }
public string REC_END_DT { get; set; }
public string DEFAULT_DATE { get; set; }
}
Here is the method,
[AcceptVerbs("POST")]
public PartialViewResult AddData(Add_Postal_Form_Input FORM_IN)
{
Thanks
Is there any truth to the rumor that VisualStudio 2010 will natively support PHP coding?
(http://www.codeplex.com/php4vs)
If not,what are the options?(except VS.php)
I am using Visual C++. How to copy the content of this file to another file?
UINT32 writeToLog(wstring log)
{
wfstream file1 (LOG_FILE_NAME, ios_base::out);
file1 << log;
file1.close();
// want to copy file1 to file2
return 0;
}
what is sourcesafe?
i am trying to download it to see if it will work well with c# because someone told me to download it for a job, but i don't even understand what it is?
is it built into the visualstudio ide or what?
I'm using VisualStudio 2008 on Windows 7. When I'm editing .aspx file VS stalls and thinks for about 3 sec every time I add a tag. Very frustrating. I'm guessing its doing some kind of compilation or checking. What can I do to make VS more responsive?
This is somewhat related to a similar post, but that post was VisualStudio 6 in general and a lot of the suggestions didn't apply to VB6.
Suggest or vote for tools/tips. Please one tool/tip per post so that everyone can vote on them individually. Include a brief description of what the tools do.
Is there a way in VisualStudio 2008 to go from a closing brace to it's opening brace? I've found a fair amount of stuff about highlighting the brace, but nothing about moving the cursor to it.
Visual Studio 2008 shows a lot of erroneous errors when building a website (not a web project) in the errors list. These errors are usually corrected (removed) when I rebuild the site a couple times but they cost me wasted time.
Is there anyway to hide the erroneous errors?
Hi All,
Every time I paste code from an Adobe reader eBook into VisualStudio it ends up looking like the image below. The only way I know to fix it is to go on each and every line and manually tab/backspace it all back in order. Source formatting does nothing (EditAdvancedFormat Document)
Anyone know how to fix the indention in this scenario?
Thanks
I guess I cant post images yet.. image below
https://dl.dropbox.com/u/416645/ugly.jpg
Hi, I'm running Appverifier in an application. When it detects a memory leaks the logs saids
"Address of the leaked allocation. Run !heap -p -a to get additional information about the allocation."
I guess that's when you are running in Windbg, is there any way to access the allocation stack trace from inside VisualStudio ?
Hi,
I am doing some image sampling. What my question is, is there a 'crosshair' tool in visual studio? I want to have several instances on a single form, be able to move them around and then sample those points, obviously returning the color of the pixel at the center of the crosshair, is there already a tool that will do this, before I go and write one?
Thanks, R.
Looking for a variety of Windows Form (winforms) tutorials for visualstudio.NET C++
I found a few basic ones:
How to: Create a Windows Forms Application
Walkthrough: Retrieving Dialog Box Information Collectively Using Objects
Any others?
Thank You.
Hi,
I recently contacted a web host regarding support for external database access to a Microsoft SQL Server database included in a package they offer. They replied saying that it is only possible with an SSH-tunnel.
Is it possible to connect to a SQL Server database in VisualStudio using an SSH-tunnel? It is important for me to be able to access the database from my local machine (for debugging, generating LINQ classes, editing tables, etc).
Or, how should I go about working with their database?