Manash's Q&A profile
SQL Server Very frustrated for this error
I have been trying to find out solution for this error: The query could not be processed: o OLE DB error: OLE DB or ODBC error: Could not locate registry entry for OLE DB provider 'SQLNCLI.1'.; 42000; OLE DB error trace [Non-interface error: Provider not registered.].; 01000. I read one thread about changing data provider from sql native to oledb, I tried that and still throw the above error. This happens when I drop one of the attribute of the dimension to the cube browser. Did I miss something Thanks Don There could be something wroung gone with installation of SQL native client (SNAC). Try re-installing it from http://www.microsoft.com/downloads/details.aspx familyid=d09c1d60-a13c-4479-9b91-9e8b9d835cdc&displayl ...Show All
Windows Forms add movie program in the installer process
I need add a movie file or similar file to the deployment process. When the CD was inserted to the drive, the movie should start to play, then user either can view the movie or choose skip to the normal installation process. Any one know how to do this Thanks ...Show All
Software Development for Windows Vista Where is WinFx in Visual Studio 2005 July CTP
How do I build a WCF project when the extensions are not there to create the project in Visual Studio I have Vista July CTP, Windows Vista SDK (July), and VS 2005 full. So where do I get the Visual Studio extensions to create projects Larry Aultman ...Show All
Visual Studio Analyze is not repairing the problem
I run the analyze utility it says project log 'wedaaaaa' has a delete record for item 'Online_help.gif' , but that item wasn't found in the project. The project contents as rebuilt from the log 'wedaaaaa' does not match the project's actual contents. How can I remove this problem so analyse does not report it again I have tried all sorts of switch combinations and removing the backup folder but to no avail I still keep getting this error. Anyone have a solution on this Thanks Could you please explain what is involved by the following : "you have to call Microsoft PSS (Product Support Service) to get it". Do I have to ring anyone Is there webpage I could look up to ...Show All
Visual Studio Matrix for RTL
implementing matrix in a report for middle east requires that row header is to the right of control and matrix expands to left. The first feature is implemented using layout property. However, the matrix always expands to right as opposes to left which required for ME users. Is there away to let matrix expand to left Thanks I set the LayoutDirection property of Matrix to RTL but still matrix always expans to right instead of left. Is there another property setting that prevents this behaviour Thanks. ...Show All
SQL Server connection problem
Hello! i'm having a problem with my web aplication. I'm using a net 2.o login in my apliction and mssql express 2K3 server and app_data i have the aspnetdb where are logins for page. When i'm usinng a web form in localhost works fine but from the internet i'm getting a error : Login failed for user 'NT AUTHORITY\NETWORK SERVICE'. This is just a piece of error, have anyone some idea what's wrong OK! I found a solution on this post : http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=130715&SiteID=1&PageID=1 ...Show All
Visual C# .Net2 Webbrowser control: detecting DOM modifications
Hello everyone, I am toying lately with the new .Net 2 WebBrowser Control (I'm trying to do an automated Internet Explorer named automaton). I'm programming a automaton script editor. It works like a normal Internet Explorer, but it saves the user input on the DOM. When a user click on an element, the script editor stores this operation. To do this, upon document load, I add programmatically, for each element, a new function on the click event, which notifies my application which element has been clicked. It works somehow, but I have problems with recents websites, which are using extensive Javascript/Ajax: some Javascript modifies the DOM after the document has been loaded, so my application can't detect a click on those eleme ...Show All
Visual Basic Networking
Hi, This is my first time writing in this forum and I hope I'll get the answer for my questions . I'm developing a complicated system using VB.Net and I'm facing a big problem, how can I connect two or more applications which I've developed using VB.Net Please if you have an answer for my question or a link to a page that has it write it . Thanks . Magic PC General Manager Abd Allah Diab Hello and welcome to the forums. Your question is kind of vague, so could you specify a little more what you are trying to accomplish Do you want to send data between application or do you want to use the functionality of one application in the other Will the application run on the same computer or ...Show All
Visual Studio Class Designer in VS2005 Beta2
How do I create one I just can't find the Class Diagram template under the New Item.. menu in solution explorer for a Project Howe do I go about adding this in . Thanks in advance Balram It's too bad that there are no class diagrams in the Express editions. I am just programming for fun, and I am going through the Microsoft Visual C# 2005 Step by Step book. I came to a part where it wanted me to use a class diagram. Too bad... ...Show All
Visual Studio Team System "Show Project Portal" is not active
Hello, I have a problem with opening Project Portal, When I right-click on my project in Team Explorer, I get the "Show Project Portal" link unavailable. When I do the same on the server, I get the next message: Server Error in '/' Application. Runtime Error Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed. Details: To enable the details of this specific error message to be viewable on the local server machine, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErr ...Show All
Windows Forms Open close save
Hi i realy need help i want to create a alternative to word but my save featcher dose not save the things in my text box how do i set it to save the text box please help me Giggig guy thanks John but the path does not it is telling me that path does not exist so where do i make it so that you know the path that i mean i highlited it in black and changed the color to red { // create a 'streamwriter' object. System.IO. StreamWriter sw = new System.IO. StreamWriter (System.IO. File .Open( path , System.IO. FileMode .Create)); // write the text to the file. sw.Write(TextBox.Text); // close the file sw.Close(); } ...Show All
.NET Development .NET encourages poor coding?
The more I look at .NET error handling, and how to deal with it, the more frustrating it gets. Take this class for example. It has a single boolean property. You have to know on which side of the call an error will be raised… by the caller or the callee… well here’s a prime example. Say you have to read data from somewhere like a text file and you cannot ensure the format of the data is proper. Well, you cannot depend on a property to check that data for you if you strongly type the property. Read the orange comment to see what I mean, and please let me know how you deal with this situation since to me it appears to require horrible program design. Public Class ...Show All
Windows Forms How can I install my program files into "C:/Program Files/"?
How can I install my program files into "C:/Program Files/" If this is a setup project, select the project in solution explorer, then View, Editor, File System. The folder Application Folder is by default set up to be located in the Program Files folder \Manufacture\ProductName. ...Show All
Visual Basic Printing the whole form, and not just the visible part
Im sorry if this has been posted before, but im desperate for an answer. The problem I have is that I want to print the whole contents of an mdi children form, but im just getting the visible part. What I need is a method to print even the part that you need to scroll down to see. As it is now, im using this subroutine to generate a bitmap of the form. Private Function GetFormImage() As Bitmap ' Get this form's Graphics object. Dim me_gr As Graphics = ChildForm.CreateGraphics Dim s As Size = ChildForm.MaximumSize 'ChildForm.ClientSize.Width ChildForm.ClientSize.Height ' Make a Bitmap to hold the image. Dim bm As New Bitmap(s.Width, _ s.Height, me_gr) Dim bm_gr As Graphics = me_gr.FromImage(bm) Dim bm_ ...Show All
Visual Studio Tools for Office RSS feed in Outlook
How can I see if a MailItem is a RSS item using the object model // Johan As its name implies, I would expect the NewMailEx event to fire only for new mail. RSS feed items are not mail. You should be able to use the Folder.Items.ItemAdd method to monitor RSS feed folders for new items. What is it that you want to do with these items I don't write C# code, so I can't speak to the best way to check the type and cast. ...Show All
