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

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

CSCNavy

Member List

ohine
Graham S
gotech.voip
robinjam
talin
Dan Green
Ffelagund
Dan Marin
Andreas Kammann
Vincent D. - Nolmë Informatique
gotit
Henrywang
Tatworth
MagicPN
AmitInnani
NPrinsloo
sleddd
LSanders
Steven Hemingray
JoeLopez
Only Title

CSCNavy's Q&A profile

  • Visual C# C# Service

    Hello Everyone, I have created a C# Service, I want to listen for Database Updates or Inserts when that happens I want to start this service... How can I do that... If this is not the correct forum, can please some guide me to the correct one. Thanks, Harsimrat you could have C# Windows Services that utilizes Microsoft SQL Server Notification Services after receives notifiacation your service take appropriate actions. Take a look at SQL Server Notification Services for more detials. Hope this helps ...Show All

  • Visual Basic Unable to create ASP.net(C#) project

    Hello Guys, Unabel to create or start a new ASP.NET Web Application from the project selecting window. I cannot insert the print screen of the message. Below is the error message i got as it as. "Visual Studio.NET has deteceted that the specified Web server is not running ASP.NETversion 1.1. You will be unable to run ASP.NET web applications or services" OS : XP pro. I have installed .NET 2003. I have also installed IIS. Please help me. I will be very helpfull. Thanx in Advance. Hi vmadan, RESOLUTION To resolve this problem, change the status of ASP.NET 1.1 to Allowed in the Web Service Extension list in ...Show All

  • Visual Studio Express Editions Can I connect to my SQL Server 2000 with VS Express

    I seem to be having a difficult time connecting to my local SQL Server 2000 from VS 2005 Express. Can it be done If not, is there a way to import a table from SS2000 somehow Thanks. If SQL 2000 is on the same machine as VWD Express you should be able to connect.  I think remote access to servers is not supported.  You would need Standard or above for that. ...Show All

  • SQL Server An attempt to attach an auto-named database for file...failed. A database with the same name exists, or specified file cannot be

    I know allot of folks are having this problem and I tried lots of things but nothing works. I understand the problem is coping the SQL Express on another server is the problem - I just not sure what to do Version Information: Microsoft .NET Framework Version:2.0.50727.42; ASP.NET Version:2.0.50727.42 This is the last statement on the Stack Trace: SqlException (0x80131904): An attempt to attach an auto-named database for file e:\wwwdata\81d0493f\www\App_Data\TestDatabase.mdf failed. A database with the same name exists, or specified file cannot be opened, or it is located on UNC share.] System.Data.SqlClient.SqlInternalConnection.On ...Show All

  • Windows Forms ListBox and ListItem

    The type or namespace name 'ListItem' could not be found (are you missing a using directive or an assembly reference ) foreach ( ListItem li in myListBox.Items) { if (li.Selected == true ) { //do something } } What reference am I missing. I have tried a few, but can't seem to find the right one. This is what I have on the page.... using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Data; using System.Data.OleDb; using System.IO; using System.Net; using System.Net.Sockets; ...Show All

  • Visual Studio Team System When will TFS be released?

    I just looked on MSDN Subscriber Downloads (Dev Tools / VS 2005) and could not even find December CTP ISO. Right now the official guidance is still Q1 CY06. Rick and Soma usually announce release news when it becomes available. http://blogs.msdn.com/rickla/ http://blogs.msdn.com/somasegar/ ...Show All

  • Visual Studio 2008 (Pre-release) Control looping

    Hi, I have a panel and I want to loop through all the controls on it, to set certain properties like Text, etc. Is there an easy way of doing this Generally it depends on a type of the Panel (ItemsControl has Items collection, Canvas/Grids have Children property. For the general case you can use smth. like: foreach (FrameworkElement f in MyPanel.Children) { if (f is Label)   { … do processing for the label…} } I would suggest though to create strongly typed caches for every type of a child control, using generic collections. When you initially populate your control/screen with the chi ...Show All

  • Windows Forms DataView instance problem!

    Good morning all. When my form opens, a SqlDataAdapter and a DataTable are created.  Both are declared public.   Also, a save button is created.  When the save is hit an event is fired and the DataAdapter.Update() is called.  I swear this was working this morning!  Now I am getting "Object not set to instance of object" refferring t ...Show All

  • Visual Studio Team System MSF Agile: cannot close scenarios

    Hi,     In the Process Guidance for MSF Agile v100.1, in the workstream "Create a Scenario", activity "Prioritize Scenario List", sub-activity "Determine an Overall Priority" it says: Close the low priority scenarios that will be implemented in a future release using the deferred reason code.     But in the Process Template, there is no transition from "Active" to "Closed" state for scenarios. So I cannot close it! The only transition available from "Active" is to "Resolved" but in the description of the "Resolved" state in the Guidance it says that the scenario has to be implemented in code. ...Show All

  • SQL Server Access to SQL server

    Hi, I have to write an VB.NET application which imports data from an Access database to an Ms SQL server. Is there any code for this kind of task. Thanks. Take a look at this post http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=320478&SiteID=1 Connection string to retrieve from Access DB is as follows "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Test.mdb;" Hope this helps ...Show All

  • Visual C# Syntax using an array of classes bizzare error with language parser

    This is a simplified version of my code to highlight my problem. It seems as if the parser loses the type information. namespace myname { class A { public string b; public FileSystemWatcher c; public A() { c=new FileSystemWatcher(); } } public class D { A []e=null; public void f() { for (int index=1 to 10) { e[index] = new A(); e[index].a="Test"; e[index].c.Filter = "*.wav"; e[index].c.NotifyFilter = System.IO.NotifyFilters.LastWrite; e[index].c.Path = sub.GetValue("Directory", ""); e[index].c.Changed += New FileSystemEventHandler ( OnChanged); e[index].c.EnableRaisingEven ...Show All

  • Visual Studio 2008 (Pre-release) Incorrect UPDATE SQL being generated by DataContext

    When using the DataContext object to retrieve and update a database, if I have a property that maps to a column with a different name the UPDATE SQL generated uses the property name as opposed to the name specified in the column attribute.  [Table(Name="TestTable")] public class TestObject {    private string _description=string.Empty;    [Column(Name="TestDescription", Storage="_description")]    public string Description    {       get       {          return _description ...Show All

  • SQL Server Converting from Access.mdb database to SQL 2005

    Is there anywhere a program which will convert my 30MB Access database into a SQL2005 database   I've tried the upsizing wizard in Access 2000 and it just bombs.  From the performance hits I now have with my data access since I went to VB.net 2005 and using ADO.net instead of ADO classic, I need to do something.  The ADO.net now takes almost 3 times the time to do my table stuff.  Was using Server side cursors under classic and data access was fast (Is a remote table).  Now the data access is a hog, takes anywhere from 1.5-3 seconds to retrieve a record.  As an added thought, I had done ADO Classic in the VB. ...Show All

  • Visual Studio Express Editions from microcontroler to PC

    I’m interested too make a graphical application to connect microcontroler thro com port (rs 232) and PC    I have heard that we can find in the Professional and Enterprise version of Visual Basic   control MSComm. Doses it express edition beta 2 have it too   Thank you. are possibly there any videos which can help me to understand   how   to work   with this   Thank you ...Show All

  • Visual C# Process Kill

    hey ppl how can i know if a process is able to be killed ,.,, for example... the Idle process of windows can never be killed... also some others can not be killed.. is there any way to know wich process can be killed.. and if so kill it but do not try to kill it if its a protected process thx mig16 thx but thats why im posting... there are some protected processes. ,a dn i want to know,, wich are protected and wich are not.. mig16 ...Show All

©2008 Software Development Network