laMenAcquired's Q&A profile
Smart Device Development resgen.exe
hello i have a problem with the resgen.exe....when i try to build my projekt (in vs .net 2005) i get the following error: resgen.exe exited with error -1163019603 what does this error mean until now i haven't found a good explanation... i hope someone here can help me tia pezi Are you trying to open a VS 2003 project in VS 2005 If that is the case, it might have to do with compatibility - please refer to th ...Show All
Visual Basic IDE not picking up my 'Backspace' or 'Enter' keystrokes in the debugger
The debugger isn't picking up my keystrokes for my 'Backspace' or 'Enter' (carriage return). As far as I can tell those are the only two keystrokes from my keyboard that are not being caught. Any ideas Logitech wireless keyboard. Great that did it, deleting 'Default.vsk'... Thank you! After deleting 'Default.vsk', I immediately went back and tried to reset my profile and got the following error: Your settings were reset, but there were some ...Show All
.NET Development Sent EMail Good to a Domain That Cannot Be Looked up on DNS - How is that possible?
I am writing an .NET e-mail client program. I am checking the e-mail address's domain name via a DNS lookup before I send an e-mail. Consider: person@att.net While I can sent e-mail to person@att.net , "att.net" does not exist on the domain name server. What concept am I missing How can any program find a computer by name "att.net" without going through DNS Brian ...Show All
Visual Studio Team System pending change that is not compatible
I'm trying to do a migration and this is one of the errors that I get: Cannot change item $/ECAT/fred/MigrationTest/migration.txt because it already has a pending change that is not compatible. What does this mean As far as the folder not empty message, I think it's because you have a pending add of the MigrationTest folder still. If nothing else, try pointing it a new folder... ...Show All
Software Development for Windows Vista Calling the DDI from a User-Mod Component
Hi, I was wondering if it is possible to call MoComp functions from user mode component such as a custom filter. According to http://download.microsoft.com/download/1/6/1/161ba512-40e2-4cc9-843a-923143f3456c/VMR%20Deinterlacing_v85.doc this should be possible, but I saw on one of the forums that it was not. Could you please clarify on this issue. If it is possible, could you please provide an example on how to do that, I am interest ...Show All
Smart Device Development VS 2005B2 remote app running problems
Hi, I used to be able to run/debug applications on my AudioVox smt5600 using Visual Studio 2005 Beta 2, but now it has stopped working, and I'm stumped about how to fix it. VS reports that the deployment has succeeded. I get the little multicolored pie thingee, but it just goes on and on, and never runs the application. If I navigate to the app via file manager on the device, I can run my app without any problems. If I switch to the release c ...Show All
.NET Development logical ANDing a boolean?
I want to do this: sub procA() dim success as boolean = true for i=1 to 3 success &= procB(i) next if success then '... end sub function procB(iVal as integer) as boolean '... <return true/false> end function Basically, I want to logically AND all the tests in procB. If any are false, then success should be fals ...Show All
Microsoft ISV Community Center Forums Application in the Task Bar
Does any one explain why the application is not shown in the task bar if the form is shown modally. Is there a better way of handling the code without showing the form modally Hi Shasur, The engineer is having some trouble figuring out exactly what you need help on. Please note that VB 6.0 is actually out of our support boundary (only Extended support). http://support.microsoft.com/lifecycle/ p1=2971 What is your main c ...Show All
Visual C++ NMAKE : fatal error U1052: file date.mak not found
I am self-coaching myself VC++. I don't get it error. Could someone tell me where I went wrong Much appreciated. Thanks in advance. Header file: #ifndef Date_dot_h #define Date_dot_h 1 // Address class using dynamically-allocated strings class date { protected: int year_; int month_; int day_; public: date(); date(const int& d, const int& m, const int& y); bool valid() ...Show All
Visual Studio Express Editions Installing VB Express requires uninstalling VWD
Ok, I'm stumped... When I went to install VB Express it told me I had to uninstall VWD and SQL Server Express. I did that and installed VB, but now when I try to reinstall VWD it tells me I have to uninstall VB. Can you not install both of them on the same machine at the same time Jay Alright. Finally! I re-ran the VWD setup and had it repair and reinstall and now that seems to have solved all ...Show All
Windows Forms Order events are fired in form
I don't know if I'm perhaps following bad coding practice, but here we go: I've got an application that is dynamically opening child forms. In the form_Load event for one of my forms, I am populating some combo boxes. That works beautifully. Here's where it gets interesting: The combo boxes have sorts and filters applied when they are loaded. All three combo boxes are related to each other. I would like to figure out a way to change the text sho ...Show All
.NET Development Regarding Garbage Collection
Part of my work is to run Night Runs of our system to see if there are problems that show up after a long period of time. One morning I analyzed the last Night Run and I saw that we have a lot of Handles (above 300,000 handles) with the help of the task manager. We have an option to force the GC to run in our Console. I used this option and voila the number of handles decreased to 25,000. My question why didn't the GC detected this situation and ...Show All
Visual C# How to get a client's IP Address
I have a web app that need to get the client's IP Address. I have attempted several different methods without success. I have pasted the code below. strDNS = Dns .GetHostName(); Session[ "UserIP" ] = Dns .GetHostEntry(strDNS).AddressList[0].ToString(); I believe this will retreive the Server's IP address. strDNS = HttpWorkerRequest . GetRemoteAddress. ToString (); I believe something along these lines should work ...Show All
Visual Studio Team System VS TFS and VS SDK
I've installed VS TFS Beta3 on my VS 2005 release install. I also have VS SDK release installed as well. I can use the Team system stuff in normal VS, but when I launch VS up in the "experimental hive", I dont have any of the Team system stuff. This makes sense really, but I'd like to get it there. How can I do that Bill I'm assuming you installed the SDK before installing TFS Beta 3. If so, you will nee ...Show All
Windows Forms How to find search within RichTextBox to get string from cursor position?
In a richtextbox, my cursor is in the middle(any place) I wanted to find out the position of cursor. From there, I wanted to find a particular word or string or char (any line above the cursor) on left of cursor and make it a start point Similarly, i wanted to find out particular word or string or char on right of the cursor and make it as end point. Then, i wanted to cut the string between start and end point. Is it possible If so, H ...Show All
