gssi's Q&A profile
SQL Server About plug-in algorithms in SQL Server 2005
Hi, all here, I am having a question about plug-in algorithms in SQL Server 2005. Since we are able to implement our own algorithms in SQL Server 2005 analysis services architecture, so my question is: what benefits can to a great extent be achieved Like say, we are going to implement a plug-in algorithm, so what considerations should be concerned Thanks a lot in advance for any guidance and help. The plug-in architecture allows you to implement any algorithm that consumes data in attribute value pairs. Analysis Services takes care of many infrastructure needs so that your development can focus on what's important to you - the d ...Show All
Visual Studio Express Editions Connect to SQL SERVER EXPRESS only by code from VB EXPRESS
Dear Friends, I know that by VB EXPRESS can connect only by code to database in SQL SERVER EXPRESS. Now I have try with the code below but obtain this error: Perhaps your login to the server did actually fail. Can you connect using SQL Server Management studio ...Show All
Windows Forms TreeNodes with checkboxes
Hi all, does anyone know how to create a treeview where some nodes do have checkboxes and others don't To me this seems like a fairly common problem, yet I haven't seen any reference to this so far - maybe I'm missing something obvious I know I can draw all the nodes myself by catching the appropriate messages (like some custom treeview implemen ...Show All
Windows Forms Startup Performance
I am having troubles with the inital startup performance of an applicaiton I recently wrote and was wondering if anyone has any suggestions. My applicaiton is a standard datatbase application that populates two list boxes and a third-part schedule view control using Outlook automation and .Net Interop. Even when I disable the populate of these controls, my applicai ...Show All
Visual Studio 2008 (Pre-release) FK column and related tables
When using sqlmetal.exe against a database I step into the following problems: - Some (not all) of the identifiers are written to the .cs file in what I guess is ASCII, even though they are Unicode identifiers (e.g. a column named "Descripcion"), which makes non-alphanumeric characters (ascii chars > 128) appear in the middle of the names, rendering the file unusable. - Some (foreign-key member) columns are named the same as the parent table they refer to (e.g. FK column "Order" in table "OrderItem" is a foreign-key that points to table "Order"). The code generato ...Show All
Visual Studio Tools for Office ActionsPane AddIn for Word 2003 with VSTO 2005 Beta 2
Hi, I am developing ActionsPane in Word2003 with VSTO 2005 Beta2, I use this link for that http://msdn2.microsoft.com/library/d6sb8dyb(en-us,vs.80).aspx . But the problem of that is the document centric, what I had developed is only used for one document. My questions are: How can I modify or create the Actions Pane for Word2003 , so that doesn’t matter which document I open the Actions Pane I create will be available for all documents. I have to create an AddIn Can I use VSTO 2005 Beta 2 for the development of the Actions Pane Best Regards, Jesus Suarez You dont say what element you are having the problem with ...Show All
Smart Device Development Cant create Smart Device project
I don't know if this is the appropriate forum for this, but i am desperate for an answer here... Visual Studio 2005 crashed on this afternoon. since then, i have not been able to open any of my WM 2005/CF2.0 projects. I also am not able to create any Smart device projects. The error i get when attempting this is "The project 'C:\Documents and Settings\<username>\Local Settings\Temp\u0cx3qj1.r2s\Temp\TestApp1.csproj' cannot be opened. The project type is not supported by this installation" After doing a complete uninstall followed by a re-install, i am still having problems. the error when attempting to create a W ...Show All
Visual Studio Report Viewer Print Button
Hi all, When press print toolstrip button that provide by report viewer, it will show us the print dialog. Trouble.... How to make it after press print toolstrip button and system will use default printer to print instead of display print dialog. Thanks kendy There is no way to modify the report viewer print button to do what you want. But there are samples that will allow you to print without the print dialog with your own button. Take a look at www.gotreportviewer.com for some samples that do this. ...Show All
Visual C# Conole.WriteLine does not work.
I have been posting pieces of this code in regards to another problem. Now when I try to execute this routine, I get an error message. During debug, however, I cannot seem to notice any error messages but there is nothing in the Console. I've made sure it is a "console application" not "windows app." Why is it that there is no output to the cmd prompt at all Another question concerns the debugger behavior. It needs a FOCUS to respond to F11 to execute commands. If I place the cursor at the console the debug stops in its tracks. Sort of weird. Are these two problems related It is a code I copied from an MSDN website with some small correc ...Show All
SQL Server Custom connection manager development sample?
Does anyone has code/sample/tutorial/pointer to developing custom connection manager with a custom UI. And then developing a custom task with a custom UI that can point to this custom connection manager... and passing values during runtime from UI to the custom class. TIA, Nitesh The first updated Web release of BOL will contain one sample that works with SQL Server and simply asks for server name...a kind of "Hello World" version of what you're asking for. The second Web release next spring will contain a second sample, a replacement Excel connection manager that includes a checkbox for Import Mode to resolve the common "mixed data typ ...Show All
Visual C# System.Diagnostics.Process() help
Hi everyone, small problem with the use of System.Diagnostics.Process() method. I am using the software OmniPeek and well it can be run via the command prompt to start up and autorun and do what I need it to do; I also have a few other pieces of software I want to run along with it. Long story short, I don't want have to constantly go into the cmd promt to do this, so I tried writing a lil widget. The code I wrote however, does not work, it just opens the program and doesn't execute the commands with it. Here is the code [code] System.Diagnostics.Process proc = new System.Diagnostics.Process(); proc.EnableRaisingEvents = false; proc.StartIn ...Show All
SQL Server Backup of tables
Hi Guys, I would like to take a backup of tables and further use them for manipulation purpose. (e.g.) Select * into arc_employee_ 07_07_2005 from employee Where 07_07_2005 is formatted from getdate(). How can i achieve this formate. Thanks in advance. You cannot specify an expression as table name for the INTO clause. You have to generate the name and then use dynamic SQL to execute the SELECT INTO statement. If you do not want to use dynamic sql, another option is to do following: select * into _temp_arc_employee from Employee exec sp_re ...Show All
.NET Development SslStream client authentication fails
I have set up a client and server app for testing SslStream. Connecting and authentication works fine as long as a client certificate is not requested. When I call AuthenticateAsServer with the clientCertificateRequired parameter set to true, authentication fails. In the RemoteCertificateValidationCallback (on the server) the sslPolicyErrors parameter has a value of SslPolicyErrors.RemoteCertificateNotAvailable, the certificate and chain parameters are null. Debugging the client I am sure that I am passing a non-null certificate. I used MakeCert to create this client certificate signed by the same test authority that was used for the serve ...Show All
Visual C++ Create Windowless control
I'm creating a windowless control with a simple line in it. (GdiPlus). Add a mouse event. This is not working in my MFC dialog project. I can see the mouse event, with the add handler wizard, and add it to the code. It is working tough in VB. What is going wrong Doeb Hi, The code more in detail. What I can find out that within the Fire mouse no connections seems to be valid (see code below). Is there some Interface event to catch Thanks, Doeb In the IDL file the following is declared: interface IMyLine : IDispatch { // some properties [propget, id(21), helpstring(HELP_RGB_LINE_ ...Show All
Visual Studio Express Editions Books: Recommendations
My hope is this will become a sticky posting, so everyone can see it, use it and reply to it. I am looking for recommendations on books for Visual Studio 2005 & Visual Studio 2005 Express Edition (if there's a difference). If you know of any good books related to these, could you please post them here This way people will have a resource they can go to so they can find this type of information, especially beginners like me. I think a good format would be. Title, Author (if known) Level: (Beginner/Intermediate/Expert/Reference, etc.) Subject: (Again, if there is a difference between VS 2005 & VS 2005 EE, then tell ...Show All
