Software Development Network Logo
  • Visual C++
  • Windows Vista
  • Visual Studio
  • Visual FoxPro
  • Game Technologies
  • Visual Basic
  • Smart Devicet
  • SharePoint Products
  • Visual C#
  • Microsoft ISV
  • Audio and Video
  • IE Development
  • .NET Development
  • SQL Server
  • VS Team System

Software Development Network >> TimJ186's Q&A profile

TimJ186

Member List

Simone1
nutbuilder
daniel666
Brake03
Cesar Francisco
derrickcui827
CJW99
RichardCasey
lushdog
Antonio Neeves
XNA Rockstar
Nick Colebourn
Andriy G.
adandreamohr
frank chen
christophw
Mateusz Rajca
Mark Michaelis
Sarath.
Paul Mitchell
Only Title

TimJ186's Q&A profile

  • Visual Studio Express Editions ms agent

    anyone know of tutorials or a text reference for using ms agent with .net / visual studios I am wondering if its possible to deploy it with an application I make or if the end user would have to already have all the agent things installed, which would really limit its use. Hi there goto http://www.microsoft.com/msagent/dev/docs/default.asp Well I guess you can supply the agent along with ur installation ...Show All

  • Visual Studio vs 2003 vs 2005

    Guys, New to this forum. I am working with VS 2003, and now my company asks me that they would like to move to VS 2005, and I need to provide them comparision between VS 2003 and VS2005. Is there any link which illustrate those differances Many Thanks Rik I don't think there is such table since you normally have a differential in the form of What's new lists. So, to compose such table take a look at the VS.NET 2003 features ( http://msdn2.microsoft.com/en-us/vstudio/aa700867.aspx ) and use the What's new in VS 2005 that I provided. ...Show All

  • .NET Development How I can run programs without .Net Framework?

    I am using c# put I want to run my programes on a computer without .NET Framework installed on it Can I do That Thanks So, I was wondering.. in the case that Vista brings along Framework 3.0, then we would say that from that moment these .net application will be always natives ones     ...Show All

  • Visual Studio MSBuild behavior differences between 2 build machines

    I've installed VS 2005 on two build machines (both are Win2003, one is a virtual server) using the same installation. On machine A, the MSBuild is working fine; on machine B, the first VCBuild in the build XML fails because it can't find include files even though the files are in the correct include folder. (We set the INCLUDE environment variable.) I've tried passing the /useenv switch as posted on MSDN but that doesn't help. The cl.exe files are the same. In the help-about for VS 2005 I see that machine A has this version of C#, C++, etc.: 77626-009-0000007-41360 and machine B has: 77626-009-0000007-41198, although I have no idea why they're different. Any suggestions of what to check We're trying ...Show All

  • Windows Live Developer Forums Auto select all

    Is it possible to have, when signed in, all contacts selected I still don't understand why. - End users can send spam a lot easier by just selecting every contact in Windows Live Mail and clicking "E-mail contact". - If an end user wants to export his/her contacts to another contacts manager, so be it! Exporting contacts is possible almost everywhere. In the end, it is the end user who decides whether to (de)select all data or not ...and also the one who gets RSI clicking 50 times on a mouse button, cursing the otherwise so wonderful tool. ...Show All

  • Windows Forms Applying WinXP to all app controls independent from Windows theme

    Hello all. I have application, that was developed with use of standart WinXP theme (I mean I use this theme when I was developing app and when I created application design). But when I change theme appearance I get lots of problems with design. Actually it can be done by creating my own controls and setting their appearance panually. But it will take really looooots of work. So is it possible to say application "use default Windows XP theme appearance and ignore current theme settings". Any help will be muuuuch appreciated not sure about that. Have you tried to use the EnableVisualStyles() method Place this code in your Main class: Application.EnableVisualStyles(); this has no effect for OS's that don't support the vi ...Show All

  • Visual Studio JIT Debugging error while trying to play phantasy star online pc

    I'm getting this error everytime i try to load my game under JIT debugging i have managed, native, and script enabled. it's still not working so can someone help me. i have no idea what the problem is To take Visual Studio out of the picture and make sure the game publisher is receiving the error report go to this key: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AeDebug And change the value of the "Auto" key to "0" instead of "1". This will ensure that the error report is uploaded rather than VS getting in the way. It won't stop pso.exe from crashing however - sorry. ...Show All

  • SQL Server Open query error: Invalid data for type "numeric".

    Hi guys.... I am upgrading from SQL Server 2000 to 2005 x64. I have made a connection to an oracle database.  In one of the Oracle tables, there is a field named "numID", which is Number(8). So, when I run this query: select numID from   Openquery(myConnection, 'select numID from OracleTable where numID > 100 and numID < 1000'); I get this message: Msg 9803, Level 16, State 1, Line 1 Invalid data for type "numeric". (I do see some rows returned before the error.) However, this query works: select numID from   Openquery(myConnection, 'select numID from OracleTable where numID = 6991'); This query also works: select Convert(Int, numID) as numID from   Openquery(myConnection, ...Show All

  • Visual Basic Make .CS & .VB files one line per statement

    Is there a utlity that anyone knows of that can process VB.NET and C# .NET files so that all statements are 1 per line and there are no annoying "+" signs that continue the current statement on to the next I am writing a substitution program and need to substitute all ocurances of a connection string, which many of the times runs over to the next 2 or 3 lines. thanks, David I know this isn't exactly the answer you are looking for, but why are you hard coding the connection string in your application It is often preferable to include this information in the .config file which allows you to change it based on deployment and not need to recompile the application. If you are concerned with security ...Show All

  • Software Development for Windows Vista How can MPC play avi video with bad indexes?

    Hi I'm using Visual studio 6.0 and directx 8.1 SDK, and I got a problem in my directshow application. I need to play avi that could have bad indexes. If I play them using MPC I got not problems, if i try using IGraphBuilder:RenderFile(), it can not build the graph. Using Graph Edit, I noticed MPC uses different filters when it plays video with bad indexes, but that filters are not available in DirectShow, and using IGraphBuilder:RenderFile() the GraphBuilder can't find them. Does someone know something about the filter used by MPC Does it use internal filter Is it possible using them Can you play avi with bad indexes using directshow If yes, what codec are you using Is available source code for repairing an avi with bad indexes Pl ...Show All

  • Visual Studio Express Editions Matrix free function problem

    Hi everyone, My program creates a matrix with the specified size. And it also some additional function that can free the matrix. However, when I call the below main function, my free function does not work properly so how can I fix it For example the outpt that I gave when I ran the below application; Sorry,we can not perform the add operation since the sizes of matrices are different 1 2 3 4 2 5 6 7 3 6 8 9 4 7 9 10 0134526920134526944134526968 134526920 5 6 7 134526944 6 8 9 134526968 7 9 10 so how can I correct this 0134526920134526944134526968 134526920 5 6 7 134526944 6 8 9 134526968 7 9 10 The codes for .cpp file; #include ...Show All

  • Windows Forms base.onload(e) is taking too much time

    Hi All, I have created on form..................which runs independently very fine.......good performance...... but if i put this form in another applicaton its base.onload(e) is taking hell lot of time............ it's about 16 seconds.................................. what could be the reason So none of my other suggestions helped you solve your problem either How are you using the Form in your other application Can you create a small example that demonstrates your problem and make it available online ...Show All

  • Visual Studio 2008 (Pre-release) How To: Attach event handler to element in DataTemplate?

    This question/problem is a little bit esoteric, but hopefully someone has seen it before... I need to attach an event handler to the Loaded event of Image elements within a DataTemplate. The Loaded event handling method is in a utility class, so I can't use XAML to attach the handler. In a Window's Loaded event handling method I call this method in the utility class : FrameworkElementFactory factory = listBox.ItemTemplate.VisualTree; while ( factory != null ) { if ( factory.Type == typeof ( Image ) ) { factory.AddHandler( Image .LoadedEvent, new RoutedEventHandler ( OnImageLoaded ) ); break ; } factory = factory.FirstChild; } There are two problems, one is not too bad (just odd) and t ...Show All

  • Visual Studio Several errors remain after repairing VS05 after failed SP1 update

    Tried to install VS SP1, failed (ran out of disk space), broke Office 07 and VS. Tried to repair .NET 2.0, failed. Deleted C:\WINDOWS\WinSxS\Policies\*.* (but left the folder itself) Repaired .NET 2.0 successfully, Office 07 runs again Repaired VS05, Visual Studio runs again but gives this error when compiling C++ projects. In addition, it gives this error when opening some, but not all, C++ projects: The following error has occurred during XML parsing: File: D:\Dev\gaim\v2_0_0beta5\libgaim\protocols\bonjour\bonjour.vcproj Line: 26 Column: 4 Error Message: System error: -2147154664. The file 'D:\Dev\gaim\v2_0_0beta5\libgaim\protocols\bonjour\bonjour.vcproj' has failed to load. And when I close V ...Show All

  • Visual Studio 2008 (Pre-release) small caps

    Hi can anybody know how to get small caps(just like in ms-word) in textbox or richtext box. Thanx-Nagu Hi like this " Hello How R U" here font size (11) is same for all but its look like some different ...Show All

©2008 Software Development Network