visual-studio-2005

Unable to register dll using regsvr32

北战南征 提交于 2020-01-21 09:09:43
问题 My project generates a dll and when build in Debug mode the dll gets registered automatically by Visual Studio 2005. But when I try to register the same dll in command prompt using "regsvr32" I'm unable to register. I get the following error, The module ".." failed to load. Make sure the binary is stored at specified path or debug it to check problems with the binary or dependent .DLL files. But I have all the dependent dlls in place. What could be the reason for this issue.? I tried

Unable to register dll using regsvr32

99封情书 提交于 2020-01-21 09:09:31
问题 My project generates a dll and when build in Debug mode the dll gets registered automatically by Visual Studio 2005. But when I try to register the same dll in command prompt using "regsvr32" I'm unable to register. I get the following error, The module ".." failed to load. Make sure the binary is stored at specified path or debug it to check problems with the binary or dependent .DLL files. But I have all the dependent dlls in place. What could be the reason for this issue.? I tried

Changing a Visual Studio C# project from x86 to Any CPU

走远了吗. 提交于 2020-01-20 01:18:08
问题 I am working on some C# projects with Visual Studio 2005, and I am trying to change the platform target from x86 to Any CPU. I already went through all the dependencies that I know about and made sure that they were also built for Any CPU using the corflags tool. When I change the platform target in Visual Studio 2005 it seems like it saves the change, but then when I build the project it still uses x86 anyway. The next time I open the project the platform target has been reset to x86. This

Visual Studio 2005 and Tinyxml - xml file location

非 Y 不嫁゛ 提交于 2020-01-17 03:24:04
问题 For some reason my Tinyxml file which is created via visual studio 2005 (c++) is saved on my desktop instead of the debug folder or in the program's root folder. if anyone knows about some way to tell vs2005 to save the tinyxml create file somewhere else? I tried that with eclipse and it saved the file in the program's root folder, which is what I'm trying to do. thanks. EDIT: I'm doing a BHO (Browser Helper Object), this is an add-on Internet Explorer. so when I run my program the 'exe' is

Can I run/test/create dtsx packages outside Visual Studio?

我的梦境 提交于 2020-01-16 18:52:23
问题 Not too familiar with dtsx packages - can they be created/run outisde Visual Studio? Is BIDS (Business Intelligence Development Studio) just required to do all the above (in Visual Studio) or is it an independent development enviroment for dtsx packages? Please shed some light if you can (and get some eazy rep)! 回答1: Absolutely! Just double click on it (launches dtexecui.exe ) or use the dtexec command. See how all the ways stack up here. Answering some of the other questions: BIDS is the

Can I run/test/create dtsx packages outside Visual Studio?

限于喜欢 提交于 2020-01-16 18:51:45
问题 Not too familiar with dtsx packages - can they be created/run outisde Visual Studio? Is BIDS (Business Intelligence Development Studio) just required to do all the above (in Visual Studio) or is it an independent development enviroment for dtsx packages? Please shed some light if you can (and get some eazy rep)! 回答1: Absolutely! Just double click on it (launches dtexecui.exe ) or use the dtexec command. See how all the ways stack up here. Answering some of the other questions: BIDS is the

Caller graph for overloaded operators in Visual Studio 2005

拈花ヽ惹草 提交于 2020-01-16 13:13:34
问题 Is is possible to get a callers graph for overloaded operators? I have a simple struct with a natural ordering which I have represented by overloading the relational operators. Looking back through the code, it appears that I made a mistake in defining operator > . I had set the greater than to simply return the negation of operator < (this is not correct as this will mean that (val1 > val2) == true when val1 == val2 ). Anyway before fixing this, I want to check where the > operator is called

Issue with passing parameters by reference into public shared methods

柔情痞子 提交于 2020-01-16 12:00:31
问题 I have a List(Of AddlInfo) with AddlInfo being an object. I'm trying to pass addlInfoList by reference into a function of another class: Public Shared Sub SortAddlInfo(ByRef addlInfoList As List(Of AddlInfo)) addlInfoList.Sort(AddressOf Comparer) End Sub Private Function Comparer(ByVal x As AddlInfo, ByVal y As AddlInfo) As Integer Dim result As Integer = x.AddlInfoType.CompareTo(y.AddlInfoType) Return result End Function This works if I'm not passing the reference into another class, but

VB.NET 2005 problems with Designer not being able to process a code line

南笙酒味 提交于 2020-01-16 09:46:26
问题 I have a problem in my project with the .designer which as everyone know is autogenerated and I ahvent changed at all. One day I was working fine, I did a back up and next day boom! the project suddenly stops working and sends a message that the designer cant procees a code line... and due to this I get more errores (2 in my case), I even had a back up from the day it was working and is useless too, I get the same error, I tryed in my laptop and the same problem comes. How can I delete the

“Call Stack” for C++ errors in Visual Studio 2005

我与影子孤独终老i 提交于 2020-01-16 09:44:30
问题 Is there a "call stack" for compiler errors in Visual Studio 2005 (C++)? For example, I am using a boost::scoped_ptr as the value in a QHash. This is however causing the following compile error: 1>c:\qt\include\qtcore\../../src/corelib/tools/qhash.h(743) : error C2248: 'boost::scoped_ptr<T>::operator =' : cannot access private member declared in class 'boost::scoped_ptr<T>' From the build output I know which of my source files is causing the error and the line number in the qhash.h that is