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

Software Development Network >> .NET Development

.NET Development

New Question

Opening the file as a New Process
access permission probelms. HELP ME!!!
Itaniun & Managed C++ Extensions: Unresolved token 'Sleep'
SMS from .Net app
Best Practice Architecture Question (Distribued Application Cache)
hashtables
ADSI IsApplicationPool.EnumAppsInPool and System.DirectoryServices
32 bit .NET 2.0 application is not looking under Wow6432node under HKLM\Software
Server currupt when Client close.
Client connections...

Top Answerers

Tim erin
paxa
winkie
RodTorres
xmj
Mitchell Baldwin
Paul S
justtellme
DBArchitect
MaxAtHome
Roxen Internet Software
Only Title

Answer Questions

  • chopper Calling a stored SQL Proceedure from VB

    K, got some canned proceedures on SQL Server 2005 Express, now any thoughts on accessing them The project is pretty simplistic, but its a learning tool for me. dim IP = ...... 'got this working ok Call dbo.HitTable.Update(IP) ' speculative idea Call dbo.Hitable.Hits() 'more speculation Sorry, never tried SQL from VB before, let along any other tool. I have been sloly migrating from ASP to ASPX files, but it takes time to chan ...Show All

  • chrisanderson .NET COM and Remoting

    Hi. I handle a serious problem with remote connection from my Agent( writen on c#) module that is actually registerd as COM object and loaded by Executable that writen on C++, .NET Agent and Executable reside in different folders. I receive following Exception from my remote server: "Return argument has an Invalid type". Module Detailed explanation: 1) HostClient.exe - Executable for My .NET COM Agent(MyAgent.dll) . Simple c ...Show All

  • Dante-Joy SMTPClient MessagePreview

    I'm converting an app from a Win32 Pascal to .NET 2.0 c# The old program used MAPI Calls, etc to login and send emails I am able to convert the mail send functionality fine, but is there a .NET equivalent to the MAPI_DIALOG flag to preview the email before it actually sends Thanks, David Short answer NO Long answer Yes - sort of. Send it to the local smtp server and it will put it in the drop folder You can open the eml with outl ...Show All

  • Hits Concurrency Violation with Delete Command

    I've generated a standard Master-Detail Windows form and have the master fields in individual text boxes and the child rows in a datagrid. When I use the Delete button that was generated by the form generator I get the message "Concurrency Violation: the DeleteCommand affected 0 rows" and noting gets deleted. This is a single-user application and this is the only form using these tables, so how can I get a Concurrency Violation under these ...Show All

  • Nikhil Acharya Query Performance, Results coming back really slow...

    ElseIf Util_Search_Panel.Enabled = True Then CurDate = CStr (Now) If Util_Month_RadioButton.Checked = True Then MonthDiff = Util_Month_NumericUpDown.Value If CInt (Month(Now)) - MonthDiff < 0 Then MonthDiff = 13 + ( CInt (Month(Now)) - MonthDiff) DateStr = MonthDiff & "/" & Microsoft.VisualBasic.Day(Now) & "/" & Year(Now) - 1 Else MonthDiff = Microsoft.Visu ...Show All

  • Selim Dizdar Main function in web service project

    I have written an XML database which I wish to access via a web service. I have compiled the application to a dll and referenced it in a web service. I try to instantiate the database class by creating a main function I have =============================== private static xmlDatabase DB; public static void main() {     DB = new xmlDatabase(); } [WebMethod] public void Inquire(string searchParam) {     DB.Inquire(s ...Show All

  • sarcasticjackmn Resolving <xsl:include> references using XslCompiledTransform

    Using .Net 2.0's XslCompiledTransform class to transform a document I get IO exceptions resolving relative paths to documents from the include statements in the loaded stylesheet. The parser appears to be starting its search based on the location of the source xml document, rather than the loaded transform. I found an article (not sure how old) by the Xml team which states "XslCompiledTransform delegates all work related to external URIs ...Show All

  • sjm8 Service don't start: Errorcode 1053

    please help. I build the file, and put it into an installshield setup, with the order to install a service. The service is displayed at the Windows Service-list. If I want to start I get Errorcode 1053 Please look at the sourcecode, i use Framework2 namespace Event_Service { public partial class Event_email : ServiceBase { public Event_email() { InitializeComponent(); } static AutoResetEvent sig ...Show All

  • rjnealtx ADO.Net-Insert, Update, and Deleting Records

    Everyone, I'm having a crisis inserting, updating, and deleting records in my DB using ADO.NET. I'm sincerely hoping someone, anyone, can help me with a solution.  I've searched the forums and related resources and have not been able to come up with a fix.  Here's the problem: I have a form with five text boxes and one combo box.  The data set (DataSet1) and corresponding table adapter (TableAdapter1) were automoatically generated ...Show All

  • Tall24Kris Trying to understand Strongly Typed Data Sets... Help!!!

    Ok, so I want to use stronly typed data sets. I created one by right clicking on my project, add, add new item, data set.  I then dragged and dropped a table from the database I'm working with onto the designer.  It showed up and everything looks peachy. If I fill the dataset with a simple "SELECT * FROM tblApplicationName" it works just fine.  But when I attempt to "SELECT * FROM tblApplicationName WHERE (ApplicationID = 1) ...Show All

  • Neuronz Resource editor suggestion?

    I'm looking for a resource editor (for use with VS2005) that better than what's included in Visual Studio.  Primary will be working strings, and some binary data. Anyone have any suggestions, recommendations TIA, Richard My single biggest gripe is the limited viewable space for entering in text strings.  The longer the string, the more of a pain it is. Also, I just came up with a need to p ...Show All

  • aidanmack Shared Memory or Memory File

    Hi all, Is it feasible for me to create a chunk of SHARED MEMORY or a MEMORY FILE in .net to share some objects across boundary of processes   It will be great, if you can post some working samples! Thanks, Ning Hello Ning, The newest version of the .NET Framework - 2.0 [codenamed Whidbey] includes an inter-process communication channel for Remoting based on pipes. For more information, see System.Runtime. ...Show All

  • Dave Poole Data Binding error!

    Hi Everyone, Why the application rasing error: "Dynamic SQL generation is not supported  against multiple base table." while executing SqlDataAdapter What mistake I am doing Can anybody help Thanks in Advance, Jose Hi Thanks for the help. I got it something about Stored Procedure now. But I still have some doubt to write code since I am using Dataset. How I can solve the problem Thanks in advance Jose   Here is a si ...Show All

  • Stephen Gryphon Text in XSLTransform

    I am transforming one xml file to another using XSLT file. I create XSLTranform and load the stylesheet before calling the transform function. It seems to work fine but there are a few problems with text. When the XML file that I am trying to transform includes special text such as "£" sign the transformation will fail. I assume that I need to set some parameter to support w_char or unicode somewa, but I can't seem to fine the information needed ...Show All

  • marpe Exception Handling DO NOT WORK!! Help Please!@!

    Hi. I want that you think with me... When i put a try-catch exception handler block in an application what i expect from it i expect that it will handle the error and begin the normal flow of the application. Now, you aswer me, why it doesn’t work in this scenary : I have one Form1 (Project > Add New > Form, nothing different), and another Form2 and one Form3. i’m proud of my creativity for names. Form1 : private void Form1 ...Show All

86878889909192939495969798990123

©2008 Software Development Network

powered by phorum