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

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

Shivax32

Member List

ghenap
NeedingHelp
Donald Fisher
bewA
john k
Cedrickb
Joshua_10002
cbas
Swadow
Aatif latif
l.walt
Thomas Freudenberg
bjun
Dautov
Konstantin T
Gops Dwarak
Mik Dennet
Paddy E
James Todd
WoodrowS
Only Title

Shivax32's Q&A profile

  • Visual Studio Team System VSTS Extensibility, Subscription API, IEventService

    I was testing out the the extensibility sample for subscription to CheckInEvent, I got back a reference to the IEventService and used the subscribe method for notification to CheckInEvents, I made the DeliveryType as Soap and Created the Web service with the specified Notify method as follows [ SoapDocumentMethod (Action = "http: //Microsoft.VisualStudio.Bis/Notify" )] [ WebMethod ] public void Notify( string eventXml) { if ( ...Show All

  • .NET Development Remove a table from xml file using C#

    Hi, How can i remove a table from an xml file if the date is old using C# This is how the xml file looks like: <root> <table> <id> 0 </id> <date> 20060404 </date> </table> <table> <id> 1 </id> <date> 20060822 </date> </table> <table> <id> 2 </id> <date> 20060904 </date> </table> </root> What im trying ...Show All

  • .NET Development FTP usage

    Hi. Using .NET 2.0 and its the first time im using the FTP protocol in development. I am trying to issue a few commands, firstly it works fine such as listing a directory however if i wish to disconnect from the server using, lets say "QUIT" or perhaps I wish to upload /download a file, I get an error saying: "This operation cannot be performed after the request has been submitted." Am I doing something wrong or must I create another Ftp ...Show All

  • .NET Development How do you Modify a node name?

    Hi, sorry to keep banging on about xml, but theres only one way to learn :D. If I had <User2> some more xml </User2> How would i go about changing User2 to something else like User1.  Is there something that replace it or will i have to just read all the information into a NEW node. Many thanks Phil Winder If you care about how it handles namespaces, then you might want to use this version which ...Show All

  • Windows Forms User Control That Could Contain Controls Dragged On It At Design Time

    I want to make a new control that acts like the Panel but with some other functionalities. What code do I need to make a control dragged onto it to be its child at design time Any help would be appreciated. Decorate your user control with this attribute- [Designer("System.Windows.Forms.Design.ParentControlDesigner, System.Design", typeof(IDesigner))] public class MyControl : UserControl { ...Show All

  • Visual C++ CDatabase in a CGI script

    I am trying to use a CDatabase object in a simple CGI script. When I run it from the command line, no problem -- it spits out the HTML code that it should spit out. When I try to run it as a CGI script on a web server, the web server complains about an Internal Server Error, and the machine that it is running on pops up a box complaining about "This application has requested the Runtime to terminate it in an unusual way." I know this i ...Show All

  • Visual C++ add DLL with lib-File to Projekt

    Hi, first, sorry but I donst speek wery well English ! I've add a DLL to my Projekt, but in the "tree_import.h"-File have I Errors: tree_import.h: error C2011: 'CNode' : 'class' type redefinition File: tree_import class __declspec ( dllimport ) CNode { ........... }; __declspec ( dllimport ) void treeLayout(CNode* root, int dir, int x, int y, int dist1, int dist2, int & width, int & height); I've import the lib-Fil ...Show All

  • Windows Forms How to change disabled TextBox font color?

    Can't find it...Or can I switch the whole "Style" (Color Scheme...) Thanks Peter You probably caught my reply in your other post: MyTextBox.ForeColor = System . Drawing . SystemColors . WindowText; ...Show All

  • Visual Studio Team System WebTest failt with ISA Server

    Hello, I'm testing a web application in our intranet accessible from my development machine. In Visual Studio .NET 2005 beta I can record the web test but when I run it from the same pc I get an error from ISA (Http error BadGateway): Error Code: 502 Proxy Error. The ISA Server denied the specified Uniform Resource Locator (URL). (12202) I guess the authentication is transmitted from the web test. How can I do it without generating the code Tha ...Show All

  • Windows Forms Move or Drap and Drop items in CheckedListBox VS.Net 2005

    Dear all, My solution have a form with checkedlistbox and two button (Move Up, Move Down). I want to move up/down items in checkedlistbox when i push buttons up or down or drag and drop items possible. This is my code : private void btnMoveUp_Click( object sender, EventArgs e) { chkListBox.SelectedIndex -= 1; } private void btnMoveDown_Click( object sender, EventArgs e) { chkListBox.SelectedIndex += 1; } please help me add ...Show All

  • .NET Development calling a COM object from c#

    I am calling a COM object from c# using this code: string sProgID = "IData.Update"; // get the type using just the ProgID Type oType = Type.GetTypeFromProgID (sProgID); if (oType != null) { try { Object MyApp; MyApp = Activator.CreateInstance(oType); object[] args = new Object[7]; args[0] = args[1] = args[2] = args[3] = args[4] = args[5] = args[6 ] = true; oType.InvokeMember("uf_run_updates", BindingFlags. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. How can I draw a line with pencil like effect ?

    I'd like to draw a line with GDI+ like a line on a paper created with a pencil. Can anybody point me to an example or an article that explain the technique Thank you, Andrea I will try your idea Christian. I will break my lines or curves into several segments and for each one I will assign different thickness. Your help is really appreciated Andrea ...Show All

  • Visual Studio Express Editions Replacement of Winsock in Visual Basic 6?

    Hello Microsoft. Is there anyway to make any replacement of the Winsock Protocol in Visual Basic 6   Mathy wrote:   Mathy wrote: I didn't actually understand any of those posts, since I want to be just as fimiliar to Sockets here as WinSockets in VB6. I don't understand the events of it or anything, or even how to place the socket on a form. Also, I want to know what all that DNS ...Show All

  • .NET Development Input string was not in a correct format is the error i get.

    Please let me know what i am doing wrong. Thanks/Saru I have a method in a class to get products. At the end i am trying to display on the form . here is the pc of code that i am trying to use to display. /// dim dsProducts as Dataset Private Sub DisplayProductData() Dim drprod As DataRow drprod = dsProducts.Tables("Products").Rows.Find(ddlprod.SelectedItem.Value) lbllongdescrip.Text = drprod("LongDescription& ...Show All

  • Visual C# C# Project slows down IDE

    Based on my reading of the newgroup and bugs, some of the perf issues in VS 2005 makes people's blood pressure rise.  I'm no exception.  I'm hoping that the RTM version doesn't have the perf bug I'm experiencing. I have a solution that contains 15 C++ projects and 2 C# projects.  Been that way for about a month.  But then now my sessions in VS get reallly slow... typ...in...g... i.....s.... s...l...o...w.,.. slow window redra ...Show All

©2008 Software Development Network

powered by phorum