Dennis Vysotskiy's Q&A profile
Visual Studio Tools for Office CommandBarButton Handle??
Is it possible to get the CommandBarButton handle DIG. Dig, You should consult the Office Developer Center on MSDN. There are many articles for how to do this in managed and unmanaged code. http://msdn.microsoft.com/office http://msdn.microsoft.com/office/understanding/officesystem/articles/default.aspx pull=/library/en-us/dno2k3ta/html/odc_ofcmdbarbest.asp Also, the Outlook samples with downloa ...Show All
Windows Live Developer Forums When is it gonna be released
Hello, When is live chatting going to be included into live.com thanks I think the forum title related to this kind of chatter . ...Show All
Windows Forms Partial Classes
VS 2005 is moving to the partial class concept where designer code and event code is split into 2 files. That is pretty simple and cool as well. Based on what I've done and read .NET merges these 2 files (along with any other&n ...Show All
Windows Forms Proper splash screen design
Hello everybody, I want to ask what is the best practice for splash screen design. Should the main method start two separate threads for the main form and splash form Or some other approach Like the main form spawning the splash thread Because I'm rather confused, I've been reading quite a few articles on splash screens all use different approaches and entry points. So I just wanted to ask what's the best practice about the problem. Any advice i ...Show All
Visual C# c# express graphics
Can anyone give me a free-standing C# program that would, for example, draw a line from point A to Point B I need to develop a program to do graphing, and I'm sure I could take it from there, but I have not been able to get started. I have Visual C# Express. Have a look at the following links, they should get you started. Bob Powell's GDI+ FAQ http://www.bobpowell.net/ GDI+ for Beginners http://www.c-s ...Show All
SQL Server Parameter problem
I have this sproc: set ANSI_NULLS ON set QUOTED_IDENTIFIER ON go ALTER PROCEDURE [dbo].[usp_CrimRecTest] @caseID nvarchar(12), @lastName nvarchar(25) output, @firstName nvarchar(20) output AS BEGIN SET NOCOUNT ON; SELECT dbo.tblCASENOMASTER.CASENO, dbo.tblCASEMAST.LASTNAME, dbo.tblCASEMAST.FRSTNAME FROM dbo.tblCASENOMASTER LEFT OUTER JOIN dbo.tblCASEMAST ON dbo.tblCASENOMASTER.CASENO = dbo.tblCASEMAST.CASENO WHERE (dbo.tblCASENOMASTER.CASENO ...Show All
Visual Basic Center Controls
How can I center the controls in the form Thanks I didn't get it. Can you explain me more, please What does mean "Select to Format > Center In Form." ...Show All
Visual C++ What is this?
Hi this is a segment of code that I have been working on. I am tryin to compare this output to a string. //******************************************************************* if (hPhysicalDriveIOCTL != INVALID_HANDLE_VALUE) { STORAGE_PROPERTY_QUERY query; DWORD cbBytesReturned = 0; char buffer [10000]; query.PropertyId = StorageDeviceProperty; query.QueryType = PropertyStandardQuery; if ( DeviceIoControl (hPhysicalDriveIOCTL, IOCTL ...Show All
Visual Studio Tools for Office Excel ListObject
I need to have a set of formulas that are bound to the values inside a ListObject. I bind the ListObject with a dataset and after it fills we would like to have the set of formulas outside the list compute for each row in the list. I am not having much luck with this. What is the trick They do not replicate Exactly what I'm trying to do as well! I did find one alternative though ...Show All
Visual C# Binding for OpenAL
Hi all. Long time no see - been way busy and dropped off the radar for a while. I've got a question about a binding that someone might like to do, or could perhaps tell me how to do. Presently there is no C# binding to any audio library besides DirectX (all 10 squigabytes of its clunky, not-quite-.NET2.0-compatible arse). Not that I could find anyway. What I'd really like to see is a binding for OpenAL or something else powerful and cross-pla ...Show All
Windows Forms Database unaffected by BindingSource/BindingNavigator tandem
I created a very simple db with one table Parent (ParentID int identity(0,1), ParentName varchar(50) NOT NULL) to reaffirm to myself that the BindingNavigator/BindingSource tandem does nothing to the underlying db. So I made a small win app, added a db (this uses SQLExpress user instance in VS2005 Pro) and drag my one and only table to the dataset created by the IDE for me. I drag the table from the DataSource window to create the bound controls ...Show All
Windows Forms Samples and Demos
I was hoping that when Visual Studio 2005 Beta 1 came out there would be sample applications using Windows Forms 2.0 like the ones shown at PDC 2003. Is there any planned release of Windows Forms 2.0 sample applications MadMax ...Show All
SQL Server FTP Task - Delete remote files always fails
Hello, I have two FTP Tasks configured in my SSIS package. One is for "Receive files" and the other is set for "Delete remote files." Both use variables for the source/destination paths. My remote path variable contains a wild card in the name field such as /usr/this/is/my/path/*.ext and it is working to FTP all the .ext files to my working directory. I then rename the files and want to remove the original files from t ...Show All
Visual Studio Tools for Office Serious: Update multiples tables of Database through excel without TableAdapter
Hi All, As I have discussed earlier that I am not binding my list object into excelsheet through dataset/TableAdapter. I am using object option i.e. One class/function that I have created. I have done follwoing to bind my excelsheet through database without creating dataset through wizard. 1. Click on "Add New DataSource" into Datasource configuration wizard. 2. Choose the "Object" from the options. ...Show All
SQL Server Insert into Table with no values using the identity column
Hello Everyone! SQL Question: Can you insert a record into a table that has an identity column with no values (on condition that the other fields in the table allow null or have default values). Such as: Insert into Table () values () //Auto increment record with no other values Possible Let me know if you need additional information. Yes, you can do below: insert into table default values This will populate the ...Show All
