JEsraelo's Q&A profile
SQL Server maintenance plan - backup database
win2003 (without IIS ) SQL2005 German, the maintenance plan doesn't work. create a blank database, create a maintenance plan - it works fine, but it is a blank database. restore database, the same maintenance plan does nothing (logfile: succesfull...)! If I try to create the maintenance plan after restore database, impossible to choose my database, there are only master, model, msdb ... ...Show All
Visual FoxPro video control
While waiting for answers to my other post I tried to play with a video control. It gives me an error I cannot understand: cFileName = JUSTSTEM ( JUSTFNAME ( cLine )) THISFORM . O_VIDEOPLAYER1 . cfilename = cLine THISFORM . O_VIDEOPLAYER1 . playvideo ( cFileName , 100 , 100 ) cLine is the complete path to an .AVI file. The error is that "no parameter statement is found" Is anybody familiar with this control Thanks. Alex, While you're reading other:) go to VFP9 tools\task pane. Click more panes (chevron) and check solution samples. There at least 2 samples for playi ...Show All
Visual C# how to plot a graph?
Hi, I wanted to plot a graph by reading numbers from a file. How would I actually plot anything Thanks Bruce Hi, Check out the following article: http://www.codeproject.com/csharp/ZedGraph.asp Regards, Vikram ...Show All
SQL Server book
It seems that there are only two books on SSIS The Rational Guide to Scripting SQL Server 2005 - BETA preview Professional SQL Server 2005 Integration Services by wrox Has anyone read these or any other ones out there Any thoughts on which to get I am very new to SSIS. Thanks I refer you to your previous post in which you asked the same question: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=425223&SiteID=1 -Jamie ...Show All
.NET Development Write to XML NEed Help !
I'm trying to create a xml style error logging. Whenever error occur, it'll be recorded in the xml file; it won't overwrite, but will keep adding. I'm now testing on using the code below. However, I just can't get the data write to the xml file. There is no error, but i'm not quite sure what's my mistake. Does anyone have any idea or would you be able to give me some advise on the best way to write data to xml that would not overwritten the previous Code Start --------------------------------------------------------------------- xmldoc = New XmlDocument   ...Show All
.NET Development Failed to access IIS metabase
Getting the following when am trying to run a web client in Visual Studio 05. I have already set the permissions using "aspnet_regiis -ga aspnet" for the web service I created and it works fine. Switch projects to the client and i get this. Switch back to the web service and it works. Failed to access IIS metabase. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Any ideas Hi Mark, Thanks a lot.Ur suggestion was valuable. I ...Show All
Windows Forms MenuStrip Items Iteration
I want to iterate through all ToolStripMenuItems in the Items collection of a MenuStrip using foreach. It seems that only top-level menu items are returned. For example a "File - Open" menu item is not returned, only the "File" Item. Is this a bug in the control or am I doing something wrong I have inserted the sample code segment below. foreach ( ToolStripMenuItem itm in MainMenu.Items) { // do stuff with the item } Well, MainMenu only contains the top-level items. If you look for items that are in the popup menus displayed by the menu when check the DropDownItems property ...Show All
Windows Forms ActiveX control issues
i have an activex control developed in c++ (not managed c++) which is used in my windows forms application. the purpose of developing it in c++ is mainly for performance point of view. i have an experience in GDI+ and control development and what the said activex control does is just the same painting routines that i have been doing in .NET using the wrapper classes for graphics object, pens, brushes, etc. is there really a performance difference between using the said activex control in a .NET winform application, and having it ported into C# using the managed classes for GDI+ I think yes, GDI+ in .NET is generally fas ...Show All
SQL Server How to deploy reports from my pc to my client's server?
Hi Guys, I am using MS Visual Studio .Net 2003 to design reports from the data in MS SQL Server. I have no problem to deploy, view or run the reports in my pc with MS SQL Reporting Services installed. Now, my client's server with MS SQL Reporting Services only installed, but no MS Visual Studio installed. How to deploy all my reports in my pc into my client's server so that user can view the reports in the server thru IE Thanks. Yes, you can upload the .RDL file into Server. You need to open http://<servername>/Reports page and press Upload File Butto ...Show All
Software Development for Windows Vista Default values of dependency properties
How can I set the default value of a dependency property public static DependencyProperty ButtonProperty = DependencyProperty.Register("Button", typeof(Buttons), typeof(MessageWindow)); [Description("Displayed buttons on the message window")] [Category("Data")] [Browsable(true)] [DesignerSerializationVisibility(DesignerSerializationVisibility.Visible)] [DefaultValue(typeof(Buttons), "OK")] public Buttons Button { get { return ((Buttons)(base.GetValue(MessageWindow.ButtonProperty))); } set { base.SetValue(MessageWindow.ButtonProperty, value); } } This way doesnt work..! speed2002 ...Show All
Visual Studio Express Editions Using SQL Express 2005 over the network
Hi All, Having trouble getting this to work and can't find any help files, does anyone know where I can find some information about setting up SQL Express 2005 so that antother PC can access the database Thanks in advance. Wayne Have a look at this SQL Express blog . I have yet to use remote connections. But it basically is to enable TCP/IP protocol and allow remote connections. ...Show All
Visual Studio Custom Wizard: "Invalid at the top of the document" error
VS2005 Developer - Team Edition Extensibility Question: I'm a newcomer to extensibility. I have attempted to follow the MSDN Library walkthrough for creating a wizard. This project adds a new item to the "Add New Item" list for C# projects. When this Item is clicked, it should run the wizard. Instead I get an error dialog with the message "Invalid at the top of the document". I have downloaded some extensibility samples from MSDN and installed them only to recieve the same result. Can anyone tell me what I'm doing wrong dkbryan dbryan@cps.ca.gov There are a few othe ...Show All
Visual Studio Express Editions howcan I install the Document Explorer for Visual Basic Express edition
In Visual Basic I can't access the online help Are you getting any error messages when you go to the help menu from the top... At the moment you can not install the different parts seperatly (Other then SQL Express). ...Show All
Visual Basic Tabbed Browsing - Struck a problem.. Please help...
Hi everybody, I have started making my own tabbed browsing but i dont know how to use the webbrowser progresschanged sub without having an intial object 'WebBrowser1' - all of them are made programatically and names are stored an ArrayList. How can i add Private Sub WebBrowser1_ProgressChanged( ByVal sender As Object , ByVal e As System.Windows.Forms.WebBrowserProgressChangedEventArgs) Handles wblist.item(itemname).ProgressChanged I also need the System.Windows.Forms.WebBrowserProgressChangedEventArgs for each browser. When i tried typing it in manually some help files mentioned WithEvents - is this where i shou ...Show All
Visual Studio set credentials for ReportViewer?
This can't be rocket science. In RS 2000, I could set a credential like this: rs.Credentials = New System.Net.NetworkCredential(repSvcUserID, repSvcPwd, repSvcDomain) What is the equivalent to this in RS 2005, when calling a report via a webform reportViewer control I've found some very complicated examples of creating your own class with IReportServerCredentials, but I can't seem to get it to work. Is there some simple example available Marie Hi, i don't mean to but in but i think my problem relates to this closely. I've impemented the above VBcode, and actually i found it on ...Show All
