sergio seguel's Q&A profile
.NET Development UML Modeling Tool for .NET Languages
Visual Paradigm Smart Development Environment 3.0 for Microsoft Visual Studio.Net (SDE-VS) is a full-featured UML modeling extension for Microsoft Visual Studio.Net. SDE-VS provides a wide range of UML related activities within the .NET environment. By providing the facilities of textual analysis, use case modeling, modeling and analyzing the system can be easily achieved. SDE-VS supports the latest and full UML 2.0 diagrams and notations. SDE-VS not only supports the generation of .NET source code including C#, C++ and Visual Basic for software development, but also reverse engineers the existing .NET source code into model for re-eng ...Show All
Windows Forms .NET Label not Refresh()'ing
I want to display status of a certain for loop using a label. for ( int i = 0; i < 20000000; ++i ) {e label1->Refresh(); label1->Text = i.ToString(); } If I execute the above code, the label will go to ~2000 and then the form will just crash. I realize that it has to do with the screen refreshing, so I tried something like this which works great for the i's that mod w/ 50000. for ( int i = 0; i < 20000000; ++i ) { if ( i % 50000 == 0 ) { label1->Refresh(); label1->Text = i.ToString(); } } However, if I perform any kind of computation, it crashes.... for ( i ...Show All
Visual Studio Team System Case check
Hi All, I am having the following Questions 1)How to check Camel case and Pascal case in custom rule 2)How to access inbuilt spell check in custom rule Thanks, Phani Phani, What are you trying to achieve If you want to run the existing naming and spelling rules over internal code, you can already do this via the external FxCop standalone: Choose Project -> Project Options Select the Spelling & Analysis tab, and check Run all overridable rules against all targets . Click OK Regards David ...Show All
Visual C++ C++/CLI
Hi all.Im a C++ Programmer thats looking to get into Managed C++ or C++/CLI.Ive heard that C++/CLI is the way to go and that it is a subset of Managed C++/C++.The question i wanted to ask is if C++/CLI IS the way to go now Will everyone be moving from Managed C++ to C++/CLI Also, C++/CLI uses the .NET Framework for creating Windows Forms apps right P.S: Any recommendations on what books i could use to learn the C++/CLI extensions would be appreciated :D Thanks C++/CLI is the way to go now. From my point of view managed extension for C++ was a dead born child. ...Show All
Windows Forms Is my plant alive ?
Hi all. I was participating to the contest of Japan. My animal was not able to be survived. Because I knew the existence of this server, I will challenge making of the animal again. At first, I introduced my plant. After a few minutes, my system could receive the other animals. I wanted to know whether my plant was recognized to the server. After a few hour ...Show All
Visual Studio VS .NET 2003 Pro Installation Problems
Hi, When I try to install Visual Studio .NET 2003 Professional, it just sits doing there doing nothing while displaying "Generating setup script" -- for hours. When I cancel, it asks me if I want to rollback, and then again, does nothing -- I can't even close the window. I have Windows XP Pro + SP2. Can somebody please help! Regards, Siddharth Do you have any logs generrated in your %temp% folder They may help indicate why your machine is hanging. ...Show All
Smart Device Development Development for Command Prompt
Sorry if this is a really basic question. I've just discovered the command prompt for Pocket PC 2003 and was wondering how I could develop console applications using eVC++. Are there any code/project setup examples Thanks in advance. If you have already installed PPC 2003 SDK, Open EVC ceate a new project of type In the dialog box that appears , select the Projects tab then select WCE Pocket PC 2003 Application Select any application type(a hello world if u r really want to do a quick start, ) Buidl and deploy and you are done, -Srikanth ...Show All
Visual Studio ReportViewer installer does not work on RC1
In RC1 of VS2005, it correctly recognize the ReportViewer as a prerequsite for clickonce deployment. But the problem I am getting is when I specify to download the component from vendor's web site, the run button on the publish form could not install it properly. Instead it gets an error: Setup has detected that the file 'C:\...\Temp\VSDC1C.tmp\ReportViewer\ReportViewer.exe' has changed since it was initially published. Last few line of the installation log looks like this: Downloading files to "C:\DOCUME~1\xcao\LOCALS~1\Temp\VSDC1C.tmp\" (9/26/2005 1:46:22 PM) Downloading 'ReportViewer\ReportViewer.exe' from 'http://go.microsoft.com/f ...Show All
Visual C# How to convert byte[] to Hexadecimal format?
Hi everybody, Is there anyone who knows how to convert byte[] data into hexadecimal data and store it in a text file Or for that matters how to to convert int to hexadecimal In VB, there is method Hex() where you convert data to hexdecimal. I can't find exact method in C#. Advanced Thanks. den2005 How about doing the reverse from hexadecimal data to byte[] data den2005 ...Show All
.NET Development XML Inheritance?
Hi, I have a question regarding how the .Net framework interprets schema definitions based on existing types. I have (for the purposes of demonstration) a very simple types schema which contains some PersonName (T_PERSONNAME) and Address (T_ADDRESS) details as below. < xml version="1.0" encoding="utf-16" > - <xs:schema xmlns=http://com.test.schemas.BaseTypes xmlns:b=" http://schemas.microsoft.com/BizTalk/2003 " targetNamespace=http://com.test.schemas.BaseTypes xmlns:xs=" http://www.w3.org/2001/XMLSchema "> - <xs:element name="BaseTypes"> - <xs:complexType&g ...Show All
Visual C# "æ" and "§" --- What's this ?
Hi PPl, Have any body got Idea about the special character "a" & "§".what's the usage i found this in a Web Service. It goes here, { strReturn += PwdReader["STAFF_ID"] + "a" + PwdReader["EMPLOYEE_CODE"] + "a" + PwdReader["FIRSTNAME"] + "a" + PwdReader["LASTNAME"] + "a" + PwdReader["STATUS"] + "§"; } And please help me to find this Character in the IDE. Thanks .. a = ASCII Code æ § = ASCII Code§ If you want ...Show All
Visual C++ How do I get an Environment Variable?
I have 35 years of experience. I have mostly avoided the C world. when I've had to write in it, I've done OK in VS6. VS2005 C++ is so cantankerous. I'm writing a program that must run standalone so it's very lean and doesn't rely on high level code. I am in need of a routine that returns the value of the %windir% environment variable in string format. My project is set for a unicode build. Thank you Hi Renee, Umm, if we're talking about C#, maybe it is possible to use: System.Environment.GetEnvironmentVariable("windir") Which'll return a string with the value of the env variable in t ...Show All
SQL Server SQL Server 2005 won't install
I have followed the steps on this page but keep getting this message. SQL Server 2005 CTP Setup has detected incompatible beta componens from Visual Studio or SQL Server. You must run the build cleanup wizard from the CD to remove previous SQL Server 2005 components, and then run SQL Server 2005 CTP Setup again. For detailed instructions on uninstalling SQL Server builds, see the SQL Server 2005 CTP readme file. Any assistance would be appreciated... Thanks Absolutely genious. I was going nuts after SQL server not getting installed. Thanks to the solution it worked for me too. Thanks ...Show All
.NET Development loading usercontrol programatically
i just used the converter to convert my asp.net 1.1 application to 2.0 and i find that my usercontrols is not working The type or namespace name 'smartcontrol' could not be found (are you missing a using directive or an assembly reference At quite a bit of places i am loading the dynamic usercontrols but at some places i am also dragging and dropping the usercontrols to the page as well.I saw some posting but none of them help. this is what i tried. this is the usercontrol namespace ICE.include { using System; using System.Data; using System.Drawing; using System.Web; using System.Web.UI.WebControl ...Show All
Windows Forms Editable datagrid
Hi. Can anyone point me to an example of an editable datagrid in VB.NET Windows Forms I have seen many examples on the ASP version of the datagrid but nothing using the Windows Form version of the control. Regards, Rinaldo hi, i've used dataadpater.update(dataset,tablename); to update data from data grid, but the database doesnt gets updated. wht co ...Show All
