sacredspirita's Q&A profile
SQL Server SP1 Install Caused Problems
Had a couple questions about some Event ID 6702 errors on the server I’ve been getting recently. I can’t seem to find any intelligible information on Microsoft’s site about it; however, I did find this: http://support.microsoft.com/kb/842006/en-us#XSLTH5294121122120121120120 There are no replication partners for all I know on this server. As far as the A records that it wants me to check, when I take a look at dnsmgmt ...Show All
Visual C# scrollable datagrid
Is it possible doing a vertical scrollable datagrid How I won't page!!! Thx When you put more rows in a DataGrid that is gets outside of his visable bounds a scrollbar is automaticly shown. Edit I noticed that you last questions on the forum are webforms related, so when you want a scrollbar in a asp:DataGrid then just put the asp:DataGrid in a <div> or in a panel or something. Don't forget to set scroll = true. ...Show All
Visual Studio Team System Source Control Disabled
I've been configuring (well trying to) security. somehow I've managed to disable the Source Control menu option under the Team project settings menu accress all projects. What have I done Sorry for the delay. I am still having this issue. I tried to replicate on another project, and having files checked out does not seem to be my problem. I'm still unable to change the options for one of my projects. ...Show All
Software Development for Windows Vista Problem in sending mail through web instead of localhost(Drop)
I have done HOL 02 of wwf successfully. I want to send mail through web instead of sending it to the Drop folder of Inetpub in the local machine. So I have changed Smtpclient from "localhost" to SMTP Server name as shown in the below code. Then I am getting the following error. " An exception of type 'System.Net.Mail.SmtpException' occurred in System.dll but was not handled in user code Additional information: The SMTP ...Show All
SQL Server How can I configure sql mail in sql express?
is that possible I am confused, as long as I know sql expres has reporting services, and RS send emails right Does it use an external SMTP server ...Show All
SQL Server Clarifications on Queue Service and Queue Readers
Hello, This is info that I am still not certain about and I just need to make sure, my gut feeling is correct: A. When a procedure is triggered upon reception of a message in a queue, what happens when the procedure fails and rolls back 1. Message is left on the Queue. 2. is the worker procedure triggered again for the same message by the queue 3. I am hoping the Queue keeps on triggering workers until it is empty. My scenario is that my queue r ...Show All
Visual Studio property graphical representation
Is it possible to show an icon on left side of a atributte I mean, in the class diagram expample, classes has attributes and would like to show an icon on the left side of the atributte if one of his properties takes a specific value. Thanks I don't think it's possible out of the box. But you can do this with some custom code. You can write a partial class for the shape and override the paint event of the s ...Show All
Smart Device Development Start after InitializeComponent() ?
Hi all; I just want to know how I can start my application just after InitializeComponent(). public Form1() { InitializeComponent(); Start(); } public void Start() { if (RecupPhotos()) { if (connectGPRS()) { if (FTPLogin()) { foreach ( string Photo in ListePhotos) { SendFile(Photo); Thread.Sleep(2000); } } if (FTPLogout()) disconnect(); } } ...Show All
SQL Server Problem Understanding ADO.Net:SQL Connection Manager
I'm working on programming SSIS using Visual Studio 2005 and C#, and SQL Server 2005. I'm running on Windows XP SP 2. I've found examples of setting up packages w/ OLE-DB connections to SQL Server 2005. I've been able to build these and they appear to run. I've found the magic "DTSAdapter.OleDbSource.1" ComponentClassID and several other SSIS component classes in my Registry and by running the sample program in the docs: ms-he ...Show All
Smart Device Development a strange ' ArgumentException'
I got this error when I was testing a edge detection algorithm using vs.2003, cf1.1 (i got cf 2.0 installed on my ppc, dun know if that cause any problems): An unhandled exception of type 'System.ArgumentException' occurred in System.Drawing.dll Additional information: ArgumentException Source Code: (there is a green arrow point to line 't1=pixel.R;' when this exception occured, and that 't1' has been assigned a value already when this e ...Show All
Visual Studio Express Editions Trapping Database Logon Errors
Hello All, Am having a bit of trouble here. Hopefully someone can shed some light on the proper way to do this. In VB6 using DAO when you logged on to a secured MS Access database and entered in an invalid User Name or Password it would generate an error code that could be trapped and allow the user to reenter their information. I am having trouble coding the try catch block for the connection process because I see no usable ...Show All
Visual Studio Team System No documentation for customers in MSF Agile?
Can someone point me to a set of activities in MSF Agile that deal with creating and delivering appropriate guidance for using a finished system to the people who will use it While trying to figure this out I noticed that the "Business Analyst" role was shown with the rounded box labeled "User Experience" in the introductory page on Roles. Since the type of the rounded boxes wasn't identified I'm not exactly sure what they are intende ...Show All
Visual C++ LIBCMT.lib not found (LNK1104 error)
Hello, I'm trying to compile Christian Werner's Sqlite JDBC driver under WinXP using Platform SDK and VS2005. This process breaks with the follwing error message: Microsoft (R) Program Maintenance Utility Version 8.00.50727.42 Copyright (C) Microsoft Corporation. All rights reserved. cl -I. -Isqlite-3.3.5 -I"C:\Program Files\Microsoft Platform SDK\Include \crt" -DHAVE_SQLITE3=1 -Gs -GX -D_WIN32 -nologo native/fixup.c cl : Command lin ...Show All
Visual Studio Team System DoNotInitializeUnnecessarily
Name: Do not initialize unnecessarily Level: Warning Certainty: 90 File: Performance Rules Category: Microsoft.Performance Check Id: CA1805 Additional Information: Do not make initializations that have already been done by the runtime. This rule asks that I comment out the line: private System.ComponentModel.IContainer components = null; In global.asax.cs for a web application. Doing this produces a compiler error, '(Namespace).Global' doe ...Show All
Architecture Does XmlChoiceIdentifierAttribute break the 3rd tenet of SOA ?
The 3rd tenet of SOA, according to MS, states that "Services Share Schema and Contract". When I use the XmlChoiceIdentifierAttribute in my shema, I actually say "when you call me, you will get in response one of the following possible types and you should check yourself the returned value to decide what you got from me". In the SO point of view, does this decleration of "possible" types makes my contract less ...Show All
