ramesh_1031's Q&A profile
Visual Studio Team System Visual Studio 2005 Team Suite 180-Day Trial interfering with current VS 2005
I currently have Visual Studio 2005 Team Developer on my PC. I would like to evaluate Visual Studio 2005 Team Suite 180-Day Trial. I am interested in the Team Test features of Load Testing, Manual Testing and Test Case Management. If I download the trial, is it going to mess up my current configuration What happens after the 180 days, will my VS die Is the better way to test this to download it on another PC Ideas are appreciated. Thanks. Hi Autumn - No problem, you should be able to install this side-by-side with your existing Visual Studio edition. At the end of the 180-day period you will just need to uninstall Team Suite and you will be left with Team Developer. Or of course if you choose to purchase Team Suite you can j ...Show All
Windows Forms How to fetch selected date and value from Calendar
I'm totally new to windows programming and I have a basic questions 1 . Calendar Which calendar (datetime picker or monthly calendar)should I use to get the selected date. For instance if a user clicks on a particular date the selected date is returned to a text box. If there is any example I can look at I will really appreciate Thanks!! Here is the example http://msdn2.microsoft.com/en-us/library/system.windows.forms.datetimepicker.value.aspx Moreover, you may need to handle the CloseUp event which will occur when the user finish selection. ...Show All
Visual C# Define attributes for a property
Hello! Does anybody know how do I define an attribute for a property Like this: public class Test { [myproperty's attribute - how to define it ] private string MyProperty; } After defining it, I should use it via Reflection. Will it be shown in Attributes collection of PropertyInfo class Thanks! First off, in your example, you're using a field , not a property. so FieldInfo would be the correct usage. Secondly, no it will not appear in PropertyInfo.Attributes or in FieldInfo.Attributes, but will appear in PropertyInfo.GetCustomAttributes or FieldInfo.GetCustomAttributes, depending on whihc one you choose. Note that many Reflection items implement ICustomAttributeProvider, whi ...Show All
SQL Server Can SSRS 2005 Handle Stored Procedures or SQL Subqueries that Rreturn Rowsets Based on Multiple SQL Updates?
Hello, I have a stored procedure that creates a temporary table, and then populates it using an INSERT and then a series of UPDATE statements. The procedure then returns the temporary table which will contain data in all of its columns. When I call this procedure from SSRS 2005, the rowset returned contains data in only those columns that are populated by the INSERT statement. The columns that are set via the UPDATE statements are all empty. I read (in the Hitchhikers Guide to Reporting Services) that SSRS will only process the first rowset in a stored procedure that generates multiple rowsets. Is this true Is this why SSRS does not retrieve data for the columns that are populated by the UPDATE statements Here is the stored proced ...Show All
Visual Basic byte to char
hi, i am receiving something from a stream, since this is a 'custom' stream, i dont have things like 'read integer' or read byte or things like that. to read an integer, which i read as binary, i have to read is character by character and then 'convert' it to numeric values or vice versa via modulus and exponentials (so far). byte value is a numeric value than can hold between 0 and 255 no how do i get the ascii from that byte value (if function not in .net framework, using vb 6) , also, if i receive a character, how do i retrieve is numeric byte value tnx If you know the characters are ASCII then the following should work. Public Function AsciiByteToChar( ByVal b As Byte ) As Char Dim ...Show All
Visual Basic A Framework Bug?!
The following code snippet is compiled with no problem: Dim arrList2 As New ArrayList arrList2.Add(1) arrList2.Add(2) arrList2.Add(3) arrList2.Add(4) Dim arr2(arrList2.Count) As Integer arrList2.CopyTo(arr2) But this one doesn't: Dim ListBox1 As New ListBox ListBox1.Items.Add(1) ListBox1.Items.Add(2) ListBox1.Items.Add(3) ListBox1.Items.Add(4) Dim arrList As ArrayList = ArrayList.Adapter(ListBox1.Items) Dim arr(arrList.Count) As Integer arrList.CopyTo(arr) When I use the Adapter method to create a wrapper for the listbox items(it returns an arraylist which references exactly the items in the listbox), some arraylist methods do not work correc ...Show All
Visual C# Difference "Designer.cs" & "designer.cs" WinForms
Hi, I am doing C# development on Visual Studio 2005. But, as all would know in VS2005, usually the Windows Forms will generate the "Form1.cs" and "Form1.Designer.cs" at the design time simutaneously. But, I forget what I did during the development time. The "Form1. D esigner.cs" became "Form1. d esigner.cs". But it still can be compiled after the letter case had changed. Eventually, I need to standardize all the files name. So, I rename the "...designer.cs" to the original "...Designer.cs". But, the IDE cannot compiled it anymore. Any ideas to rename it back to the original file name Where does the reference to the designer file located Is it in the csproj file or at other resource file Which file is in control of the designer file Than ...Show All
Visual FoxPro Cursor adapter problem
I create cursor adapter with data source type = native, set path to database, in data acces tab I select all fields in table and set buffer mode override = optimistic table buffering, in tab auto-update i set: auto update and update all fields. After that i drag and drop cursor in form and make grid. In properties on cursor i set: AllowDelete = .T., AllowUpdate = .T., AllowInsert = .T. but when i run form i can update only grid, table in database isnt updated . When i mystake ...Show All
Visual Studio Express Editions datagrid control in c# express edition.
Hello, I am new to c# and I am using the C# Express Edition. I have one problem that is, when I want to add a datagrid to a form I notice that there is no datagrid in the toolbox just datagridview. So I hope that can anyone tell me why my tool box does not have datagrid and can anybody teach me how to add the datagrid to the toolbox. Thank You very much. Microsoft built new grid called DataGridView ( for win forms) and Gridview of rweb apps which goal is to clear bugs in DataGrid control and to provide more functionality. Because of this they put in toolbox only this new control and old DataGrid is hidden. It is still on System.Windows.Forms.dll for backward compatibility for is not supported any ...Show All
Visual Studio Problems installing .net
Hello, i dont know if im on the correct place, but ive searched around and couldnt find where i could get some help. I had .net framework 1.1 installed on my windos, but the accidently the power at home was shuted down, and now an aplication that i use is having some problem, and when i execute it i get: "The application failed to intialize properly (0xc0000135). Click OK to terminate the application" and it closed itself. Ive tried to re-install .Net but im getting an error at the end. Its too fast but is something about Registring Entreprise and it says it fails. I downloaded and installed .Net 2.0 but it wont work with the aplication This is the problem i get ins ...Show All
.NET Development how to generate a request Query string
I am new to XML and I am creating a webDav program which requires a query XML to search through the directory listings but I don't know how to build it. I found an example that looks like this sQuery += "< xml version='1.0' ><D:propfind xmlns:D='DAV:' " ; sQuery += "xmlns:h='http://schemas.microsoft.com/hotmail/' " ; sQuery += "xmlns:hm='urn:schemas:httpmail:'><D:prop><h:adbar/>" ; sQuery += "<hm:contacts/><hm:inbox/><hm:outbox/><hm:sendmsg/>" ; sQuery += "<hm:sentitems/><hm:deleteditems/><hm:drafts/>" ; sQuery += "<hm:msgfolderroot/><h:maxpoll/><h:sig/></D:prop></D:propfind>" ; This is to traverse a Exchange server ...Show All
Visual Studio 2008 (Pre-release) Just Signing or Encrypting the message.
Hi Community, Did anyone try just signing the message Or Just encrypting the message Or Did any one try using two seperate keys for signing and encrypting e.g. I can have a seperate key for signing such as "CN=SignKey" and seperate key for encryption such as "CN=EncryptKey". Is it possible in WCF with minimum coding efforts If you have tried can you share your thought Can some one help me pointing to the right direction Thanks in advance. - Pankaj. Avanade Inc. Hi Pankaj, About signing or encrypting the message, as far I know, it can only be configured through some attributes in the message contract. For instance, [MessageContract(ProtectionLevel=System.Net.Security.ProtectionLevel.S ...Show All
Visual C++ Incremental status error for DLL
Hello, In trying to convert a dll from VC++ version 6.0 I encounter the following errors in trying to build it: 1) warning LNK4076: invalid incremental status file 2) fatal error LNK1181: cannot open input file "odbc32.lib" Can anyone explain this. Thanks. 1) Search for any *.ilk file in your build directory and deleted it. 2) This is a PSDK library. Are you using the Express Edition - if so have you installed the PSDK ...Show All
SharePoint Products and Technologies RollBackTask
Hi I am currently creating custom workflows for sharepoint using VS 2005 extensions for windows workflow foundation. I see there is a RollBackTask which indicates that one can roll back on a task that was previously done. Im looking for some documentation how this task should be used and what it is meant to do. I have searched around and have not been able to find any documentation on this. Any help would be appreciated. I really do need to know how this works as I need a way to roll back any tasks that have occured. Thanks for any help Neil Neil, I suggest reposting to the SharePoint - Workflow forum: http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=1207&SiteID=1 Cheers, Michael. ...Show All
Visual Studio 2008 (Pre-release) Why include all columns in tombstone tables?
Why do the demos from the synchronizer blog add all columns to the tombstone tables Wouldn't it be enough to add the ID, creation date and update date columns Ok, thanks. If these are the minimum columns, for which reason does the demo add all columns to the tombstone table ...Show All
