Helschaee's Q&A profile
Windows Forms Source code, server and future
So as several of you have noticed, the source code for 1.2 hasn't been released yet. I am trying to figure out what is the best approach for releasing the source code and the future of Terrarium 1.2. Here are the current thoughts.&n ...Show All
Visual Studio Team System TeamSystem and Visual Studio 2003
Hi, I just evaluate TeamSystem for our company. One required feature is to use TeamSystem fully integrated within the Visual Studio 2003 IDE. Is there an AddIn for VisualStudio 2003 available, or if not, are there plans from MS to provide this feature in the future Thanx in advance! voko I'm not quite sure that I understand the question. In VS, there is the Source Control Explorer (available from View -> Other Windows -> S ...Show All
Visual Studio 2008 (Pre-release) VS Extensions December 2005 CTP on Vista do not work correctly
I installed Visual Studio 2005 TS RTM, WinFX, WinFX SDK and VS Extensions on Vista 5270. I could load my November CTP Projects without problems and the Cider designer works fine but I don't have any project templates ... There are no WinFX Projects and no WinFX Project Items available :-( I noticed that LINQ Setup fails to install at the point when it copyies its project templates ... Per the WinFXReadme.htm file (found in Program ...Show All
Windows Forms parent-child data relation
Is there any way to display child data in the same datagrid as the parent data, given that the child data will have different columns etc At the moment, my parent datagrid has '+' buttons in the row headers, which when clicked reveal a li ...Show All
Visual Studio 2008 (Pre-release) Annonymous Types in C# 3.0?
I've just read on Wikipedia that C# 3.0 is going to include annonymous types... I really hope Wikkipedia is wrong! What's the point of creating a flexible strongly typed language like C# and then spoiling it with annonymous types Yes, C# 3.0 will have anonymous types. (At least based on all current guidance. It's not yet released, your mileage may vary, void where prohibited, blah, blah, blah). But, anonymo ...Show All
Visual C# How do I delete multiple files (Code Request)?
Hi! How do I delete multiple files in C# I would like the specific code. Thanks! Matt Hi: public static void DeleteFiles() { FileInfo[] files = (new DirectoryInfo("C:\\Test")).GetFiles(); for(int index = 0; index < files.Length; index++) files[index].Delete(); } bye. ...Show All
Windows Forms Dataset mode?
In web service, how could i realize that the dataset is in insert,update or delete mode More info: Pretend some changes happed in dataset in client side. In my program the response of the web service for each case (insert,update or delete)&n ...Show All
Smart Device Development How can i find the received path
Hi, I am developing device application using visual studio 2005. I have one doubt. "How can i find the file path for the file which is lastly received (pasted/stored) by the device (from desktop to pocket PC)". Please send the suggestion as early as possible. Thanks, GANESAN .M If I understand you correctly, you should be able to use FileSystemWatcher class from OpenNetcf.org to monitor device file system. Or y ...Show All
.NET Development caspol.exe issues
I've been using http://msdn.microsoft.com/library/default.asp url=/library/en-us/cptools/html/cpgrfCodeAccessSecurityPolicyUtilityCaspolexe.asp to try and figure out Caspol to deal with .Net permissions, but I'm having no luck, and was hoping someone could help me figure out what I'm doing wrong. I need to give a specific url Fulltrust permission. I thought that 'caspol.exe -machine -addgroup -url http://www.someurl.com/ * fulltrust' would w ...Show All
Visual Studio 2008 (Pre-release) ShowDialog question
Hey all: I need some help in figuring out how the ShowDialog method works in WinFX. In the code below, I have a loop that shows a Window called Login as a Modal dialog using the ShowDialog method. If the model returns a DialogResult of false, then the code loops and shows the login form again. The problem is that when the code loops, even though ShowDialog is called again, the code is not blocked and continues to execute. Any ideas why Do I ...Show All
Visual Studio 2008 (Pre-release) Where do I get System.ServiceModel 3.0.0.0?
Hi, OK, so I followed the installation instructions to a tea and am able to define a service in VS. However, when I try and add a reference to the service from a client, I get this error: Could not load file or assembly 'System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' or one of its dependencies. The system cannot find the file specified. I looked in my GAC and I see only version 2.0.0.0 of this as ...Show All
.NET Development Installing .. advpack.dll
Not sure if this is where to put this question but I can't find anything else on these forums (shrug ). I'm trying to install the 2.0 redistribution package and get an error with c:\windows\system32\advpack.dll when trying to install. Any suggestions The reason I'm looking to install it is because I have an application that requires it. Maybe I actually need something different Ugh. lol Has anyone ...Show All
Visual C++ C++/CLI byte array
I am running into some confusion with the new C++/CLI syntax. Basically I need as a parameter set for two functions the equal to: void somefunc(unsigned char *pBuffer); void someotherfunc(unsigned char **pBufferPtr); Would the equal be System::Void somefunc( array < unsigned char > ^pBuffer); System::Void somefunc( array < unsigned char ^ > ^pBuffer ); Thanx, Brian Hi Brian, The first step ...Show All
.NET Development Which thread is running for a callback function of Web Service Asynchronous Call?
In .NET 2.0, which thread is a callback of WS asynchronous call Is it in the caller's thread or a different thread ...Show All
Visual Basic Unit testing for beginners?
I haven't found any beginner articles on how to use unit testing in VB. I'm not even sure exactly what it is (well, I understand the general idea). I'd love for some info or pointers for how to use this technology to help me write more robust code. Can anyone out there help me Keep in mind that I'm not a enterprise developer working on an n-tier scalable system, in a large scale team environment, blah, blah. Just an intermediate level coder that ...Show All
