Tyderian1978's Q&A profile
Visual C# Please write the linksof Free C sharp Vedio Learning
Please write the linksof Free C sharp Vedio Learning You Can Try it From Here http://msdn.microsoft.com/vstudio/express/visualcsharp/learning/default.aspx I founf it very Useful. Regards. ...Show All
Visual C++ Error including wab.h
By including wab.h I get a wchar redefinition in wabdefs.h: E:\Programme\Microsoft Visual Studio 8\VC\PlatformSDK\include\wabdefs.h(78) : error C2371: 'WCHAR' : redefinition; different basic types E:\Programme\Microsoft Visual Studio 8\VC\PlatformSDK\include\winnt.h(266) : see declaration of 'WCHAR' when I use VC8. How can I solve it From www.voidnish.com You cannot #include wabdefs.h with VC++ ...Show All
SQL Server Cannot Connect to SQLExpress
Hi everyone, I'd like to ask some help. My prob may seem very basic but as a matter of fact i'm a newbie to .net and sql 2005. I'm trying out this product but I encountered an error. After installing sql server express 2005, and using my server instance name (the default name "SQlExpress" during install) and password to connect, I always get the error "Timeout expired. The timeout period elapsed prior to completion... blah blah blah". Thoug ...Show All
Windows Forms How do I maintain a single instance of mdi child forms?
I am sure that there is a simple answer but I can't find it. I have a mdi form with a number of child forms and a number of grandchild forms. I do not want to run more than one instance of any form (child or grandchild) at any time within the mdi container. I have used the instruction my.forms.formname.close() before I open (show) a new instance of a form but this is ineffective and seems to be ignored. All the forms open and close OK when ...Show All
Visual C++ "Create Event Handler" not working?
I have a dialog with several controls. I right click any of these controls and click "Create Event Handler". The dialog appears and there is a list of classes to choose for the function to be put, but the left side has no list of events to handle. Everything is basically blank. Why is this not working Have you got any manually-hacked resource header or script files in the project Perhaps the add even ...Show All
Visual Studio Express Editions Problems playing audio from resource
Let's say I have 10 .wav files in my Resources folder named 1.wav 2.wav 3.wav etc and I want to play one at random. How could I do it I've been trying something like this but you can't do it.. Private Sub Button4_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click X = CInt (Int(Rnd() * 10) + 1) My .Computer.Audio.Play( my .Resources. X, AudioPlayMode.Background) End Sub ...Show All
Visual Studio Express Editions publish - prerequisites problem
publish - prerequisites (download prerequisites from same location as my application) c# express\ There's no way that this will get through the publish wizard. I always get loads of errors like Error 4 The install location for prerequisites has not been set to 'component vendor's web site' and the file 'DotNetFX\dotnetfx.exe' in item '.NET Framework 2.0' can not be located on disk. See Help for more information. CRB Question; I ...Show All
Windows Forms DesignSurface Control Selection problems
We've implemented a custom designer, using DesignSurface etc. and it's all working OK except for a minor niggle: I drag a control from the toolbox onto the design surface, and the SelectionChanged event is fired, and our handler sets the selection on a PropertyGrid. This all works as expected. The problem is that when I click on my control for the first time, the selection changes to the DesignSurface control. Why If I click on the cont ...Show All
Smart Device Development Is there no BackgroundWorker Process in the C.F.?
Is this true I can't find it under teh Components tab in VS... Thanks Tryst ...and to get you started with a sample (plus a VB version) check these out: http://www.danielmoth.com/Blog/2004/12/backgroundworker-sample.html http://www.danielmoth.com/Blog/2004/12/backgroundworker-for-cf-10.html Cheers Daniel ...Show All
Visual Studio Express Editions Program flow - order of execution.
As a real novice I am writing a small application to measure a persons reaction time by presenting a prompt on screen and then measuring how long before a key is pressed. My problem is understanding the program flow. When run the form is presented and then when the Start button is pressed there is a short, random delay and the prompt presented. The clock stops when any key is pressed (sub EndTimer) and the time presented - all as expected - b ...Show All
Visual C++ char array
I am trying to create a 3-dimensional array that stores records in 38 rows, with 3 columns. This array has a mixture of letters and numbers, so I declared a char array, the problem is, the rows with more then one character get truncated (00, 10, 11 become 0, 0, 1). Is there a way I can declare this array properly in order for it to allow me to have 2 characters in certain sections Below is a sample of the array. char array[38][3] = {{'0', 'G', ...Show All
SQL Server Decoding Decimal Form of HRESULT from ErrorCode
I have an OLE-DB Command transformation that inserts a row. If the insert SQL command fails for some reason, I use the "Redirect Row" option to send the row to another OLE-DB Command transformation that logs the error on that row to a "failed rows" table. In this table I log the ErrorCode and ErrorColumn values that come with the error path from the first OLE-DB Command. OK, that's all working great. However, here's the kicke ...Show All
Software Development for Windows Vista custom activity
hello all, i have tried to create a custom activity, which should be available in the activity toolbox. but i only was able to create an activity, which needs to have following activities in itself (designer shows the activity with the activity name and an arrow below which points to 'drop activities in here'. is it possible to create a custom activity without following activities in it (i hope you know what i mean...) this is, ho ...Show All
Visual J# Support for Code behind HTML in IE- after KB896727
We have an application that uses code behind HTML. It stopped working after the KB896727 Hotfix update, on all client machines with Win2K and WinXP OS and IE 6.x browser. Is there a work around for this problem. Thanx Hi, To understand your question better, Which language is the code behind HTML written Of the top, it looks like its a IE related issue. However in parallel, as Jaiprakash said, you ...Show All
Visual C# Graphics Problem
hi iam writting an application where picture box control has to draw set of points point by point some specific time. my problem if i use picturebox.creategraphics() for drawing , graphics lines are disappearing if i minimize or max. another method is picturebox.image = new bitmap(pb.height,pb,width) g = ghraphics.fromimage(picturebox.image) if i use this i could not able to see lines drawn by g. i could able to see only if i u ...Show All
