hfghgdhfghfghgd's Q&A profile
SQL Server Connect to Remote Analysis Server
Hi, How do I connect to a remote Analysis Server using SQL management studio on my local machine. Thanks in advance.. Hi, At the remote computer you want to connect, your nt domain username should be at least in the MSOLAPUser group. And if you want to have server-wide permissions your username should be added to the list displayed in the security tab of the olap server properties screen. Eralper http://www.kodyaz.com ...Show All
Windows Forms Scrollbars in a RichTexBox Control
I'm having a little problem with scrollbars in a richtexbox control and I am hoping someone on this forum has an answer. Here's the situation: I have an application which connects to a remote server and it's constantly receiving text back. I made it so that the class that handles all UI stuff registers for notification events with the class that ...Show All
Smart Device Development database entegreted
hi i am mehmet my questions about smart device applicaton database connection i am writing code about smart device connection database but i want to entegreted my computer database (sql server) with pda database for data. data transfer from pda database to sql server on my computer thank you Hello Mehmet, I didn't completely understood your question. Did you want to sync your PDA database with your database on your computer If yes, then you can use active-sync to sync database between computer and PDA. -Thanks, Mohit ...Show All
Windows Forms Constructor on type 'Inherited.Controlname' not found.
I am getting a following desing time error on my user control. Constructor on type 'Inherited.Controlname' not found. I have already tried puting a empty constructor on the base control but it didnt work ErrorDetials ___________________________ Hide at System.RuntimeType.CreateInstanceImpl(BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes) at System.Activator.CreateInstance(Type type, BindingFlags bindingAttr, Binder binder, Object[] args, CultureInfo culture, Object[] activationAttributes) at System.ComponentModel.Design.DesignSurface. ...Show All
Windows Forms How to guarantee modelessness in .NET Form in Class Library?
In VB6, the App.NonModalAllowed property would tell you whether you could show a modeless form or not. The docs for .NET say... "No equivalent. This was a read-only property related to ActiveX .dll files. The .NET common language runtime automatically manages this behavior." ...which does not explain what is happening. I'm guessing that the clr shows the form as modal if non-modal is not supported. I have a .NET class library which has one primary form which absolutely must be shown non-modal. My library is used in many different development environments over which I have no control. How can I always show as modeless regar ...Show All
Visual Studio Problem building
I have been successfully using VS 2005 Beta 2 (VB.NET) for about a month now. Yesterday, I started getting the error: Error 5 Unable to copy file "obj\Debug\BO.dll" to "bin\Debug\BO.dll". The process cannot access the file 'bin\Debug\BO.dll' because it is being used by another process. C:\WINDOWS\Microsoft.NET\Framework\v2.0.50215\Microsoft.Common.targets 2274 9 This error does not occur the first time I build the solution after just opening it in VS. But all subsequent build attempts fail with this same error. If I exit VS and reopen the project then I can again build one time and al ...Show All
Windows Forms Export Unbound DataGrid To CSV File\Excel with WINDOWS FORM
I've spent hours hunting around the internet to find out how to do this and i can't seem to do it. I've found endless posts on ASP.NET but im using WinForms/VB2005 I would prefer not to have to manuall configure each export process at the time as the DataGridView can be one of at least 4 different structures depending on the options the user selected to fill it. There must be a simple way of taking all records and layout and playing it in excel. There is also no dataset for this GridView.. Can anyone help me please Im tearing my hair out and its probably really easy! Cheers For anyone else tr ...Show All
Visual Studio Team System How do I download Team Foundation Server (Full) ???
I have an MSDN subscription (Visual Studio 2005 Team Edition for Software Architects). When I go to subscriber downloads, under "Team Foundation Server", there are two products listed: Visual Studio 2005 Team Foundation Server Trial Edition (English) Visual Studio 2005 Team Foundation Server Workgroup Edition (English) How do I get the full version of TFS Thanks After spending many days trying to figure out this, I've finally understood... First of all, let's get one thing straight. Regardless of you MSDN subscription level and/or your Certified Partner level. The Micros ...Show All
Visual Basic 2005 .Net Nightmare
As a visB programmer who has been happily coding very successful applications for many years, I have been shocked at the verbose incomprehensibility of the .net framework. Where is the wonderful Basic language that has served so well for so long Is there a way to disable all the garbage in VisB 2005 in order to just write simple single thread applications in the Visual Basic language I have been unable to get even the simplest microsoft SDK examples to run in .Net. I really don't want to invest in learning a language as complex and dense as the .Net applications, I don't believe I will ever need ANY of this functionality. The whole IDEA beh ...Show All
Visual C# AccessViolationError, how to fix?
Using C# express beta 2, I'm getting an AccessViolationError on even very simple forms. It was working fine last night, now I can't get any new form to work. IE, I go to New Project, Windows Application. Add a single Label and click debug. It builds with no problem, but when it goes to debug I instantly get the exception. However, if I open a project I created last night, it works perfectly. I have restarted the IDE and restarted Windows, but it did not make any difference. Thanks for any assistance you can provide. If it will help, here is the exception detail (using copy to clipboard option): System.AccessViolationException was u ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Double buffering a panel in c++.net
Hi Im fairly new to c++.net and im writing an application which models little creatures represented by coloured squares which move around in a panel. Ive been having problems with screen flicker, and reading around it seems double buffering is the answer. Unfortunately though, I cant seem to find any help on implimenting it in c++ (seems to be lots in c# which I tried to adapt but it didnt work). Any help would be appreciated, especially if it contains a few exemplory lines of code. Thanks in advance, Julian If you're using WinForms, I'd expect that setting the double buffered/etc styles as you've ...Show All
Visual Studio Team System Custom rules (and Mono)
Hi guys, I'm working on some custom rules (first time programming against FxCop, using 1.35). The ultimate goal is to develop a rules module to tell me where our code won't run against the Mono framework. In the meantime, I'm stuck on a simple one: public override ProblemCollection Check(Microsoft.Cci.Member member) { Method method = member as Method; if (method != null) { VisitMethod(method); } return base.Problems; } public override Microsoft.Cci.Expression VisitMethodCall(Microsoft.Cci.MethodCall call) { // Detect calls to System.Collections.Generic.List`1<T>.Sort(Comparison<T>) Expres ...Show All
Software Development for Windows Vista CBaseFilter derived class plays video great, but the audio goes silent after a few seconds...
Hi all, I have built a filter, derived from CBaseFilter, with two input and two output pins (audio and video IO). The IO pins I derived from CBaseInput and CBaseOutput pins. I have different classes for audio and video pins: i.e. I have 4 types of pin; Audio In, Audio Out, Video In, Video Out. All testing to date has been done in GraphEdit using a webcam & associated mic for input, and default sound & video renderers for output. The Video IO works fine, with the play and stop functionality working too. The Audio IO works for a few seconds before breaking up and going silent. When the Audio pins are connected, the gr ...Show All
Visual C# Catching exeptions in a using {} sttatement
I'm wondering what the prefered method of handling exceptions is in a using statement would be. For example, last I checked you cant use an object that has already been initialized in a using statement (though some examples in this forum indicate differently, so I could be wrong on this)... So, this Sometype X; try { ...get un-reliable object X } catch { ... } using (X) ...Show All
Visual C# Pass by Whatever
Hi! I am confused by the insistence of both Java and C# that passing a reference type is not pass-by-reference but pass-by-value. I take it that since you get a copy of the reference, they consider it pass-by-value Then, what is passed in pass-by-reference A handle (pointer to a pointer) And, if so, isn't it a copy of the handle that's being passed As you can see, I am missing something. Please, lay it out simply for me. (Pass-by-value--I get.) Thx! It's not a breaking change at all. All I'm calling for is *compiler* support. out and ref are the same thing in IL, it's the compiler that supports the difference. So to, the compi ...Show All
