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

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

Chipe

Member List

Whitegirl23
GapIT
J Guy Davidson
Dave Heinemann
Manjubashini
mayankjohri
tmike
rodolfogr
pVoice
dognardo
Aaronru
shy_man
eappell
vinoraja
Daniel Graham
MrBillNJ
Ken Morley
Ragz
VinuM
qxj
Only Title

Chipe's Q&A profile

  • Visual Studio 2008 (Pre-release) can't use the Http test page about the indigo(Feb,2006 CTP)

    When i have built the Server successfully in the Feb,2006 CTP. I use the http protocol,but when i type the :http://localhost:3721/HelloWorld/ IE,it will show error message ,doesn't show the indigo test page: HTTP 500,internal server error I have closed the firewall. Below is the source code and config file. why thanks a lot~ Waiting~~~ ----------------------------------------------------------------------------------- using System; using System.Collections.Generic; using System.Text; using System.ServiceModel; namespace HelloWorldService { //Define a Service Contract [ServiceContract(Name = "Hello ...Show All

  • SQL Server path query in cyclic graph? --recursive CTE

    Hi I wrote a simple sql query to get the shortest path length from node 1 to all the other nodes. Since there's a loop in the graph, I want to prevent it from going back to some nodes it has expanded before. I got the following error: Msg 253, Level 16, State 1, Line 2 Recursive member of a common table expression 'CTE_Sample' has multiple recursive references. It is referring to "and Table1.t NOT IN (select fr from CTE_Sample)" Can somebody help me to solve it btw. How to use the UNION, EXCEPT or INTERSECT operators when doing the recursive join It seems I must use UNION ALL. Thanks! drop table Table1 ...Show All

  • Software Development for Windows Vista Finally activity?

    In an EventHandlingScopeActivity, how can I do a finally block For example, what is the equivalent of this try { DoWork1(); DoWork2(); ... } catch (Exception1 ex1) { HandleEx1(); throw; } catch (Exception2 ex2) { HandleEx2(); throw; } finally { DoSomething(); } Thanks in advance We have no official "finally" solution OOB, though there is an easy, generic way to achieve it through a custom activity: Implement a custom activity that allows one activity as a child and one activity as a finally block. In your exec ...Show All

  • Visual Studio VC++ 6.0 installer crashes on xp

    I have winxp pro SP1 US.  When trying to install VC++ 6.0 pro, I just get this message: 'setup has encountered a problem and needs to close.  We are sorry for the inconvenience.' A crash. But think the cd is good.  Are there problems installing vc++ 6 on xp  I'm wondering if some file in my one year old xp installation is corrupted, and is causing this crash.  Other apps install just fine, but then again they probably use a different installer.  I'm hoping to avoid having to reinstall xp, cause it takes hours, and other programs work fine still. IS there anyway you can send ...Show All

  • Visual Studio Team System Item Tracking Alert in Beta 2

    Hallo, I have installed the Beta 2 of the Team Foundation Server and configured the alerts so that I get all of them. ( My work Items change, Anything is checked in, A build status changes, A build Completes ). If I make a check in, I got an E-Mail, but if something changes on work items, I get nothing. Does anyone have an answer Thanks Alex There have a few different known issues with Workitem alerts. Could you give me more details about the kind of changes you are making to the WorkItems This will help me figure out if this is one of those known issues. Thanks. ...Show All

  • Visual Basic [VB6] Large number of environment variables cause crash

      Environment variables If I create a large number of dummy environment variables ( to simulate client issue) my VB6 application crashes. The application does not request any environment variables directly so could this be a memory issue. Dr.Watson on my machine shows ChildEBP RetAddr Args to Child 0013d824 74124608 0013d84c 741a36cf 0013d854 ntdll!KiFastSystemCallRet 0013ffb8 00414d9e 004153c4 7c816d4f 00320039 MSVBVM50!_vbaVarDateVar+0x2f7c 0013fff0 00000000 00414d94 00000000 78746341 GMIS+0x14d9e but on the client site where this is happening, 0012dcb0 01c4430c 01dd0000 00000000 00000070 ntdll!RtlIni ...Show All

  • Visual Studio Team System Extra strain report (overeffor or sobreesfuerzo in spanish)

    I dont know if I told it right in english but I would like to make a report that telles me if I plan a task for 10 hours, and it took 12 hours, there is an "sobreesfuerzo " of 120% in that task. Hola, In order to create such a report, I recommend using the report designer and writing an MDX query using the Baseline Work, Completed Work and Remaining Work measures and creating a calculated measure to compute the percentage you want(slice the data by the appropriate dimension measures such as Work Item Title or ID....). Thanks, Othmane ...Show All

  • .NET Development MultiStream files

    Hi all. I have a "small" problem: I have noticed that if I am using FileStream to open a file that contains multiple streams, I am getting only the main stream of that file. Do you know if there is any possibility to read the whole file Thanks. Mircea I honestly don't know. I am not part of the product team (or Microsoft), but based on the information on MSDN Product Feedback (see my original reply), they are currently deciding if it is in the Visual Studio "Orcas" release or not. ...Show All

  • Visual Studio Express Editions Shortcut Keys

    How can a make a shortcut key combination ( ie ctrl+shift+q) open a form Assuming you mean at runtime... just for note though... traditionally a shortcut key is a keystroke that works inside of the app... like alt-f bringing up the file menu... what you are looking for is a keystroke that would be able to trigger an event regardless of what app is running... for that you are looking more into the realm of setting up a hotkey. Take a look at this CodeProject article for some code and an explanation on how to do it. ...Show All

  • Windows Forms User Control

    i made a custom user control. I would like to add this control to a group box at run time. What is the best way to do this private void NewXML_Click( object sender, EventArgs e) { xml_groupBox.Controls.Clear(); xml_groupBox.Controls.Add(xmlUserControl1); } Cisco This is indeed a best practice, here is a little example to create an control that will fill the container control ( xml_groupBox ) because we set the Dock property to DockStyle.Fill and add it: private void NewXML_Click( object sender, EventArgs e) { xml_groupBox.Controls.Clear(); XmlUserCo ...Show All

  • Visual Studio 2008 (Pre-release) Publish and Subscribe Callbacks. Client Notification of Server Crash.

    I am writing a program that uses the Subscribe and Publish pattern with WCF callbacks. I am concerned that if the server shuts down (crashes) the client will still think he is subscribed to the service and waiting for notifications. Does anyone know of a way for the client to be notified that the service not longer has his subscription Let me know if you need any more information. John Please see this sample. I think it may be what you're looking for. http://windowscommunication.net/ControlGallery/ControlDetail.aspx Control=2258&tabindex=2 Thanks, Scott ...Show All

  • Windows Forms Design mode of custom control hosted in UserControl

    Here's my problem. Throughout my code in a custom control I check to see if it's in design mode. If it isn't I don't do anything, if it's not then I do. (I have to do this because I'm using MSHTML and it works as soon as you create it regardless of mode.) This works great if the control is hosted on a regular form etc. but  ...Show All

  • .NET Development XML Comments

    On the new XML comment features (which is really cool by the way) you can add remarks (comments, remarks) to your classes and methods. But how do you add this to a root namespace Because the root namespace is not visible on the Vb form. John   I was just curious because if you go to Object Browser you will see XML comments on the namespaces (which can be done if I was to declare a namespace in my form). I was just wondering if it could be done at the root namespace level, so i am guessing it cannot. Thanks, John ...Show All

  • Visual C++ How to fix up this problem?

    When I first run a simple 'hello world' program from recently downloaded Visual C++ 2005 Express Beta 2 like the following: #include <iostream> using namespace std; int main() {      cout << "Hello, World" << endl;      return 0; } There was an error message appearing that doesn't make sense to me: ------ Build started: Project: Hello, Configuration: Debug Win32 ------ Embedding manifest... Project : error PRJ0003 : Error spawning 'cmd.exe'. Build log was saved at "file://e:\My Documents\Visual Studio 2005\Projects\Hello\Hello\Debug\BuildLog.htm" Hello - 1 error(s), 0 warning(s) ...Show All

  • SQL Server SQL Server 2000 DTS Tools Web Download

    Is the Web Download to install SQL Server 2000 DTS tools available yet If so where Thanks Darren If I answer my own question, at least I'll get one right. SQL 2000 DTS tools are now available as part of the - Download details: Feature Pack for SQL Server 2005 Nov 2005 ( http://www.microsoft.com/downloads/details.aspx familyid=D09C1D60-A13C-4479-9B91-9E8B9D835CDC&displaylang=en ) The direct link to the MSI- http://www.microsoft.com/downloads/info.aspx na=46&p=16&SrcDisplayLang=en&SrcCategoryId=&SrcFamilyId=D09C1D60-A13C-4479-9B91-9E8B9D835CDC&u=http%3a%2f%2fdownload.microsoft.com%2fdownload%2f4%2f4%2fd%2f44dbde6 ...Show All

©2008 Software Development Network