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

Software Development Network >> .NET Development

.NET Development

New Question

Validating SQL statement before execution
how to develop heavily access website?
Execute a list of SqlCommands
How to set the client's cursor as "wait" status?
How to bind image dynamically to Crystal report using asp.net
Is there a built-in InputWrapper class in C#.NET?
type datasets & generic datasets
ByVal or ByRef
Multithreading, MsgBox causes an Error
WinHttpRequest

Top Answerers

KyleHenly
Terence Lee
Big_Show
jhermiz
luango
Petronel
Patrick Ng
Guy Ronen
abehead12310
storm80y
Speed
Only Title

Answer Questions

  • coder# Web Service state question

    Hello, Is it possible to maintain a database connection via a web service If I have 1000 clients hitting a web service, is there a way to have them all use the same database connection instead of opening a connection, passing some sql, then closing the connection I assume this is not possible, if it is not what suggestions would you offer Thank you. its not possible, the connection must be expl ...Show All

  • GentleWarrior socket.BeginConnect

    Im currently stuck with that method. the first argument i get, but not the second. the MSDN sample of BeginConnect show it doing "new AsyncCallback(Async_Send_Receive.Connect_Callback)" but it doesnt specify what Async_Send_Receive is. The second parameter is taking a delegate (ie. the method to call when the connection request completes).  The delegate definition is below. You can think of a delegate as a function pointer. Beg ...Show All

  • Grismath problem of c structure in .net

    Hello,       I am working on c project. it currently shifted from Linux to windows and compiled in .net 2003. after running code, I got problem in printing value of double member which is present in structure. at debug time , i seen that value coming in to double variable but can't print by any type specifier like %f,%g etc. it's problem with structure declaration. if change location of double from middle to end of stru ...Show All

  • How to register an activex WinForms Vs WebForms

    Where can I get the list of pros & cons swamyk, these are two different animals; completely different ballparks... winforms are for windows client apps. webforms are for web applications that are delivered using http and that are rendered inside the browser. WM_FYI thomas woelfer generally speaking WinForms are Richable but not reachable , on the contrary WebForms are Reachable (but not richable due ...Show All

  • Paril Vadher Reader.getstring(i) problem

    Hay, i use this code to recieve informaton from a Query and show this in a textbox. Dim mySelectQuery As String = "SELECT [Ring nummer],Naam,Jaar,Land,Vader,Moeder FROM Tvogel WHERE [Ring nummer] = '" & Me .Ring_nummerTextBox.Text & "';" Dim myConnection As New OleDb.OleDbConnection(myConnString) Dim myCommand As New OleDb.OleDbCommand(mySelectQuery, myConnection) myConnection.Open ...Show All

  • Sean Cromwell Creating POPUP WINDOWS IN ASP.NET

    Hi While my surfing through the net , i came across a website that d espite the popup blocker installed (whether Yahoo, in-built for IE, Google etc) was able to show popup window , but it happens only the first time as i think it is cookie based ...when deleted the cookies it again popuped up. The name of the site is www.netscape.com , can anybody explain how it is done I would be cautious about using those DHTML pop up libraries ...Show All

  • bpjung mscorsvw.exe

    At times the process mscorsw.exe starts and uses 99% CPU. Obviously it is almost impossible to use the computer while it executes. What does this process and what can I do to improve the situation Thanks, Dan Please refer to the bottom of http://blogs.msdn.com/davidnotario/archive/2005/04/27/412838.aspx . Regards, Shri ...Show All

  • Alaa_fcis userSettings

    I want to access the userSettings section of my application's exe.config file programmatically.  But I need to do this from a dll that's being referenced by the main application.  So I can't use the conventional My.Settings.propertyname syntax.  I can access the connectionStrings section in this way by using the ConfigurationManager class.  Is there a way to do the same thing with the userSettings section Todd &nbs ...Show All

  • rroot01 Can't get a new table into my dataset

    Can't get a new table into my dataset I created a new table Person in my Access 2003 database.  However, I can't get it into my dataset. I tried refresh, the designer, and confiqure with the wizard, however the table Person doesn't appear. Is this a bug Or am I just being an idiot, as usual dennist Hi, Here are the steps that I did when I add a table in a DataSource: 1. Add a DataSource, specify th ...Show All

  • YunXu XSL Variables

    Is it possible to set and get variables through the style sheet what do you mean set and get .NET variables from the stylesheet or set stylesheet variables from .NET to the stylesheet I doubt very much you can get variables directly from the stylesheet to .NET. You'd have generate elements in the result tree that you could read in after the transformation. You can pass parameter arguments to a styleshe ...Show All

  • Madhu B.A ADO 2.0 DataRelations with Typed Datasets - Foreign Key Constraint

    I am using the NorthWind database as an exemple. I created a dataset by dragging the Orders and Order Details tables in a dataset with VS2005. I have set the relation FK_Order_Details_Orders to Both Relation and Foreign Key Constraints and the Delete and Update rules to Cascade. If I delete a row from the Orders table and then call the Adapter.Update method on the Orders datatable I am getting a foreign key contraints exception. DELETE ...Show All

  • TobyRickett Accessing the FTP root directory.

    Hi, I'm working on a class that walks the directory on an FTP server. It looks for files following a certain format (i.e. "Acc*"), and returns the directory in which the files are located. The servers have limited scope, and access is limited to only a few users, so it is certain that only one folder will contain these files. This needs to be done with little to no user intervention. The problem I'm having is that the FtpWebRequest ...Show All

  • Mostafa Omar Problems with web services in VC++ 2005

    Hello, I tried to add web service reference (through "Add web reference" context menu item) into my newly created windows forms project, I listed WSDL file in editbox, clicked "Add reference button" but I got these errors immediatelly after the wizard window was closed: ------ Build started: Project: WSTut, Configuration: Debug Win32 ------ Compiling... stdafx.cpp d:\mywork\source\vc++\wstut\wstut\contextProvider.h(196) : error C20 ...Show All

  • Jon Langdon Computed Columns in TableAdapters

    Hello, I'm very frustrated with the TableAdapter created by the dataset designer in Visual Studio 2005. Here's my problem: My select statement is just a select * from X. Some of the columns are computed columns, and should not be included in the update or insert commands. However, they are. I can't seem to get it to not include these columns in the update and insert commands without removing them altogther. This problem did not exist in 20 ...Show All

  • c0d3-m0nk3y Partial Classes not good OO design

    Does Microsoft even bother involving developers anymore in their process of developing new "features" I've spent about four hours with VS2005 now and can't believe the list of problematic improvements I've generated in that short time. Then I run across this partial class feature. What a pitiful idea. This isn't an object oriented concept at all - it's very much akin to using a preprocessor to insert code. The ability to " ...Show All

424344454647484950515253545556575859

©2008 Software Development Network

powered by phorum