anukirthi's Q&A profile
SQL Server BI Portal connected to analysis services 2005
Anyone has connected the bi portal with analisys services 2005 I have a security problem. Thanks I had to do this a couple of days ago. The only way I could get it to work was if I went into the advanced options on the Data Source and specified the full connection string myself, making sure to specify MSOLAP.3 as the provider. When I just chose the options from the standard connection dialog, I could not get it to work, however I was running the BI Portal for a demonstration from a virtual server so their could have been other complicating factors involved. Note: because BI Portal uses OWC you will need to have the OLEDB provider for AS 2005 installed on all your client machines. Hope this helps. ...Show All
Windows Forms VB2005 filter using datetimepicker
Hello, In the field of my ms access database there is a field called 'OrderDatum' that contains the value '30-10-2006'. When I click on the field 'OrderDatum' in the ms access database the following value appears '30-10-2006 13:20:38'. So the time is added. I want to filter only on the date. So I want to find '30-10-2006' instead of '30-10-2006 13:20:38'. How do I have to adjust my code so that data is found If Me .dtpZoekOrderDatum.Value = Nothing Then strFilter = strFilter Else If strFilter = "" Then strFilter = "OrderDatum = '" & Me .dtpZoekOrderDatum.Value & " '" Else strFilter = strFilter & "and OrderDatum = '" & Me .dtpZoekOrderDatum.Value ...Show All
SQL Server No column to map
Hello, I am using oledb source and running sp_helpdb procedure but when I open the columns windows there are no column available. your help is appreciated. Thanks. ...Show All
Visual Studio 2008 (Pre-release) MLINQ - for MDX as a replacement for ADOMD
SQL Server has a mutidimensional language for analysis services called MDX. it can be accessed on the biz tier via ADOMD or XML for analysis services. it is used to process multimensional datacubes and data mining models. Are there any plans for an MLINQ I'm curious if a "LINQ to MDX" implementation has shown up again on the radar. Any info -Larry ...Show All
Windows Forms Troubles with Basic form events and custom events
Hello! Well, I have a problem A have created a Form, using Visual Studio 2005 designer, also I have created a method wich must pro ess the KeyPress Event and also I've created my custom event with custom arguments and my Form also have a handler to process that event. But I have a problem: when my program is running and I'm pressing, for example, the ENTER key, my Form perfoms My custom handler and not a standart handler. I can't understand, why I did't set my custom method as a handler of KeyPress event and I generate my custom event in other places of my program ( I want to say that when I'm pressing the key, I don't generate my custom event ) . Can you help me with my trouble, I want to handle KeyPress Events correctly. P.S. I' ...Show All
Visual Studio Team System connecting scripts to a database/datasource
i want to create some scripts that generate unique values on the website, how do i set-up a table with random values that the script could pull a value from when performing some update on the webpage How you set it up depends on what type of Data Source you choose to use. Their are many options including SQL Server, excel, and csv among others. Here are some links to get you going: Our FAQ: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=482304&SiteID=1 Sean Lumley's Blog: http://blogs.msdn.com/slumley/ Towards the bottom of the blog are instructions for adding several different types of Data Sources to a web test. ...Show All
Windows Forms Eh... You're not going to believe this...
Okay, I saw on the front page of WindowsForms.Net: ".NET Framework 3.0 released!" At first glance I was very excited because this meant a preview at what development for Windows Vista and the new controls are. Well, hell, I go to create a new WPF Windows Application, (Vista ) from the Visual 2005 .NET 3.0 extensions and all it shows me is an XML/HTML looking code. So I run it without debugging and it pops up with a blank form. Okay now I am thinking, WHAT THE HELL. There is no designer view......................... Its like coding HTML...................YUK!!! Well, what can I say I am VERY disappointed in Microsoft for making this move, it is terrible. It is terrible for programmers and it is just plain stupid. If anyone else has the tim ...Show All
Windows Forms Deployed install wont run application
Hi folks; I've built a data application in VB 2005 which uses sql 2000 on a remote server. I've created a setup and deployment project in the solution folder for the app -- as explained in the help files walkthrough -- added the dependencies and all the required steps as explained. The application installs and runs perfectly on my development machines, but after installing to a client machine, the exe (or short cut) simply will not initiate the application -- no errors or log info -- when we try to run it. We get an hour glass icon for a second or 2, then it simply stops without any kind of other behavior. I am using some 3rd party controls, and the latest version of Crystal 11.5. It's also important to note ...Show All
Visual C# Adding Objects to ArrayList using Button_Click
Thank you in advance for any and all suggestions. I am trying to add a an object called pack to an ArrayList called Boxes using a Add_Click method. private void Add_Click(object sender, System.EventArgs e) { Pack p = new Pack(); try { p.setID(System.Convert.ToDouble(packageID.Text)); p.setAddress(address.Text); p.setCity(city.Text); p.setState(state.Text); p.setZip(System.Convert.ToDouble(zip.Text)); Boxes.Add(p);//here the pack is added to the ArrayList MessageBox.Show("Package added to the list"); this.Reset(); } I have a catch I just omitted it } My problem is when itry to use the back button, it should give me the previous element in the l ...Show All
Software Development for Windows Vista How to realize "My task list"?
Dear experts: It is not uncommon that we need a task list in a workflow system, which means the following sample precedures: 1. Mary login the workflow system. 2. The system display all the tasks (lots of are approvments) she need to do. 3. Mary click one of the tasks, and approve or disapprove it. 4. The system push the workflow instance to the next step. 5. Repeat step 2-4 till all her tasks are completed. So my question is how to do the red step As I know about WWF, there is a property called roles in the CallExternalMethod activity, which combines the .NET role-based authentication and authorization. But by which I can only determine whether the user is authorized to do ONE specified activity, but how to li ...Show All
Visual C# Derive a class from FileDialog
I am trying to derive a class from the FileDialog class but I am not able to do it. I get the the error as I need to to override RunFileDialog method Error 1 'GuiTest.GuiFileDialog' does not implement inherited abstract member 'System.Windows.Forms.FileDialog.RunFileDialog(System.Windows.Forms.NativeMethods.OPENFILENAME_I)' Now if I override the RunFileDialog I dont get the NativeMethods namespace So I thought of declaring the OpenFileName of my own but that also did not help and the parameter of RunFileDialog did not match. If anyone can give me some hints. Thanks Shabbir Then how can I go about making the customization to the FileDialog. Something like A preview for the image and other stuff that we used to be doi ...Show All
SQL Server PACKAGE ENCODING
Hi, a new (little..) problem with xml source. I have to import large xml file in sql server and I use data transfer task and xml source. The xml file are generated without specifing any encoding, and so I obtain many character error if i don't change the encoding. When i put "by hand" (with a xml editor) in the xml file this encoding < xml version="1.0" encoding="ISO8859-1" >, the SSIS task works perfectly without any error. So, i'm looking for a way to use this encoding without editing xml file (more than 500 mb...). the way that i can imagine are: 1) change the package encoding (but I haven't find this kind of settings) 2) change the xml source encoding (but I haven't find this kind of settings) 3) ch ...Show All
Visual C++ managed dll -> COM
I have a C# DLL that I ran regasm to COM. When I #import into my c++, it does NOT compile. I checked the registry and has an entry for that DLL. Am I missing something The error is "Error loading type library/DLL". I guess it is still a managed DLL even though regasm created an entry in the registry. My question is that how do I use it in C++ program after I regasm the C# Dll into COM Dll. I figured out already. I just #import the type library. ...Show All
Visual C++ how can i find all the .dll in the running programm by programming?
how can i find all the .dll in the running programm by programming thanks! Hi You can use the Tool Help functions to get the list of modules (dlls) associated with the process. You can get a sample source code at the following location http://windowssdk.msdn.microsoft.com/en-us/library/ms686849.aspx Regards Simer ...Show All
Architecture How do I allow n possible new fields in a App (CRM)
Hi, We are starting to develop a small CRM as part of our app. I would like to give the user an option to create new fields (specifying the type he wants). How should I proceed to do this In addition to what Diyanil said You also need to consider what functionality do you want to support for those "dynamic" attributes Are they display only how much validation do users expect do you need to be able to add business rules on these fields How dynnamic shoudl these attributes be are they different per record do you need security on top of that etc. Arnon ...Show All
