zot166249's Q&A profile
SQL Server SQL2005 install
How to install database and SQL logging separately on a NON system partition in sql2005. Database files can be installed on any different location, but core files of SQL Servers can only exists and be installed on the system drive. HTH, jens Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All
Visual C++ Where do I find the MSVCP80D.dll
When I try to run the debug version of my application it fails with the error MSVCP80D.dll not found. I tried finding it on my machine but failed. Does that come with the Beta 2 of Whidbey I need this to start debugging my apps. It should be picking it up from the SxS directories. Try locating it in the WinSxS directory at the %windir%\WinSxS directory. See related past post for more details: http://forums.microsoft.com/msdn/ShowPost.aspx PostID=72965 Thanks, Ayman Shoukry VC++ Team ...Show All
SQL Server Delete remote files !!! PLEASE HELP !!!
I wish to delete remote files on an FTP server after I download them. I want to download files daily and delete them daily after I finish downloading. I am trying to use the FTP task to do this but I get an error when it tries to delete files from specified location. It says: "Unable to delete files using FTP Connection Manager" The FTP connection manager contains the FTP connection string and password. I have unchecked the passive mode box. Can someone help me with this error, Thanks Annie Any help on this will be appreicated. I need to set up a task so that after I complete downloading the files each day, the exist ...Show All
Visual C# Adding Button on Window Title bar
Hi, How do I add an extra button just next to the minimize button on the Window Title bar. There are infact couple of application where you have help ' ' button just next to the minimize/close button in the title bar. Example : System property dialog box in WinXP. ...Show All
SQL Server Reading and writing same variable to a script
It looks like its not possible to both read and write the same variable from a script using the conventional Me.Variables.<variable> syntax. I can only assign a variable as Readonly or ReadWrite and not both. If I assign it ReadOnly I can only access it in the PreExecute subroutine. If I assign it ReadWrite I can only access it in the PostExecute subroutine (in fact doesn't this just make it WriteOnly in fact ). So I can only either read in or read out a variable using this syntax, noth both. Is this right So the read and write a variable to a script, the VariableDispenser approach is the only option to use. Is this right and is ...Show All
Visual C++ Unmanaged void* to .Net System::Array
I have an unmanaged C++ class representing a 2D matrix. It holds a pointer to a block with the actual data, and fields indicating the number, size and type of the matrix elements. Like this: public class UnmanagedMatrix { public: void * block; long rows; long cols; int type; //refers to an enum of possible types - char, long, double, etc. long sizeOfBlockType; ... } I am writing a managed wrapper to use this class from within .Net with a member pointer to the unmanaged class in the usual way: public __gc class ManagedMatrix { private: UnmanagedMatrix __nogc* pM; ... } I need the wrapper class to get and set the unmanaged block ...Show All
Windows Forms Rich Client not working on HTTPS Server...
Hello everybody, I have a little problem downloading the .Net control hosted in web browser in case of HTTPS Server (SSL Authentication). Basically the .net control is downloaded when the user tries to run it at first time. It works very fine when I uncheck the SSL authentication in IIS. Can any body figureout the reason behind that I think there is a special settings or something like that. Please help me. Mudassar Majeed You will need a "certificate" to do this. The HTTPS server should have the tool for creating development certificate. ...Show All
Visual Basic Quick question
I'm running this proejct on vb. net 03 pro. This is a small project sample that i want to developed a little bit more, but i have a problem with the output... code: Module mainmodule Public usernamedatabase(4) As String Public passworddatabase(4) As Integer Public r As Boolean Sub main() Dim objLoginform As frmlogin objLoginform = New frmlogin Dim x As String Dim y As Integer usernamedatabase(0) = "joe" usernamedatabase(1) = "angel" usernamedatabase(2) = "sam" usernamedatabase(3) = "mary" usernamedatabase(4) = &q ...Show All
Windows Forms Dynamically Creating Labels in VB.Net
Hi I am trying to write psome code to create several labels dependant on the number of rows in an XML file. I have been using the following code Dim i As Integer For i = 1 To i = (number of rows in XML) Dim Labeli As New Label &nb ...Show All
.NET Development uploading images onto an SQL database through ASP page
Laptop Spec: XP Pro Programming languages: ASP.NET, C#, SQL Server sorry again for consecutive posts, I'm new to all of this. I am trying to create an aspx page with a user interface that will allow me to insert an mp3 file onto my database. The code I have currently is: ------------------------------------------------------------------------------------------------------------------------------------------------- <%@ Page Language="C#" Debug="true" %> <%@ import Namespace="System.IO" %> <%@ import Namespace="System.Data.SqlClient" %> <%@ import Name ...Show All
SQL Server Tell subscription to append date & time to output report file from called subscription in VB.NET
How can I tell the output report created by the subscription to append today's date and time to the filename. In the subscription, I can tell it to be unique as it appends an incremented number but I want it to append today's date & time as the unique identifyer on excel, pdf, other outputs Public Sub RunsssReport() Dim rs As New ReportingService2005() rs.Credentials = System.Net.CredentialCache.DefaultCredentials rs.ListChildren( "/" , True ) ' Get the subscriptions Dim subs As Subscription() = rs.ListSubscriptions( "/sss/sss_test" , Nothing ) ...Show All
Software Development for Windows Vista Workflow from XAML with Custom Activity
Hi people! I'm trying to run the ideas/examples exposed in the article: Simplify Development With The Declarative Model Of Windows Workflow Foundation http://msdn.microsoft.com/msdnmag/issues/06/01/WindowsWorkflowFoundation/toc.asp In the article, the authors load the workflow dinamically from a xaml file. In the xaml file is a reference to an custom activity in the same assembly. I can't found the source code of the article.... Has anyone a running example like that My test example fails: <my:WriteLine Text="Hello, world from WinFX." xmlns:my=" http://schemas.example.org/MyStuff " /> show an error in the des ...Show All
Visual C# casting object in uint
Hi, I have an array of objects ... object[] objects = new object[4]; I know that objects[0] holds a uint so i would like to do that ... uint myUint = (uint)objects[0]; But, this throws an exception "System.InvalidCastException: Specified cast is not valid." I found that I could do that to fix the problem: uint myUint = (uint)((int)objects[0]); But, now I am affraid that by casting the object to an int first and then to a uint will truncate the original uint value. By this I mean that the max value I could get back is the max positive value for an int which is less than the max positive value of a uint. Is th ...Show All
SQL Server Maintenance Job not working properly
Hi, I an new to the forum. I am having some problems where my maintenance job is not backing up the user databases in SQL2000. Unfortunately, I found out the hard way as my payroll in GP did not run properly and I had to do a restore from the BAK file. I am receiving the following error msg in the event log Status: Failed - Invoked on: 2006-04-11 22:00:02 - Message: The job failed. The owner () of job DB Backup Job for DB Maintenance Plan 'Daily Backup of User Databases' does not have server access. I cannot find where and how the user permission was chmaged on this job. I would like some assistance with this problem. thank ...Show All
.NET Development Trouble Installing .NET Framework
I am having trouble installing the .NET framework 1.1 on a windows 98 SE. The error it gives is : " Setup cannot access windows installer components: Setup cannot continue" My system is up to date from the windows update site. Please help. Netframework 1.1 (in the form of dotnetfx.exe) does install to 98/se - see http://www.microsoft.com/downloads/details.aspx FamilyID=262d25e3-f589-4842-8157-034d1e7cf3a3&displaylang=en I get the same message as you did. It's now October, did you got anywhere with it ... ...Show All
