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

Software Development Network >> .NET Development

.NET Development

New Question

JScript in Infopath
Using 'lower-case' in XPath Query
WSE and Asynchronous WebMethod issue
Help!!?? Question about looping a Dataset
Resetting Web Services?
XmlSchemaSet - multiple schemas, same targetNamespace ?
ASP template to traverse XML
XML Nested relations in Dataset
networking api in .net is very poor
How to usd regular expression to match a function in the .cs file?

Top Answerers

Scafe
Felyjos
oerth123
naveen73
maddog70
kwarnke
Flame Thrower
Kely
David Teitlebaum MSFT
Leonard French
Soaring Eagle Consulting
Only Title

Answer Questions

  • Claudiu_Itu Problem in converting byte[]to stringBuilder

    HI, I am trying to write a small function to script some object data and if I was to script a photo ,I am trouble to convert it to a string. I have a for each statement that loops a datarow and depending on the type I append to a stringBuilder. I have a routine that converts to text I got it from snippets that should do the trick but cannot make it work. The problem i have is in the byte case statement. foreach (object item in tmpRow.ItemA ...Show All

  • morlando How to setup a VPN connection in code?

    In my C# program, how can I detect if there is a VPN connection to another machine and setup a connection if needed I have known the IP address of the target machine and the VPN username/password. Thanks! I'm guessing that the definition for RASCONNSTATE is missing from the sample code There are RAS APIs to do this.  Here is some sample code to get started    public static st ...Show All

  • SeRya what file is important

    Hi - Does anyone know what file would be considered most important when developing applications in asp.net. Thanks. All of them! Seriously though, from a project perspective, web.config is quite an important file as that is where you do most of your setup at. If I had to pick just one (not sure why you would have to), that is what I would pick. Hi, all the files in asp.net are ...Show All

  • kceng123 Help with a Regular Expression

    Hi folks!    I'm trying to parse into tokens the following string: (see 0 ((goal r) 66.7027 33) ((flag r t) 55.581 3) ((flag p r t) 42.4804 23) ((flag p r c) 53.7587 43))   to get :     Token 1 = (  Token 2 = see   Token 3 = 0  Token  4 = (  ..............   My delimiters are ( , ) and " ". However I want to keep the parantheses as tokens, but discards th ...Show All

  • BRAMOIN A question on the new CLR Profiler for .NET Framework 2.0 Beta2

    I notice that there is a new release of CLR Profiler for .NET Framework 2.0 Beta2. However, there is also a profiler in Whidbey Team System Beta2. What's the difference between them Which one should I use Thanks! Could the CLR Profiler be integerated into VSTS So the user will not have to learn two tools and switch between them. It's a great news :-) To a certain extent this is what has happened - the VSTS folks have lo ...Show All

  • LA-3243 Jerry Multithreading, MsgBox causes an Error

    Hello,    This has probably come up before but for the life of me I could not find an answer anywhere....I've created a program in Visual Basic .Net 2003 that starts multithreaded sub using system.threading.  The function works great until I put in a MsgBox("Test") anywhere in the thread.  When I use this one line of code, the thread itself will execute fine and return 0 when it closes, but when I exit the applicati ...Show All

  • joukz Can someone point me to info...

    New to Web Services. I'm a VB6/COM+/ASP developer. Have been asked to look into using ASP.Net and XML Web Services for a new app. Clients will be VB desktop app and web site as well. Wanting to build a Web service to process business rules and do database access for both situations. I'm looking for info/tutorials/walkthroughs on how to build a Web Service in VB.Net and how to interface from VB clients and web apps. Don't want to use ASP.net web ...Show All

  • Pratibha Getting files from the remote server

    I have the following network set up. I have a web server (IIS6) running .Net web application. On a remote computer I have a folder with files required by this application. This folder on remote machine is mapped on IIS machine as a network drive Y: After login in onto IIS server with personal domain account I am able to copy files between IIS machine local drives and network drive Y: manually through windows interface. ...Show All

  • fwyattblake Updating (Refreshing) Dataset Source Info

    All, Can someone send me a clue on how to update a DataSet in visual studio 2005 after making changes to the stored procedure it is attached to (adding new fields, etc) There seems to be no way to do this that I can find without completing deleting it and starting over. Em, help. Joseph Just so it's clear...It's not the data records I am trying to refresh, it's the connection itself. As mentioned, I am ...Show All

  • Harish UInt type in structure problem , please help!

    Hi All, I am using a unmanaged dll (C++) in C#.  However, I would use a structure like the followings in the Class Library:  [StructLayout(LayoutKind.Sequential)]  public struct STRUCT_T  {   public FILETIME a;   public UInt16 b;   public UInt32 c;   public int d;  } However, i found that sizeof(STRUCT_T) would return 20, but it supposed to return 18.  I step into the co ...Show All

  • swax About DBF of FOXPRO

    Somebody say that there is no way to export .NET dataset to DBF. Is it true Who has source code can do this work Please share with me. Hi VitCon, You can access FoxPro tables via the FoxPro and Visual FoxPro OLE DB data provider, downloadable from msdn.microsoft.com/vfoxpro/downloads/updates. Via OLE DB you can also create new DBFs. While you can't "export" the convienent way like Dataset.WriteX ...Show All

  • Tomcat123 Forcing ActiveX to load v1.1 when v2.0 is installed

    I have an ActiveX control (inproc) that is written in Managed C++.  When Internet Explorer (or any other ActiveX host) loads it, how to I make certain that the 1.1 runtime is loaded instead of the 2.0 runtime if both are installed on my machine I've tried a MyActiveX.dll.config file requiring the appropriate runtime, but that doesn't seem to do the trick.  Any other ideas Apparently I wasn't clear enough in my question that any ...Show All

  • Ours NTFS ACLs from C# (Whidbey)

    I'm using the new System.Security.AccessControl stuff in 2.0. This is a snippet typical of what I've done (sets Read access for Network Service on 'MyFolder') SecurityIdentifier siNetworkService = new SecurityIdentifier(WellKnownSidType.NetworkServiceSid, null ); NTAccount ntaNetworkService = siNetworkService.Translate( typeof (NTAccount)) as NTAccount; DirectoryInfo diMyFolder = new DirectoryInfo(myFolder); DirectorySecurity dsMyFolde ...Show All

  • Carlos Quintero - MVP Binding XML file to DataGridView in Windows Applications with C#

    Hi, Please forgive me if the question is too simple, I am a beginner. Part of my application I am working on requires a contact list (similar to the one in Outlook). I decided on the following: 1. Create a Class with public properties for the contact details (name, email, phone, etc.). 2. Use List<MyContactsClass> to combine each contact into an array. 3. Serialize List<MyContactsClass> to XML and st ...Show All

  • Jonny_B Problem with reading XML document

    I have a XML document:   < xml version="1.0" encoding="utf-8" > - < rdf:RDF xmlns:rdf =" http://www.w3.org/1999/02/22-rdf-syntax-ns# " xmlns:dc =" http://purl.org/dc/elements/1.1/ " xmlns:sy =" http://purl.org/rss/1.0/modules/syndication/ " xmlns:admin =" http://webns.net/mvcb/ " xmlns:cc =" http://web.resource.org/cc/ " xmlns =" http://purl.org/rss/1.0/ " > - &l ...Show All

585960616263646566676869707172737475

©2008 Software Development Network

powered by phorum