nostra49's Q&A profile
Visual Studio Team System VSSConverter Failures/Flaws
I am having no luck using VSSConvert to migrate a large VSS database into VSTF. I could not convert the database in beta 2 and I still cannot convert it in beta 3. I'm trying to convert a single root project and VSSConverter runs for a few hours then crashes with a Send Error type exception. Neither VSS Analyze nor VSSConverter analyze reports any errors on the database. VSS analyze does report several warnings associated with loss of Share/Branch, files still checked out in VSS, and a single "TF60067: Data loss due to folder move warning". I don't really care about the checked out files right now.&nbs ...Show All
SQL Server Conversation ID cannot be associated with an active conversation
Hi: My service broker was working perfectly fine earlier. As I was testing...I recreated the whole service broker once again. Now I am able to get the message at the server end from intiator. When trying to send message from my server to the intiator it gives this error in sql profiler. broker:message undeliverable: This message could not be delivered because the Conversation ID cannot be associated with an active conversation. The message origin is: 'Transport'. broker:message undeliverable This message could not be delivered because the 'receive sequenced message' action cannot be performed in the 'ERROR' state. How do I pro ...Show All
Visual Studio Newbee Question
I can not find it as a stand alone product. I thought maybe it is package with Visual studio 2005 like eariler versions of source safe. The only thing I can find on Microsoft's site is a road map to Source safe 2005. Are you sure it is a stand alone product Thanks, jjeffrie ...Show All
Windows Forms game of life kinda grid...
Hi, What do you think is the best way to represent a grid similar to ones used in cellular automaton simulation (like conway's game of life), in c# Use hundreds of panels (doesn't seem a very good solution) draw gdi rectangles How would I handle each small rectangle Thanks Last night I had a chance to write a proof of concept control&nb ...Show All
Visual Studio Express Editions Converting projects from VC++ Express Beta 1 to VC++ Express Beta 2
Is there any tool to convert a windows form application from the beta 1 format to the beta 2 format When I compile I get a ton of errors and I can not view the design view when loading the project into beta 2. Thanks Hi Gravenk, See http://forums.microsoft.com/msdn/ShowPost.aspx PostID=5399 Regards York ...Show All
SQL Server Report builder functions
Hi, Does anybody knows a good tutorial or link that handles all the functions of the report builder thanks Do you mean "functions" that can be used in a Report Builder formula, or do you mean general Report Builder "functionality" ...Show All
.NET Development Storing UserID and Password
hi, i have a security problem. I have to store userID and password of the database server in program code. With using Ildasm : IL_0024: ldstr "ResAdmin" -- OMG IL_0029: callvirt instance void [System.Data]System.Data.SqlClient.SqlConnectionStringBuilder::set_UserID(string) IL_002e: ldloc.0 IL_002f: ldstr " ResAdmin@123 " -- :p IL_0034: callvirt instance void [System.Data]System.Data.SqlClient.SqlConnectionStringBuilder::set_Password(string) i reassembled code using / ...Show All
Windows Forms Delete Item CheckedListBox
Hello I am Brazilian, I do not speak English It forgives for the errors in the text :) I need to delete the item of a CheckedListBox but I did not obtain. How I make this Thank’s Hi, Please go through the below link. Hope this helps. Link: http://msdn2.microsoft.com/en-us/library/19fc31ss(VS.80).aspx regards, Bhanu. ...Show All
.NET Development SQL and Variables
How could i place variables into an INSERT statement For example say the variable name has a value in it. How would i place this into an sql statement so i can insert the value into the name field of a database Generally you use parameterized inserts/parameterized stored procedures to achieve this. You can search by either of these on your favorite search engine and come up with a ton of results. ...Show All
Windows Forms Synchronize 2 DataGrids, at Runtime ?? ? ? ?
I have 2 datagrids, one is stacked on top of the other, and appears like its header. (the reason for this is I need an editable header, whose update command changes column names in the db). I have not been able to figure out a way to match the column widths of this control, with the next control on the page..(which is the actual&nb ...Show All
Visual C++ 2005 Resource Editor trashes non-English languages when you edit any dialog
I have an application that has resources in 11 languages, including Chinese (CHS), Hungarian and Polish. These three are especially challenging because they use a non-English code page - Chinese uses 936 and Hungarian and Polish use 1250 (English and western-European languages use 1252). I am not using Unicode but rather just single byte characters sets for all languages except Chinese which requires MBCS (two byte characters). MFC and the resource editor in Studio 6 and Studio 2003 worked fine with this setup. Now in Studio 2005 anytime I try to edit a dialog resource in the resource editor and save the result the saved file ha ...Show All
.NET Development System.configuration namespace incomplete
Hi, According to the msdn documentation, my VS.NET 2005 Pro environemtn is missing loads of classes. In a program when I go System.Configuration. I see a list of classes and etc., According to that list I see only two classes starting with the word "Configuration" namely ConfigurationException, ConfigurationSettings. All other classes are missing. Even in code when I see use this snippet: System.Configuration.Configuration config = ConfigurationManager.OpenExeConfiguration( ConfigurationUserLevel.None); I get tons of errors saying like: The type or namespace name 'Configuration' ...Show All
Windows Forms Publishing Location, Installation URL, Update Location
Hi All, I am using one click and I confess I am confused over the use of the Publishing location, the installation URL and the Update location. I will tell you what I am trying to do and perhaps someone can straighten me out. The initial installation of my application comes with a database that I include in my initial installation deployment. However, after the intial deployment, I do not want the database being included in future updates. However, I seem to be unable to make this work. When I have the update location pointing to my smaller deployment (without the database) even new installs go to that update URL and of cours ...Show All
.NET Development Values of sizeof concerning struct (no optimization?)
I have been playing a bit with the sizeof operator, and the results that I get seems not too good. For example, let me consider struct Zero { } an empty structure. With .Net 2.0, I get sizeof(Zero) equal to one. I know that such case is borderline, but I would like to understand why it's not zero (I do not see why a zero-length LValue should be a problem), Also, let me consider again struct SomeBits { bool a; bool b; } . With .Net 2.0 again, I get sizeof(SomeBits) equal to two. I understand that the bit array has not been compacted in such way, but I do not understand why the struct is not compacted I would expect ...Show All
.NET Development How do I add an "as" clause to my select without a "differs from base query" error?
If my base query looks something like this: select item_id, price, quantity from sales But I want to have this happen instead... select item_id, price, quantity, price*quantity as gross_sales from sales How can I avoid the warning error "query differs from the base query" warning error at the BindingSource level since I don't seem to be able to change the base query and it won't let me add the modified query I'm using Visual Basic.Net 2005 beta 2 with SQL Express. Hello Dan, To change the base query you can right-click the TableAdapter and select the option to Configure (configure modifies the base query, selecting Add Quer ...Show All
