Software Development Network Logo
  • Game Technologies
  • Visual Studio
  • Visual FoxPro
  • Architecture
  • VS Team System
  • Windows Vista
  • Windows Forms
  • Visual C#
  • VS Express Editions
  • Microsoft ISV
  • Windows Live
  • Visual C++
  • SQL Server
  • Visual Basic
  • Visual J#

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

tziganata79

Member List

HarisRashid
Leoyoo
bmanmike39
Mike Smith-Lonergan
BacchusMann
Demitry
Jay890
Pavel Orehov
DanCR82
hugoplatzer
nivz_k
jherbst
Karl H
Wolverine10
Mr Big56911
Ezhilarasan M
wayne howell
RogerFraser
Jon Masters
mikem2042
Only Title

tziganata79's Q&A profile

  • Visual C# XmlInclude works but now my objects dont serialize

    Hey all  I have an object that contains a strongly typed array of sub-objects. I have marked all of the objects as serializable. However initially it wouldnt serialize. So I found online that if I use the XmlInclude attribute that will fix the problem, which it sort of did. It serializes now and the basic object comes across the wire (with web services) just fine. The collection is there and has objects however all the objects are null. Any ideas on what could be wrong Thanks Kenzie Hi Kenzie, Could you post your code Thanks Poppyto ...Show All

  • Visual Studio 2008 (Pre-release) SvcUtil exclude datacontracts

    I'd like to exclude datacontracts from being generated with SvcUtil. There seems to be a /dataContractOnly switch, but there is nothing like a /proxyOnly switch. I already took a look at the /excludeType switch, but that doesn't seem to work. Hope somebody can help me out, Thanks, Gerben. Unfortunately there is no equivalent of /dconly to do proxy alone. You can prevent svcutil from generating datacontracts by using the /r option, if you already have an assembly that contains the datacontract types. In that case svcutil will use the type definitions from the assembly. I hope this clarifies. ...Show All

  • Windows Forms about calendar control

    Hi !  I had added a MonthCalendar control to my form and found that when I changed the setting in the regional and laguages options in control panel to Vietnamese , the calendar changed to Vietnamese immediately . Can anyone tell me How I can change regional setting by code or anyway to display my calendar in vietnamese.   thanks alots  ...Show All

  • Visual C++ binaries compiled using VC8 not running on IA64

    As VS 2005 is not supported on IA64 platform i had to use cross-compilation on 32bit machine. i did vcvarsall.bat x86_ia64 for setting the build environment. after building the application i tried running it on  IA64 machine but it is not running. D:\samples>exercise.exe The system cannot execute the specified program. manifest info is embeded in the application and in its dependency dlls. on checking C:\Windows\WinSXS folder the CRT dlls and manifest were missing. so i copied the dlls and manifest files from my VC8 installation. dlls from C:\Program Files\Microsoft Visual Studio 8\VC\redist\ia64\Microsoft.VC ...Show All

  • .NET Development No of threds in DotNet

    hi, i want to know how many threads will be thier(running) when an dotnet application runs. Is GC running as a seperate thread by default Thanks, Suresh. ...Show All

  • Windows Forms Change Focus after Move

    We have a C#/VS2005 application with a modeless ToolWindow form that sits over the main form. After any action is performed on the ToolWindow, focus is set to the main form, so that the main form will receive user keystrokes, shortcuts, menu mnemonics and the like. The only action we are having trouble is moving the ToolWindow (i.e. dragging its title bar). We've captured both the Move and LocationChanged events and they have two problems: 1) they fire constantly during the drag, and 2) after the dragging is finished focus stays on the ToolWindow, even though we explicitly set it to the main window. How do we handle this scenario Thank ...Show All

  • Visual Studio Team System Lost version control mapping in Team Explorer tool window

    I created a team project called Foo.  Then I created a workspace via the command line called Main that mapped $/ to C:\Projects\Foo.  It turns out that mapped the root of the repository which I discovered after I added some directory not to $/Foo but to $/.  So I remapped $/Foo to C:\Projects\Foo.  Then I wanted to move the dirs from $/ to under $/Foo.  Well now I had to map $/ to C:\Projects (that seemed to remove the $/Foo to C:\Projects\Foo mapping).  I got the directories moved and then I unmapped $/ to C:\Projects.  Then I tried to reset up $/Foo to C:\Project\Foo but it said it didn't know which works ...Show All

  • Visual Studio VS2003 vs. VS2005 Addin model

    Is there any thing that give an overview of the differences in the add-in model between VS2003 and VS2005 I'd like my add-in to work in both but need to know what the compatability is. -THumphries The help topic, Migrating and Upgrading Add-ins from Visual Studio .NET 2003 to Visual Studio 2005, is a good start. Jo. Molnar Visual Studio Extensibility User Education ...Show All

  • Smart Device Development Get Device ID from Desktop

    Hi All, First of all, I would like to apologize if this is not the right forum to post this type of question. I have tried to post it in .NET Networking & Compact Framework section, but there were no replies. I would like to create an application that reside in desktop side, that is capable to get the device id from the PDA through ActiveSync. I have been able to retrieve the id through P/Invoke (KernelIoControl) if the process is executed inside the PDA. However, it has been a lot of difficulties once I try to do it through desktop. I read about RAPI, and found that there is an unmanaged call from ceutil.dll (CeGetDeviceId) ...Show All

  • Visual Studio Team System TFSClient cannot able to connect TFSAPP

    Hi, Installed VSTS in DATA Tier, and went with Dual Server Installation. Installed application tier in TFSAPP machine and client in TFSCLIENT. I opened the Visual Studio and tried to add the server i am getting following error. Unable to connect to this Team Foundation Server: TFSAPP.     Team Foundation Server Url: http://TFSAPP:8080.     Possible reasons for failure include:     - The Team Foundation Server name, port number or protocol is incorrect.     - You don't have sufficient permissions to connect to this Team Foundation Server.     - The Team Foundation ...Show All

  • Visual C++ Solution Explorer taken a step back?

    In VS2003, the solution explorer allowed you to re-order the folders in a project, albeit it was cumbersome. Also, there was no way to sort the files within a folder without taking them out and putting them back in in the order you wanted (and there was no 'sort alphabetically' anywhere, either). In VS2005, everything is sorted alphabetically and it seems impossible to reorder anything. I want to reorder the folders (now called filters). I use them (doesn't anyone else ) to organize logical parts of a project into meaningful sections so that it's easy to find the source file and related files for some piece of the project. Is there any way ...Show All

  • Windows Forms Express Editions!?!? What?

    I just saw the latest Microsoft This Week Newsletter in my email banging on about VS.Net 2005 Express Editions.  As I understand this from reading the mail it's cutdown versions aimed at students and hobbyists.  The question is will these editions replace the Standard editions of the current products like the ones I use Yes I am a student and hob ...Show All

  • .NET Development how to use the pre-compiled generated serialization assemblies to serialize/deserialize an array of my objects?

    I am using the pre-compiled serialization assemblies generated with the v2.0 framework sgen.exe. I can use the generated serialization assemblies to serialize/deserialize the my objects without problem. But, how can I use the generated serialization assemblies to serialize/deserialize an array of my objects for example, I have a class called User, how can I use the UserSerializer from the generated serialization assemblies to serialize an array of User Thanks in advance Here is the SGen.exe related documentation: http://msdn2.microsoft.com/en-us/library/bk3w6240.aspx Daniel R ...Show All

  • SQL Server Resources about Load/Run SSIS packages using .NET Remoting.

    Hello, I don't have a specific problem, I'm looking about resources because this is the tipical case when something is working but I don't know why .. On particularly I have to load and run a dtsx package from a window application and the package is located on the server. I decided to use .NET Remoting. I developed my "Remotable Object" which contains: package = Microsoft.SqlServer.Dts.Runtime.Application. LoadFromDtsServer() package.Execute() etc....etc... The window application calls the Remotable object, call the specific method and the package is loaded and run successfully. When I studied the .NET Remoting there is also Ser ...Show All

  • Visual C++ How to creat a very custom project

    {edit} I posted before searching...bad.  Anyway this topic is covered in about ten other threads and there seems no current solution.{edit}   I love VS IDE, I would like to be able to use it for all my development endeavors (and they are many and varied).  I am a .net developer during the day and a video game console programmer in my free time ( and occasionally even professionally ).  I do a lot of work writing code for cross compilers and currently I just create a very generic make file and use the makefile project template to direct VS to do my bidding. There is a lot of info on creating templates but mo ...Show All

©2008 Software Development Network