Indinfer at Balt-Med's Q&A profile
SQL Server SQL SMS EE CTP won't open
I've installed SQL EE from http://www.microsoft.com/downloads/details.aspx familyid=220549b5-0b07-4448-8848-dcc397514b41&displaylang=en and SQL SMS EE CTP from http://www.microsoft.com/downloads/details.aspx FamilyId=82AFBD59-57A4-455E-A2D6-1D4C98D40F6E&displaylang=en but I can't get the Management Studio to open. The shortcut "SQL Server Management Studio Express CTP" just displays an hourglass for half a second, then does nothing. The smsee.exe process doesn't show up in task manager. I've tried reinstalling, running it as administrator, and running the executable from the command line. Any suggestions ...Show All
Smart Device Development error - Connect to device failed!!
hi there, I'm getting an error "Connect to device failed", whenever I tried to deploy my applications to emulator. I'm working on Windows Mobile 5.0 PPC using VS2005 and Active Sync 4.0. Yesterday, I installed "Microsoft Virtual Machine Network Driver" for Internet Connection issues on emulator, Internet issues were solved but raised new problem for me. Could this be a problem, Can any body please tell me why this is happening and whats the procedure to overcome this error. Plz help me. Thanx in advance Regards Harish Hi, I am also facing same kind of problem.I created my own custom os for ARMV4i emulato ...Show All
Visual C++ Multi-assembly solution works on dev machine but get runtime error on test box
I have solution with multiple DLLs and one starter EXE. I'm not attempting to GAC any of the DLLs. I just have them residing in the same directory. One of my DLLs is a Managed wrapper (Managed extension) for some Unmanaged code. Everything works just fine in my dev environment which of course has VS 2005. However, my test environments (with only the 2.0 Framework) produce the following error at runtime: Unhandled Exception: System.IO.FileLoadException: Could not load file or assembly SLPClientProxy, Version=1.0.0.0, Culture=neutral, PublicKeyToken=a40ef17b4ef692d0' or one of it s dependencies. This applicat ...Show All
Visual C++ error LNK2005: "void __cdecl bp5(void)" (?bp5@@YAXXZ) already defined in test.obj
Hi All, I generated a simple SDI skeleton using the wizard, and tried to #include some of my libraries. It gave me a bunch of 'LNK2005: ... already defined ' errors. I repeated the basic SDI generation in another project and this time only tried to include a single, trivial header file: mytest.h #pragma once //#include "stdafx.h" void bp5(){ int a = 0; a+=1; } I include this file in the testDoc.h file of my test project. Despite that this simple header file is so basic, and despite the #pragma once directive, it still gives me the same LNK2005 error! Can somebody kick me and tell me what's wrong Thanks ...Show All
SQL Server Limited number of assemblies available in Visual Studio SQL Server Projects
Hi, When starting a SQL Server Project in Visual Studio, there are a very limited number of assemblies available to reference. Does anyone know why Specifically I would like to use "Microsoft.AnalysisServices.AdomdClient". Does anyone know how I could do that Best Regards, Johan Ahlen, IFS Hi, if you want more than these one, you have to register them in the GAC to see them in VS. The ones listed were intensivly tested by Microsoft not to produce any memory leaks being threadsafe etc. Additional (custom) resources have to be listed first for the computer and marked with the ...Show All
Windows Forms Graphics Question
After setting a winform to IsMdiContainer = true, I can't draw graphics text on it in its paint event. Here's the code doing the drawing: Dim objGraphics As Graphics objGraphics = Me.CreateGraphics() 'Draw some text. Dim TextFont As New Font("Arial Black", 36) Dim TextBrush As New SolidBrush(Color.LimeGreen) objGraphics.DrawString("Welcome", TextFont, TextBrush, 20, 150) Please kindly advi ...Show All
Visual Studio CR 2003 and CR 2005 RTF text interpreation
Has anyone experienced that a crystal report text box that brings back rtf formated text and set to interpret the text as rtf that is set to cab grow will once in a while cause portions of the text to be truncated or portions of individual characters to even be truncated If so suggestions to resolve this as users now are required to export it word so that text is formatted as it should be. Help :-} Dayn ...Show All
Visual FoxPro small form failure
I have created a small form to display messages from a larger major app form. It is supposed to display a message for 3 seconds and then disappear. It took me 5 min to make it. It can display its face no problem when run from a browser. The next step was to invoke if programmatically from the main app. I use SET PROCEDURE TO "C:\.....\formName.sct" command. It must be a compiled form file. This statement did not accept anything else, like *.scx file. I need to pass parameters to the form and I cannot figure out how to do it. I would appreciate assistance here but the subject of this post is different. When I ... DO formName < ...Show All
SQL Server cannot convert between unicode and non-unicode
I keep getting the error message below when attempting to import a text file (flat file) to an SQL Server Destination using SSIS. This database has recently been migrated from SQL Server 2000 (where I used a DTS Package that worked fine). I plan on doing further manipulation to the file after importing but have so far tried to keep one step at a time. I have tried using a smaller files and different tables but still get a similar response. I believe that the encoding of the text file is ANSI. If it is relevant the database collation is Latin1_General_CI_AS (the same as it was when 2000). Any help anyone can provide will be greatly appreciate ...Show All
.NET Development how to set the dataset's namespace
hi, I'm use the Dataset Desinger of Visual Studio 2005 to design a dataset. Then, I compile the project. The desinger generate a typed dataset class. But the dataset class is inside the global namespace. How to set to generate the typed dataset class in a customed namespace. The namespace above is C# namespace. Not the XML namespace. thanks. Hi, When you create a typed dataset, the generated dataset class inherits the DataSet Class object. That is why it is inside the global namespace. You cannot customize the namespace of the generated dataset class. Hth, Michael Castillones ...Show All
Visual FoxPro Winsock Problem over a WAN
Hi I have an app that uses the winsock control to send and receive messages. The server Listens for connections from clients on a port once connected messages can be sent both ways. It works fine on a LAN but when I try it on a WAN the Clients conect but are not able to dispaly the GUI. What am I Missing Thanks Charles I think you need to supply more detail here if you want an answer. Clearly no-one knows anything based on the information you have given. Andy Kramek Moderator ...Show All
Windows Forms DataGrid : left bar visibility?
Hi, I'm creating a control that encapsulates the DataGrid. It is quite important that the left bar is removed (the one that displays an arrow if a row is selected) but i don't know how to do this. Is it even possible I've tried setting RowHeadersVisible to false but that doesn't seem to work. ...Show All
Visual C++ mp3 with c++ mciSendString doesnt work
Hi .. i`m trying to play a mp3 file form d:/a.mp3 (MY HDD location) here is some code #include "stdafx.h" #include<windows.h> #include <iostream> #include <string> #include <mmsystem.h> using namespace std; int _tmain(int argc, _TCHAR* argv[]) { char str[]="open \"d:/a.mp3\" type mpegvideo mpegvideo alias MediaFile"; char str2[]="play MediaFile"; cout<< mciSendString ((LPCWSTR)str,NULL, 0, NULL); mciSendString ((LPCWSTR)str2,NULL, 0, NULL); } i get error code 292.. can anyone see my prb remeber location is D:/a.mp3 Thanks!! Please post the exact error Which line is it on Depending in more d ...Show All
Visual Studio 2008 (Pre-release) scvutil exclude type
How is the syntax for excluding types with scvutil svcutil.exe http://localhost/Service /et:namespace.class doesn’t work. And how do you exclude more than one type Thanks The type must generally be assembly qualified. I believe the syntax is something like: /et:namespace.class,assembly I believe you can also use the /excludeType option multiple times in the same svcutil call in order to exclude multiple types. Daniel Roth ...Show All
Visual C# Solution, Not Answer
Is it a flaw on C# Or, by design class A{ virtual string foo(){return "A";} } class B:A{ override string foo(){return "B";} } class C:B{ override string foo(){return base . base .foo();}// impossible } class D:B{ override string foo(){return ((A)this) .foo();}//impossible } class E:B{ override string foo(){return this. A:: foo();}//impossible } There are some times when I want to call methods of grandparent class... The creator of C# did not give us the way. Personally I think it's by design. If you need to get to the grandparent method, you should consider whether you really want the encapsulat ...Show All
