george_v's Q&A profile
Visual Studio Tools for Office Type vbproj not supported by Visual Studio 2005???
I'm working on the Microsoft white paper at http://msdn.microsoft.com/library/default.asp url=/library/en-us/odc_vsto2003_ta/html/ExcelObj.asp "Understanding the Excel Object Model from a .NET Developer's Perspective" This paper was written for Visual Studio 2003, but I thought I should use the latest and greatest anyway, so I downloaded and opened the solution file in Visual Studio 2005 (RTM - not beta). I discovered that an automated conversion is triggered! The conversion DID NOT succeed due to this error: The project file C:\ .... \ExcelObjectModelVB.vbproj cannot be opened. The project type is not supported by this installation. Type "vbproj" is not supported by Visual Studio 2005 (I'm sure I installed everything for Visual B ...Show All
SQL Server Advantages of using nonclustered index after using clustered index on one table
Hi everyone, When we create a clustered index firstly, and then is it advantageous to create another index which is nonclustered In my opinion, yes it is. Because, since we use clustered index first, our rows are sorted and so while using nonclustered index on this data file, finding adress of the record on this sorted data is really easier than finding adress of the record on unsorted data, is not it Thanks see more info on the other post http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=522859&SiteID=1 creation of Clustered index must happen first because if NCIs are created first. The creation of a clustered index later will force the recreation of all the NCIs to force it to use CI's rather than RID as loca ...Show All
Visual Studio Express Editions Linklabels to open files
Hi, I've got a uni project that needs doing, but I've ran into a bit of a hitch. Basically, I have a linklabel which is needed to start a program and open a file in said program. Opening a program is not a problem, but opening the file is being a pain because the filename will not recognize spaces, eg, it doesn't like the directory 'My Documents' because there is a space in the middle. Any ideas on how I can get around this Thanks, Bort Microsoft sometimes says to use quotations marks around files with blanks in them. Try: """D:\Documents and Settings\Bort\My Documents\address label.doc""" ...Show All
.NET Development File Integrity Check using .NET APIs
Hi, I have to implement a "file integrity check" on files uploaded to an ftp server. I have to implement it using .NET framework 1.1 Is there any built in API available in .NET framework 1.1 (or 2.0) for the same. I searched in the net, but couldn't find any soultion. Any direction for a solution would be really helpful. Thanks in Advance Anoop The most common technique is to generate a MD5 or SHA-1 hash from the file contents. For example, the MSFT File Checksum Integrity Verifier does this. You'll find the classes you'll need to compute the hash in System.Security.Cryptography namespace. ...Show All
Microsoft ISV Community Center Forums autocomplete
Hi all, I have a form with several combo boxes. I would like the users to be able to start typing in the field and it automatically completes the box. Can someone tell me how to get my form to autocomplete Thanks Where's the autocomplete property. I right click on the properties of the form and field and I don't see it. Thanks ...Show All
SQL Server Are we not able to edit stored procedures in SQL express?
Have sql 2005 express installed. Running a database for a DotNet Nuke site Opened Microsoft SQL Server Management Studio Express. Navigated to CASPORTAL\Databases\DotNetNuke\Programmability\Stored Procedures\dbo.AddUser Right clicked dbo.AddUser and selected "modify" This allowed me to paste the additional code into the right hand window/pane, however when I try and save this it wants to save it a seperate file /query. Is there something I don't understand am I not able to edit the original stored procedure Hi, thats a common minsunderstanding. Hitting the disc symbol will save the data, what you will have to do is to execute the stored procedure within this pane. T ...Show All
SQL Server Report send to many people
Hello i have a question, I need to create a report that will take parameter Customer_ID and will be send to his email which is stored in my database. And i want it to happen to all of my customers so basically i need to pass this parameter automatically. My queston is, where in a report designer or whereever it is set it that it sends this report via email and this email is taken from a field in a report And how exactly pass this parameter, will i have to do it programaticly by calling this report so many times or somehow the report services can manage that thank u for help Marek SSRS supports data-driven subscriptions where the Report Server will automatically send the report to the subscribed recipients. Another ...Show All
SQL Server AMO Question - Distinct members in Cube
Hi, How to filter members in a dimension. To meet a requirement, I made a table as a Fact and a Dimension. In the said table, I have a column which is varchar and contains unique values always. They can be said as 'A' or 'B' or 'C'. For all records in the said table, any of these three values can be present. But they are not from any lookup table but come from a third party system. Using the AMO object, I am listing all the values are members. But the problem I am facing is, I am getting all values as members. As per my requirement, I must list only distinct of them I am setting the DimensionAttribute object's Usage property to Key, OrderBy to OrderBy.Name and Type to Regular. What other property need to be set to list ...Show All
Software Development for Windows Vista Vista Install Problems
Hi, I installed and used the first 64 bit beta without issue but the other day I got an email to download a second RC1 beta. Again I download the 64 bit version. This time I get an install crash nearing the last reboot and I have to start the install from scratch again. I've re ran the install 2 or 3 times and I keep getting this crash. I have been installing vista on a spare drive so if you want me to post a log/dump file no problem. As it is I have resigned to the fact that I cannot trial RC1. im afraid these are the incorrect forums for your question. These forums are for software development. Therefore, I have to advice you to repost your question to the appropriate communities: www.microsoft.com/communities Thanks ...Show All
Visual Studio Express Editions How do I put in literal quotes?
I need to know how to put in literal quotes to a variable. For instance, Dim strExample as String strExample = "Hello, "My name is Matt"" lblHello.Text = strExample 'Output for lblHello on the from would be: Hello, "My name is Matt" ''' Obviously this cannot happen as the " before the M in my will end the statement and the rest will be read as an error. How do you put in a literal quote Like in PHP you put a \ before the quote and it will be treated as a literal quote, I need to do the same thing in visual basic 2005. Thanks, -Matt ...Show All
Visual Studio 2008 (Pre-release) WPF with C# only?
hi, can i work with the WPF using C# only (without xaml) if i want to create all of my shapes in the code (without using design software) why i need xaml You might want to look at the zam3D app... its more targetted at creating 3D apps in WPF ...Show All
SQL Server STRAGG for MSSQL?
We utilize a function on Oracle named STRAGG that aggregates and comma separates results. Does something like this exist for MSSQL 2000 We won't be able to upgrade to 2005 for a while. Example table: name amount Joe 15 Mary 20 Joe 45 Mary 55 Example query: select name, stragg(amount) from table group by name Example results: Joe 15, 45 Mary 20,5 ...Show All
Smart Device Development Selecting multiple records from the EDB using mfc
hi all, I m new to MFC. I have created the database using EDB related functions. I want to select multiple records from the database having the search criteria matching, how to do that.Plz help me. I m using .net 2005. Use MFC Database classes. Following link will be helpful http://msdn2.microsoft.com/en-gb/library/4dtbk25b(VS.80).aspx Thanks, Achal, VSD, Microsoft ...Show All
Visual Studio Team System Extending work item tracking UI in VSTS 2005
Hello every one, I am new to VSTS, Kindly help Is is possible to extend the work item tracking UI (I mean the interface where you set the values of the work item different fields such as title, assigned to etc..) I need to respond to events on this interface such as a field change so as to do some action. I also need to be able to change the value of field on the form while the user is editing a work item. For example when the user changes the "completed work" in the "Details" section (and before saving) I need to calculate the new "Remaining work" value and show it in the text box. In brief I need to respond to events of the work item interface and to change values of some fields on the form. T ...Show All
Visual C++ Connecting to printer in MFC
Hi all, Do anyone here know how to print a string for example to printer in mfc Is there any command or class available Thanks alot! You can use CDC class for Printing. CPrintDialog::CreatePrinterDC function can be used to create Printer device context. You can refer any of the articles listed in codeproject for reference https://secure.codeproject.com/printing/ ...Show All
