visual-studio-2008

VS2008 remotely connect to Win Mobile 6.1 Device

岁酱吖の 提交于 2019-12-29 06:32:56
问题 So I've been given to a Windows Mobile 6.1 Classic Device to work with for a project, but I was given a network adapter for it and not a USB cable. So I have to build and test across the network. So how do I get Visual Studio to connect to the device across the network? I have read the following articles to no avail: "How to: Connect to Windows CE Device Without ActiveSync" and also looked at: enter link description here But neither have helped me, I am not sure what to try next to try and

VS2008 remotely connect to Win Mobile 6.1 Device

前提是你 提交于 2019-12-29 06:32:28
问题 So I've been given to a Windows Mobile 6.1 Classic Device to work with for a project, but I was given a network adapter for it and not a USB cable. So I have to build and test across the network. So how do I get Visual Studio to connect to the device across the network? I have read the following articles to no avail: "How to: Connect to Windows CE Device Without ActiveSync" and also looked at: enter link description here But neither have helped me, I am not sure what to try next to try and

VS2008 remotely connect to Win Mobile 6.1 Device

亡梦爱人 提交于 2019-12-29 06:32:03
问题 So I've been given to a Windows Mobile 6.1 Classic Device to work with for a project, but I was given a network adapter for it and not a USB cable. So I have to build and test across the network. So how do I get Visual Studio to connect to the device across the network? I have read the following articles to no avail: "How to: Connect to Windows CE Device Without ActiveSync" and also looked at: enter link description here But neither have helped me, I am not sure what to try next to try and

How do you get the control that was clicked to open a ContextMenuStrip?

时间秒杀一切 提交于 2019-12-29 06:13:46
问题 I'm using a ContextMenuStrip for multiple controls and I'm trying to figure out the best way to get the control that was actually clicked on to open the Context Menu. The sender just gives the ToolStripMenuItem reference, which has an Owner property that references the ContextMenuStrip , but I cannot figure out how to tell which control the click came from. There must be a simple way to check this, right? I'm checking it in the ToolStripMenuItem 's click event. Friend WithEvents mnuWebCopy As

How do you add external libraries for compilation in VC++?

徘徊边缘 提交于 2019-12-29 04:46:28
问题 I've worked with a couple of Visual C++ compilers (VC97, VC2005, VC2008) and I haven't really found a clearcut way of adding external libraries to my builds. I come from a Java background, and in Java libraries are everything! I understand from compiling open-source projects on my Linux box that all the source code for the library seems to need to be included, with the exception of those .so files. Also I've heard of the .lib static libraries and .dll dynamic libraries, but I'm still not

Does Application.EnableVisualStyles() do anything?

坚强是说给别人听的谎言 提交于 2019-12-29 04:27:48
问题 I'm very picky when it comes to understanding a new language, and recently I've taken up learning C#. So I like to know everything that is going on when I create a new Application - in this case a new Windows Forms Application. I created one and was given some generated code from Visual Studio and one line was Application.EnableVisualStyles() . I did some research on MSDN and found this article: Application.EnableVisualStyles(). I performed the example that they presented expecting the button

How can I reverse code around an equal sign in Visual Studio?

岁酱吖の 提交于 2019-12-29 02:47:12
问题 After writing code to populate textboxes from an object, such as: txtFirstName.Text = customer.FirstName; txtLastName.Text = customer.LastName; txtAddress.Text = customer.Address; txtCity.Text = customer.City; is there way in Visual Studio (or even something like Resharper) to copy and paste this code into a save function and reverse the code around the equal sign, so that it will look like: customer.FirstName = txtFirstName.Text; customer.LastName = txtLastName.Text; customer.Address =

Version resource in DLL not visible with right-click

谁说我不能喝 提交于 2019-12-28 15:26:39
问题 I'm trying to do something which is very easy to do in the regular MSVC, but not supported easily in VC++ Express. There is no resource editor in VC++ Express. So I added a file named version.rc into my DLL project. The file has the below content, which is compiled by the resource compiler and added to the final DLL. This resource is viewable in the DLL using reshacker, though not when right-clicking the DLL in Windows Explorer. What is missing from my RC file to make it appear when right

Version resource in DLL not visible with right-click

丶灬走出姿态 提交于 2019-12-28 15:25:05
问题 I'm trying to do something which is very easy to do in the regular MSVC, but not supported easily in VC++ Express. There is no resource editor in VC++ Express. So I added a file named version.rc into my DLL project. The file has the below content, which is compiled by the resource compiler and added to the final DLL. This resource is viewable in the DLL using reshacker, though not when right-clicking the DLL in Windows Explorer. What is missing from my RC file to make it appear when right

Visual Studio Compiler warning C4250 ('class1' : inherits 'class2::member' via dominance)

孤人 提交于 2019-12-28 15:17:19
问题 The following code generates warning C4250. My question is, what's the best solution to it? class A { virtual void func1(); } class B : public A { } class C : public A { virtual void func1(); } class D : public B, public C { } int main() { D d; d.func1(); // Causes warning } According to what I've read it should be possible to do this: class D : public B, public C { using B::func1(); } But, this doesn't actually do anything. The way I've currently solved it is: class D : public B, public C {