ShikhaVaid's Q&A profile
Visual C++ Can one get Window Station Handle for a specific PID?
Hello all, Could anyone tell me how to do that show in a subject Thank you. Get the top-level window handle for the process. Enumerate the window stations with EnumWindowStations, enumerate the desktops for each window station with EnumDeskTops, enumerate the windows in each desktop with EnumDesktopWindows until you find a match. ...Show All
Visual Studio Team System Merge/shelve/Source Control Explorer Strangeness???
Here is the scenario as best as I can describe it. I'm hoping someone can explain why/how these things can happen. 1. Developer#1 attempts a merge from top of tree to branches\v1.0.x, gets some type of error (maybe SQL error but it put pending changes) Any ideas of what can cause sql errors 2. Due to the error that developer was seeing I (Dev#2) did the merge with no errors and shelved my changes for that developer to unshelve, review then checkin. The developer did this. 3. Developer #3 At some point during the above did a shelve of items they were working on in the branch. 4. Developer #3 notices a branches\v1.0.1 tree with just the files from Developer #1. They also notice some items in the shelve they did show up in v1. ...Show All
Smart Device Development NotSupportedException was unhandled
hello, I got this exception on the first line of this code in the designer: // // pictureBox1 // this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image"))); this.pictureBox1.Location = new System.Drawing.Point(3, 3); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Size = new System.Drawing.Size(222, 94); Basically i just added a picturebox to contain a jpg image. this form is common to all the applications and they work fine with the others. but the app im working on throw me back the error message. Im using VS2005 CF .net 2.0 so do the other app (which are written by me too). So i don't get it. why the others are fine but this later doesn't work. Any suggestion ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Where is the free artwork that was promised for XNA?
In a lot of articles I've read they said the XNA would have a large database of free artwork (both 2D and 3D). Is this available somewhere Thanks, John From the XNA website about Content Creators Club: "Both subscriptions provide aspiring game developers with access to thousands of game assets from Microsoft and key partners such as Turbo Squid Inc., as well as white papers, specialized starter kits, samples and technical product support to help turn Your World, Your Game into a reality." Personally I haven't seen anything open up content wise in the realm of thousands of game assets (so far I've seen zero.) ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Audio Analysis
Hi, Is there an easy way to gain access to final sound buffers using the XNA framework What I'm aiming to achieve is an oscilloscope style wave display of the currently played audio. Is this at all possible Cheers, 71M You can read streams...and try to analyze that. But, believe me you don't wanna do this unless you are creating some "sound/music based" app. http://en.wikipedia.org/wiki/Pulse-code_modulation . ...Show All
Visual Studio Express Editions Question about the EULA
Hello. I'd just like to ask, is the EULA just an agreement between the maker of software and the user, or is it actually a legal thing if it is a legal thing, how do you get it Am asking because as am still new to programing I dun't fully understand it, and av still got a lot to learn. Than you. http://www.webopedia.com/TERM/E/EULA.html http://en.wikipedia.org/wiki/EULA Hope this helps you!!!! ...Show All
Community Chat Windows Code Named Vienna
Can Anyone tell me how compatible it is going to be with previous versions of Windows. " And that Microsoft will 'start from scratch' [with Vienna] because of the clutter Microsoft Windows currently has." After being incredibly successful with VAX/VMS, Digital undertook development of a new operating system code name "Prism" with a matching processor for Prism. The project was going successfully for about two year with Dave Cutler as the lead architect at which time Digital canceled the project. Cutler and Many of the people went to MS and developed Windows NT for "new technology". How curious it was that Just as you subtract 1 From HAL in 2001: A Space Odessy the result is IBM. If you do the same ...Show All
.NET Development Get data from database
i want to have a button and textbox on my form and when i type in a username and click the button i want a lable to show what the password is for that username. With the code you gave me it comes up with a blue underline under the reader and says that it is not declared Why is this and what do i have to do to get it to work ...Show All
Visual C++ ReadProcessMemory crashes computer
I am using CreateProcess, then using the process handle that returns and passing it to ReadProcessMemory. I have about 10 addresses I iterate through using ReadProcessMemory on each of them every 200 ms. Whenever there is a change detected in one of them, it will output the string ReadProcessMemory returns from the target process's memory. When I print this string to the console, my computer will emit an extremely loud system beep and crash, or it will just emit an extremely loud system beep. I haven't tested my program on any other computers yet, but if it is a computer specific-issue, but I'm running the program on a Dell Inspirion 9300 laptop. On a related note, if I'm playing a game or doing something else fairly processor intensive (r ...Show All
Microsoft ISV Community Center Forums Open PDF file
Hi everybody, I'm creating a program in MS. Access but I just want to ask:, how to open *.pdf(extension) file in visual basic access (vba) thanks in advance. :-) By double clicking the desire path in the data sheet view, the *.pdf file name would be open. For example: Path = \\ipc154\contract\filename.pdf when you double click that path in the datasheet view it will open. Do you have code for that application sweet ...Show All
Visual Basic disable text change event
i am having a text change event, i am writing a function to clear the values, while doing so the text change event is triggered and unwanted things happen, i need this event to happen when the text edited manually and not while clearing the text through the function i need that event not to be triggered while clearing the values of the textboxes, is there any options in VB.net to disable that event for temporary and then enabling the functionality Thanks in advance URGENT!!! But i currently use private sub Clear() RemoveHandler txtFirst.TextChanged, AddressOf Inputs_TextChanged txtFirst.text = "" AddHandler txtFirst.TextChanged, AddressOf Inputs_TextChanged End Sub is this ok too but sometimes it still seem to tr ...Show All
Architecture a good book for me
Hello everyone, Well, now I have grown in my company and I will have a few more responsabilities, I will be project leader of small projects, and I would like to ask you for a good book for me. Perhaps one about methodology, agile or XP, about team system, or perhaps about enterprise patterns or something. Well, waiting for your suggestions Thanks in advance. well, i think i want one about patterns. I am between Fowler’s one and Head First one (I am a bit embarrasing writting this, i am not interested in the cover’s girl). It is possible to read fowler's cover to cover some books are, as we say in Spanish, a brick, so they are impossible to read completely. ...Show All
Visual Basic small Question .. but Important !!
Hi Every one ... I'm hav a small Code in C# and I want to Convert in to VB plz Help : Public class my class { . . . public mymethod(.....) { SendMessage(handle, 0x0318 , hdc, (0x00000010 | 0x00000004 | 0x00000002) ); // here the problem when i'm converting to VB.Net (2003) . . . } //external function [DllImport("user32.dll")] private static extern IntPtr SendMessage(IntPtr hWnd, int msg, IntPtr wParam, int lParam); } I'm Convert successfully : <DllImport("user32.dll")> Public Shared Function SendMessage( ByVal hWnd As IntPtr, ByVal msg As IntPtr, ByVal wParam As IntPtr, ByVal lParam As IntPtr) As IntPtr End Function but what i hav 2 to when i'm calling "send ...Show All
Visual Studio Express Editions I need help installing Starter kits!!!!!!
Hi, i tried installing a starter kit. and when i get to stage 2 of the installation i get errors on everything thats installing. All the errors read: Installation stopped because the directory for the ProjectType value did not exist. The project type is invalid for your installation of Visual Studio. Please can you help me, I need the starter kit so i can create my band website Can you point me to the *exact* Starter Kit you are trying to download and the *exact* product(s) you are using to better diagnose what the issue could be You should be aware that Visual Studio Express Editions do not have extensibility support, so if you're trying to install an add-in, that's the issue. Thanks, Dan Fernandez Lead ...Show All
Visual Studio Team System Load test with Unit Test
Facing the error when trying to run the load test. Error Description :Error LoadTest1 TestProject1 (Computer Name) Could not access the load test results repository: The number of rows inserted or updated by an operation on the results repository (1) did not match the expected number (-1) . Tried setting up the store repository using SQLCMD /S localhost\sqlexpress /i loadtestresultsrepository.sql as I am using the Sql Express. Provided the correct connection string using the "Administer test Controller" yet not able to run the Load test. Help on this highly appreciated. Thanks, Mazzie Thanks. Unfortunately, I really can’t see anything in the load test that would cause the erro ...Show All
