WHats wrong's Q&A profile
SQL Server OLAP Connectivity
Hello all, We have Analysis Services 2000 with an OLAP cube. The cube has a role allowing access to all Windows domain users. From my development workstation we can connect to the cube, using Excel or a HTML page with the Office Web component, logged on as any user. However, from any other computer in the domain, and logged on with the same users, we cannot create a connection; the OLAP server is not visible! The client computers are all the same: Windows 2000 Pro and the users all belong to the domain. Why can we not connect Has anybody ever experienced this sort of problem We need to solve this by Monday, our deadline to show our OLAP application to the users. I would really appreciate somebody's help. Thanks in advance, J ...Show All
.NET Development Request for the permission of type 'System.Net.WebPermission, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561
Good day to you, Lets see if I can make myself clear: (not very good english) I have a WebService (wsCustomerSurvey). I'm developing a WinApplication that uses the wsCustomerSurvey WebService. Everything was working ok, one method of the wsCustomerSurvey returns an Object (Client in xml) With that object I was populating some controls in a Form. But then I needed to change a property (from integer to string) of the ClientObject in the wsCustomerSurvey, so I did and then rebuild and publish the WebService. But when I run my winapp again and call the wsCustomerSurvey Dim ws As New wsCustomerSurvey.Service Dim c As New wsCustomerSurvey.Cliente c = ws.BuscarCliente(txtTelefono.Text) I ...Show All
Visual C++ Only half of the CPU used
Hi All: I am running a c++ program in the debugging mode in Visual Studio 2005 (standard edition) - I'm noticing the CPU usage is only 50%. I'm using a new pentium D chip 3.0 ghz on a new dell optiplex gx620 - Wow - what is up with this How can I reclaim my "personal computer" and use all the power of my processor - This really sucks. -Phil You can use SetThreadIdealProcessor to change the preferred processor for a thread. For more information, visit http://msdn.microsoft.com/library/default.asp url=/library/en-us/dllproc/base/openprocess.asp . ...Show All
Visual Studio 2008 (Pre-release) UIPermission error during Navigation to Download on Demand components
Hi, i am trying to use the following code, in an xbap, to navigate to a page in a dll that is downloaded on demand Uri uri = new Uri ( "/ProgressiveDeploy;component/window1.xaml" , UriKind .Relative); this .NavigationService.Navigate(uri); It compiles fine, but I get a UIPermission error at runtime. Is there something preventing this in WPF xbap applications. If so then why I would expect xbaps to have this functionality so large applications can be broken into smaller chunks. ok i'll wear the dunce cap this week. I guess the UIPresmission issue had to do with the fact that I was trying to navigate to a window instead of a page. ...Show All
Visual Studio 2008 (Pre-release) Creating an AppBar in WPF
Does anyone know how to create an AppBar using WPF I have done it in WinForms using API calls, but I don't see a way to create the same behavior in WPF. Pointers to samples or just some code posted right here in the forum would be appreciated! To accomplish that, you can start by creating a Window object and set its desired size and location based on the current screen resolution. The property you want to set to ensure it doesn't get hidden behind other windows is Topmost =true. You might also want to turn off the default WindowStyle =None so it take out the system buttons (max/min/close) and Window ResizeMode =NoResize, so you can control the resize behavior programmatically ...Show All
Visual Studio Windows Workflow foundation on Vista x64
Hi I've installed the Vista SDK which includes .netfx 3.0 but there's no workflow foundation project and when I try and open an existing tutorial project I get an error message that project type is unsupported by this installation. I tried to install WWF from http://www.microsoft.com/downloads/thankyou.aspx familyId=5D61409E-1FA3-48CF-8023-E8F38E709BA6&displayLang=en but it appears to already be installed. Is it possible to use workflow foundatation on Vista x64 with VS2005 Team Edition Dave I'm fairly sure I downloaded the correct SDK - everything else installed ok (i.e. the XAML stuff). I also tried the seperate "Visual Studio 2005 Extensions for Windows Workflow Foundation (EN)" and ...Show All
Visual C# Underline text
I was wondering if there was any way to underline the text of a string... Application: For right now I am outputing a bunch of strings into a message string to display in a message box. Later I will be outputting to a text file. I have searched the MSDN Lib to no avail; if someone could point me in the right direction, that would be great. Can you use HTML code in VC# Thanks Thom Is there any way to append an RTF file Currently this is my code : richTextBox1.SaveFile(System.Environment.GetFolderPath (System.Environment.SpecialFolder.Personal)+ @"\Testdoc.rtf"); which saves a file called Testdoc.rtf but if you click save once, then change the text and save again it doesn't append it just overwr ...Show All
Visual Studio Express Editions Cannot run program from tutorial
"visual Studio cannot start debugging because the debug target 'C;=.\Documents and Setting\<myname>\Local Setting\Appliation data\Temporary Projects\WindowsApplication1.exe' is missing. Please build the project and retry, or set the OutputPath and AssemblyName properties to point at the correct location for the target assembly." That is what I get after following directions in the tutorial built into visual basic 2005 express. As much as I'd like to learn this language, I don't need the frustration. There IS no such program as WindowsApplication1.exe . What am I doing wrong mjmiller@surfglobal.net PS why can't I put the picture of the error in the **** post for crying out loud ! ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Where is the download?
It is 12:48 pm here (GMT + 1)... in Nuku'alofa (GMT + 13) it is tomorrow... So where the hell is my download link :-D it's past 9 am over here (Netherlands). By my calculations it should be past midnight Pacific Time... I'm bored of cleaning my Holy Grail, let's get this show on the road!! ...Show All
Visual Studio Team System Recording Atlas (Ajax) control
Hello, After recording a web test with a page including an Atlas control, there is no Form Post Parameter recorded from the page. How can I go around it Thank you in advance for your help Jeanvo QA Have you tried Fiddler It can be downloaded from www.fiddlertool.com . ...Show All
.NET Development Combining Images
Hi there, My problem is this: I have two images, one an RGB image and one a greyscale image. I want to combine the images using the greyscale image as an alpha channel for the RGB image. How can I combine these images like this Thanx for ur help Here's how I did it using LockBits. That's for the point in the right direction Alex. This took me a little bit of heartache though so I figured I'd try and save the next guy the trouble. Sorry for bumpin such an old thread too. Code Block public static bool Alpha(Bitmap b, Bitmap s, Bitmap a) { BitmapData bmData = b.LockBits(new Rectangle(0, 0, b.Width, b.Height), ImageLockMode.ReadWrite, PixelFormat.Format32bppArgb); BitmapData ...Show All
Software Development for Windows Vista Sample code for calling a sequential workflow from asp.net
I am not finding a single working example that shows accessing a sequential windows workflow foundation library from a web form. There is one example in microsoft site but that doesnot work because of some missing namespace. Can anyone provide few samples of using workflow from webforms and webservices In above example, why you dont use ManualScheduler as recommed in MSDN ( http://msds2.microsoft.com/en-us/library/aa349445.aspx ) Is it the same between using those both methods ...Show All
Visual Studio Failed to Create Class Error
I Working with Visual Studio 2005 Standart Edition (Academic edition, EN), and i got every time i want to create a new Class in the classdesigner an "Failed to create class" error. Drag and Drop classes from the Classview or Files form the Solution-Explorer works without problems. It was a clean Installation, no Beta2 install. Only Windows XP SP2, Visual Studio Express C# German edition, .Net Framework 2.0 & 1.1 in german also both SDKs in German. I installed Visual Studio without the MSDN Lib.. Visual Studio Version is 8.0.50727.42 (RTM.050727-4200); .Net Framework version: 2.0.50727 No, Because I have Microsoft Visual Studio 2005 ...Show All
SQL Server SQL Server Express is working - what tool do I use to create database and tables?
Hello, I have SQL Server Express working however I don't see any tools to create a database and tables. I am trying to create a database to store stock quotes that I will input from a c# program. What tool should I use to design the database Thank you! Toben Hi, I am new to .net application development. I have developed a windows .net 2.0 application with SQL Server 2005 as backend. I need to create an installation file for my project and send it to a client. Could someone please guide me in this process. As of now, I have hard coded the database connection string and also have an existing database with all tables. I assume that the client would not have sql server 2005 installed on his machin ...Show All
SQL Server How to do backup in Cluster
Hi, I have a cluster set up and working fine. I am in a stage where I need to do the backups. I have added 4 disks as dependecies to the sql service for the instance. The backups should not be on these disks. When I do a simple backup I can see only these 4 disks so my question is how do I do the backup to fileshare or other disks that are not partof the cluster. I have 3 virtual servers so what wil be the best thing to do for backup Thanks Is there a reason for not sending your backups to disks which are part of your cluster group Certainly you wouldn't send backups to the same disk as the database is stored on, but another disk in the same group should work just fine. ...Show All
