Kyle Miller's Q&A profile
SQL Server Problem to install SQL Server 2005 CTP June edition...
Hi When I tried to install, I kept getting the following problem with System Configuration Check: A previous installation required a reboot of the machine for changes to take effect. To proceed, restart your computer and then run SQL Server Setup again. I've rebooted many times (with AntiVirus turned off) and yet the above problem remains. Anyone has a solution to the above problem Thanks. Rgds OngCF ACtually wo ...Show All
Visual Basic generate a collection class from a Stored procedure
Hello everyone. I am new to collection class, but what I have done and used I like a great deal. Now the one thing I have found ( and this is more then likely a problem with my programming then the concept) that when I create a collection class is very slow to start with. Now I do not mean the actual coding, but rather when I create the class in when I load the app. Example: Sub Frm_load() Dim colEmployees as new Employee ...Show All
Windows Forms Custom Control, how to make custom EventArg?
Anyone know how to make a custom EventArg setup for a Custom Control ie. make: public event EventHander SomeoneClickedMe; call: cntrlWhatever_SomeoneClickedMe(object sender, CustomEventArg e) instead of calling the default: cntrlWhatever_SomeoneClickedMe(object sender, EventArg e) Yes you are correct you don't have to inherit EventArgs, nor do you have this signature for your delegate: delegate void Cus ...Show All
SQL Server Linked servers 2000/2005
I can't define a linked server in SQL Server 2005 x64 edition (to a SQLServer 2000 instance). The error message is : OLE DB provider "SQLNCLI" for linked server "serv01" returned message "Unspecified error". OLE DB provider "SQLNCLI" for linked server "serv01" returned message "The stored procedure required to complete this operation could not be found on the server. Please contact your system administrator.". Msg 7311, Level 16, ...Show All
Visual Studio Problems deploying CR with VS 2005
Hi, We actually have developped a Web application using visual studio 2005 and choose to use Crystal Report. We are trying to install it for two customers and encounter some issues. The first one is a technical problem : on both site nothing happens when clicking on the print button in the CR tool bar. It works fine on our site. Is it a known issue The second one is a licencing issue : we bought two Crystal Report XI developer ...Show All
Visual C++ where is console application(.net) in beta2
I installed vs2005 team beta2 yesterday. but, i could not find any place to create 'console application (.net)' as in beta1. instead, i found 'CLR console application'. Is it the new name of 'console application (.net)'. did i miss sth important in the dvd i got Hi Riekey, Yes, they are the same. Ronald Laeremans Visual C++ team ...Show All
Visual C++ Create an dll from existing c++ project
Hello... I have a c++ project and want to use this in a c# program. So, I thought I could make a dll from this c++ code. But I didn't find the right solution at this moment. Maybe you can help me The c++ program consists of about 15 files (.cpp and .h). I think I have to remove the main method, but then ... In my c# programm, I want to call some functions of the c++ code... Regards, Jacquipre. ...Show All
SQL Server Output of sql commands
Hi, Suppose there are two tables employee and salary and a,b are two instances of tables employee and salary.There are 20 records in each table.Then what will be the result of the following query select a.*, b.* from employee a, salary b. regards arun create table a ( a1 char ( 3 ), a2 char ( 3 )) create table b ( b1 char ( 3 ), b2 char ( 3 )) insert into a values ( 'a11' , 'a12' ) insert i ...Show All
Visual Studio Express Editions Console app on Win98
Hi all, I wrote a simple console app to write characters to a COM port; after I figured out how to deploy to a Win98 computer, the exe seems to start correctly, however CreateFile returns a null handle (I mean a 0 value, not INVALID_HANDLE_VALUE) and WriteFile returns FALSE; GetLastError returns 6 (invalid handle). Do you know if there is any compatibility issue Thanks in advance Paolo   ...Show All
Visual Studio How do I edit while debugging a mixed-mode project?
How do I edit while debugging a mixed-mode project The file is locked during the debugging and to edit I must stop the debug session. At least in VS.2003 I could edit the file, even though the edit was not incorporated into the debug session. Thanks for logging this issue. Habib Heydarian Program Manager Visual Studio Debugger ...Show All
.NET Development Serializable
Hi, I have a class holding a Thread variable. The class is Serializable. But trying to Serialize I'll get a exception that Thread is not marked Serializable, how do I make the class to not try Serialize the thread variable ...Show All
.NET Development BitArray MyProblem Or Bug ?
My Problem is BitArray (System.Collentions.BitArray) if you run the code below byte [] bits = new byte [2]; bits[0] = 1; bits[1] = 3; BitArray BA = new BitArray(bits); string st = string .Empty; for ( int i=0; i< 16; i++) st += Convert.ToInt16(BA.Get(i)).ToString(); MessageBox.Show(st); the code will create byte array with to bytes first byte will be: "00000001"(binary view of 1) and the second: "000 ...Show All
SQL Server SQL Server 2005 Installation does not install sqldmo.dll
Hello, if I do a unattended installation using this command setup.exe /qb ADDLOCAL=Client_Components,Tools_Legacy,Connectivity SECURITYMODE=SQL SAPWD=xxx INSTALLSQLDATADIR=C:\ sqldmo.dll is not installed, although "Tools_Legacy" should do this. What am I doing wrong Oops; I was sure that I had tried that also without success. O.K., it works here. Thank you. ...Show All
.NET Development System requirements for VS 2005
Does anyone know what the runtime requirements are for solutions developed in VS 2005 Thanks, Eyvind. Never mind, I found it: http://www.microsoft.com/downloads/details.aspx FamilyId=7ABD8C8F-287E-4C7E-9A4A-A4ECFF40FC8E&displaylang=en " Supported Operating Systems: Windows 2000, Windows 98, Windows 98 Second Edition, Windows ME, Windows Server 2003, Windows XP" Yay! Eyvind. ...Show All
.NET Development Visual Web Designer Quetsion
I think I posted this in the incorrect thread before: Gang, I was wondering if someone could lend some help. I'm using Visual Web Designer and been following different tutorials. I'm stuck now with a turorial trying to edit data within a grid view. Here's the deal- I created a database called db_DataAccess and a table called tbl_Members. Then I dragged a gridview control and setup my sqlDataConnection and it displays a ...Show All
