visual-studio-express

Loading DLLs with Microsoft Visual C# 2010 Express

房东的猫 提交于 2019-12-13 16:50:27
问题 I'm using Microsoft C# 2010 Express with the FrameLink Express drivers from Imperx. When I try to load the DLL at runtime, I get an exception: Unable to load DLL 'VCECLB.dll': The specified module could not be found. (Exception from HRESULT:0x8007007E) If I try to add the DLL as a reference, I get this message: A reference to 'C:\\VCECLB.dll' could not be added. Please make sure that the file is accessible, and that it is a valid assembly or COM component. Two questions: Is this an Express

Visual Studio 2013 Express WPF Deigner load failure

不问归期 提交于 2019-12-13 05:02:12
问题 I have troubles with my VS2013 Express Wpf Designer. He won't load the views in wich I use Custom converters. The application compile and run fine and my converters work as expected. But in design mode, I keep getting "The name {converterClassName} does not exist in the namespace {namespace}" Thing is, while I don't use the designer to create the view, I use it to have an idea of what I am doing will look like without having to debug, so I'll be super glad if it could work again. Global View

How to use mole manually in Visual Studio Express?

自作多情 提交于 2019-12-13 03:59:38
问题 I searched for tags "Moles" and "Visual Studio Express", and found no questions. That probably means I'm the only person trying to use Express with Moles :) In Express, there are no options such as "Add moles assembly", or "Add mscorlib". I've managed to get the tutorial for the DateTime Y2Kbug working after manually adding a couple of references that would normally be handled by VS. So, that means that I can mole any of the pre-moled stuff in System or mscorlib, which will be useful. My

How to link libraries to a project on visual studio?

爷,独闯天下 提交于 2019-12-13 03:15:49
问题 I need to create a solution on VS Express 2017 with two self made dll, LIB_COMMON and LIB_VIEW, a bin project TEST_VIEW containing the main.cpp and using Qt. I have everything needed in my folder and set the environnement variables while launching the solution with a batch file. But I have two problems. First, I can't manage to link Qt with the projects to use . Secondly, in the properties, the only I found to link my dll project was to add by hand every obj file (yes, obj files, not lib...)

Looking for definitive ISO week calculator in Visual Basic (in Visual Studio Express 2010)

╄→尐↘猪︶ㄣ 提交于 2019-12-12 19:29:56
问题 I'm looking for a definitive, standard (i.e. certified as being correct or tested reasonably thoroughly) for calculating the ISO week from a date, in Visual Basic (i.e. to run in a Visual Studio Express 2010 Visual Basic project) (Unsuccessful) Research so far : I found some routines that were Visual Basic for Applications oriented; reliant on Excel environment, some things not present in Visual Studio Express 2010 Visual Basic: http://www.xtremevbtalk.com/showthread.php?t=180642 http://www

Unable to Install Nuget Manager extension on Visual Studio 2010 Phone Express

北慕城南 提交于 2019-12-12 06:07:58
问题 I am using Visual Studio 2010 for Phone Express to develop Windows Phone 7 apps. Unfortunately, it does not come installed with Nuget Manager . So based on the content at this site , I downloaded the VSIX installer for Visual Studio 2010 for Phone Express from this link Unfortunately, the installer fails with error I am posting the relevant section of the install Log. 14-04-2015 18:38:22 - Supported Products : 14-04-2015 18:38:22 - Microsoft.VisualStudio.Pro 14-04-2015 18:38:22 - Version :

Localizing winforms in visual-studio-2012 express

梦想的初衷 提交于 2019-12-12 04:14:25
问题 I have a application previously developed in Visual Studio Express 2010. It uses localized winforms and resx resources used in code. When the project is opened and compiled using Visual Studio Express 2012 on the same computer the localized strings are not applied, only the default code was found. The application runs fine and in the winforms designer I can change language to see and edit the localized text of the controls. I also tried the following code to determine if the languages used

How to insert char in middle of text file?

ぃ、小莉子 提交于 2019-12-11 14:18:36
问题 Firstly, I want to insert characters into a text file. I want to print the characters (DAD1) into the middle of the text file ( HERE with DA D1) and the text file looks like this => @2100 AB CD EF 12 43 56 A3 B2 34 56 ..... ...............78 @ffb4 FF FF FF FF(***HERE***) @ffc0 FA 21 FA 21 .... I tried to use fprintf but it prints at the end of the file. Here is my coding part => fp = fopen("testing.txt", "r+"); if (fp) { while (c != EOF) { c = getc(fp); if (c == '@') { cout << c ; while (c !=

How to Install Visual Studio 2010 Professional and Express in Parallel

女生的网名这么多〃 提交于 2019-12-11 10:37:48
问题 I already have Visual Studio 2010 Professional installed on my developer machine. However, I need to install Visual Studio 2010 Express so that I can develop commercial Windows Phone applications. (I only have a non-commercial student license from DreamSpark for the Professional edition.) How can I do that? When I try to install the Express edition, it only integrates into the Professional edition. 回答1: It's not ideal but you could virtualise your OS and run it on that. vmware workstation or

How to suppress 'Found conflicts between different versions of' warning?

岁酱吖の 提交于 2019-12-11 09:28:55
问题 In a project I have the following reference layout: References +- AssemblyA 6.7.6643.0 +- AssemblyB | \- AssemblyA 7.0.0.0 \- AssemblyC \- AssemblyA 7.0.0.0 AssemblyB and AssemblyC are NuGet references for which there is no downgrade. Due to circumstances outside of my control, upgrading AssemblyA is not an option. But I get this warning: Found conflicts between different versions of "AssemblyA" that could not be resolved. These reference conflicts are listed in the build log when log