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

Software Development Network >> CapTain BLue's Q&A profile

CapTain BLue

Member List

Whizzo
fjahnke
MichaelSmith
Bob__Bob
kpraveen
nnigam09
MPlowman
yuri.lemes
SAEED R
Carolann
Zane Kelly
phaazebroek
Jeremy Wiebe
lueethefly
KOUAKOU
NiroViji
A Wilco
Barry Mavin
Maruis Marais
David Szabo
Only Title

CapTain BLue's Q&A profile

  • .NET Development Remotely accessing system certificate stores

    I am developing a C application to use SSL/TLS.  Using the samples provided by MS, I have been generally successful.  I am using a stand-alone CA at this time.  I have been able to run my server and client with a SSL connection on the same machine as well as 2 separate machines.  However, to get this to work I have had to install the certificates on the machine on which the program is running.  The issue that continues to "dog" me is how to get "remote system store access" to work.  When I open the certificate store I am constructing \\<machine name>\My, but the opening of the certificate store only works ...Show All

  • Visual Studio error MSB4018: The "GenerateResource" task failed unexpectedly

    I have a Smart Device application that is generating the following errror when I attempt to build. I would appreciate any feedback in how to debug this error, or what might be a typical cause of this problem. C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Microsoft.Common.targets(1616,9): error MSB4018: The "GenerateResource" task failed unexpectedly. C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Microsoft.Common.targets(1616,9): error MSB4018: System.InvalidOperationException: Collection was modified; enumeration operation may not execute. C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Microsoft.Common.targets(1616,9): err ...Show All

  • Visual Studio 2008 (Pre-release) Version property of DataContract attribute !!!

    Hi, i am not able to see Version priperty on DataContract attribute. Any one has any idea about this This property is no longetr supported or am I missimng some thing I am using the WINFX Feb CTP. Thanks, \Venkat Hi, Order is also not avilable. I am getting compilation error: System.Runtime.Serialization.DataContractAttribute' does not contain a definition for 'Order' Basically, i am looking into some techniques for versionaning data contracts. Previously I have seen VersionAdded property on DataContract attribute, but now it is no there. Thanks, Venkat ...Show All

  • Visual Basic Array Of Classes Problem

    Hi, i am having a small problem with an application that i am developing. the problem is that i need an array of classes: [code] Friend Class Connector Public aNodes() As Point Public iNode As Integer End Class Public Class frmMain Private Lines(20) As Connector ... ... End Class [/code] The problem is that when the code that accesses the array Lines, the program halts, with the error "Object reference not set to an instance of an object", and tells me that i need to use the NEW keyword, but when i change the line to: Private Lines(20) As New Connector ...Show All

  • Software Development for Windows Vista Passing parameters to child activities

    Hi, when i did the following activities i got null reference exceptions, any kind of help is appreciated. Step1. my client code is initiating a sequential workflow with students array in the dictionary Step2. In seq work flow i have a child activity,and a while loop. what i intended to do is for each student do some operation on child activity. so for this i created a dependency property in childactivity called student. Step3. In the while activity i have a code activity to get the current student ( using a loop variable) and assign it to the student property in the child activity Step4. in the Child activity, i have override ...Show All

  • .NET Development Calling 1.1 code in 2.0

    Can I call 1.1 compiled code from 2.0 code. If Yes then underwhich runtime will the 1.1 code be executed is it still 1.1 or under 2.0 framework. Yes you can.   There can only be one version of the runtime loaded in each process, so if you have 2.0 code running it means you have v2.0 (or later) of the runtime loaded. All assemblies in your process will use that version and its corresponding framework assemblies.     ...Show All

  • Windows Forms sending Cookies from a Web Client

    Hi, I am writing a web client which needs to walk from page to page. In the process,  I need to get cookies from one HTML page an send them on to the next HTML page. Would it be sufficient to use the same CookieContainer object accross consecutive requests  The documentation is not very explicit about  the CookieContainer property of the Htt ...Show All

  • Visual Studio Team System Using VS2005 (beta 2) with custom rules

    Hi, I'm trying to integrate custom FxCop rules using the Code Analysis capabilities of VS2005 beta 2 and I'm hitting some problems :( I've written a very simple custom rule which loads and runs OK under the stand-alone version of FxCop 1.32  I've then changed the FxCop and Cci references (and imports) to hook up to the integrated version of FxCop (SDK under "Team Tools") so I can load the rule for use in the IDE but that's where it all goes a bit pear shaped! I've copied my compiled DLL into the "Rules" subdirectory and hey presto my rule assembly name appears in the rule list on the Code Analysis tab in the IDE ...Show All

  • .NET Development Console.writeline() will not write to a ASP.NET page, Framework 2.0

    Thought for sure that I have done this in Framework 1.1, but will not work with 2.0 The problem is simply writting to the web page console, can not seem to get the Console.Writeline function to work.... Tried setting the Console.Setout() but still no success. No error messages just nothing displayed from the Console.Writeline function. MSDN documents the issue if the default output is not the console, nothing is displayed. Any help appreciated... Partial of the code that I am using. Have attempted to set the the Console.Setout w/o any success. Try Dim outStream As New System.IO.StreamWriter(Console.OpenStandardOut ...Show All

  • Visual Studio Downgrading from 2.0 to 1.1

    On our new website we decided to use CommunityServer's asp.net portal. We ran into a multitude of bugs and found out that it has issues with .net 2.0. So I went to downgrade to 1.1 but after the uninstall supposedly finished successfully and I rebooted. Nothing had changed, all files were still there and 1.1 now would not install, and IIS didn't think any .net revision was present. So after a botched uninstall and all scripts and attempts to manually uninstall fail how do you downgrade Thank you everyone that responds :) There is no dow ...Show All

  • Windows Forms Remote DB Server Login

    When passing sensitive data such as passwords from a browser to a web app I know that SSL can be used to encrypt the transmission. Is there a similar way to protect the login password for a remote database server when accessed through a regular Windows application  I can login to a remote server with a normal connection string but I assume th ...Show All

  • Visual Basic Escape chracter

    How to escape ' and & in SQL Server Query from .NET like if a text box contain height like 2' 12" then Dim cmd As New SQLCommand("INSERT INTO Some_Table VALUES( ' " & Me.txtHeight.text  & " ' ", conn) above statement returns error... any help..   I would also recommend taking a look at: http://msdn2.microsoft.com/library/ms161953.aspx Best regards, Johan Stenberg ...Show All

  • Visual Studio 2008 (Pre-release) database support

    Hi! Will LINQ support database providers other than sql server Actually, I didn't ask -- someone else did. But I *was* wondering when a Mono-affiliated project was going to be doing something with this, aside from the XLinq classes that were whipped up during PDC. ...Show All

  • Software Development for Windows Vista 'Sealed' Sequence or Designable CompositeActivity

    I want to create an activity with several child activities. I do not want the child activities to be modified and I do not want other activities added. I could start with System.Workflow.Activities.Sequence and set each of the child items Visible property to False . But when my activity is placed in the workflow, someone can still drop additional activities onto my own because it derives from Sequence . I want this activity to appear as a logical whole and don't want items added to it. If I start with System.Workflow.ComponentModel.CompositeActivity , it appears I will have to create a custom ToolboxItem that manually adds each of my child c ...Show All

  • .NET Development DataTable internal index is corrupted... anybody can help me?

    Hello people, how are you I'm in front of a strange error. I have a data form, that show and manage the data by a BindingSource control. I hava a dataGridView and individuals controls like textbox to edit them. It's work fine at the begin, but after some adds, removes or updates, the .Net retrives me the follow exception: "DataTable internal index is corrupted: '5'" It's very borried.... it's an ilogical error.... Does anybody have some tip Thank you. Andre P. Bertoletti (Brazil) ...Show All

©2008 Software Development Network