Cyber's Q&A profile
Visual Studio Team System Maintain Process Guidance through ProcessGuidance.XML?
Is it correct understood, that the file ProcessGuidance.xml contains all Process Guidance data, and that it is possible to edit the Process Guidance for a specific process through the file ProcessGuidance.XML and InfoPath Is there an easy way to publish the changed ProcessGuidance.xml as the new Process Guidance html-pages in Sharepoint team site If this is true, I think this is great news. Then it is possible to keep the process under con ...Show All
Visual Basic textbox selectall not working
Neither of the two code pieces are working for me... Private Sub TextBox1_GotFocus( ByVal sender As Object , ByVal e As System.EventArgs) Handles TextBox1.GotFocus TextBox1.SelectionStart = 0 TextBox1.SelectionLength = Len(TextBox1.Text) End Sub -= OR =- Private Sub TextBox1_GotFocus( ByVal sender As Object , ByVal e As System.EventArgs) Handles TextBox1.GotFocus TextBox1.SelectAll() ...Show All
Visual Studio Express Editions Deploy C# DLL
On the development PC, this C# DLL is working very well. How do I deploy it to other PCs Well... you could just move the .dll to wherever you need it. I don't quite understand the question. As long as the other PC's are running the 2.0 Framework they shouldn't have any problem with the file. ...Show All
Visual C# Xml Read
How can i get the full text from the XML Like: Guilherme 16 years 14/02/1985 xxx@xxx.com This command is working but i it's listing like: Guilherme16years... I know it can be done with another way, If someone can helps, i'd be appreciate. private void Form1_Load(object sender, EventArgs e) { XmlReader reader = XmlReader.Create("Guilherme Costa Velho Miranda.xml"); reader.Read(); txtInfo.Text = reader.ReadElem ...Show All
SQL Server Connection to the server failed
Hi, Do you know if the SQL Server 2000 action pack version is limited in connection In my script, I define one connection to database and then I use this connection many times to insert or select data but after a moment, SQL Server returns an error message indicating that the SQL server doesn't exist !! In the connection panel of SQL Server settings, the max number connection is set to 0 (unlimited) Can you help please ...Show All
.NET Development Common Language Runtime debugging service
During install Microsoft .NET Framework 1.1 sevice pack 1, I get error: Application has generated an exception that could not be handled. Process id=0x7a0 (1952), Thread id=0x810 92064) Click OK to terminate the application. Click CANCEL to debug the application . You could try this forum: Visual Studio Team System General ...Show All
Visual Studio Team System Profiling with instrumentation errors out when showing results
I've run a few profiling sessions with Vs.net 2005 both instrumented and sampling. However in my latest round of profiling with instrumentation Vs.net 2005 displays the error below as it completes report analysis. "Value was either too large or too small for an Int64" Looking at the performance output pane I see this error message: "Failed to load view 0 with error 'Value was either too large or too small for an Int64.'.\nComplet ...Show All
SQL Server Renaming table column by lookup to define source definition
Hi, I'm looking for a way to redefine in a table the columns refered by another table to use as source (Exel / Flat file) withinh SSIS SQL 2005. Any idea ( mailto:cattel2000@icqmail.com Marco, I am not sure if I understood your question correctly. If you can explain the scenario further, it will help to understand the problem. But, if you are looking to update the meta-data of columns of a table at run-time, you may use "Derived column" ta ...Show All
Windows Forms Could I build applets with WinForms to run in a Browser?
Could I build applets with WinForms to run in a Browser If yes, where could I find same samples Thanks in Advance José Augusto Guimarães A cool example: <a href="http://weblogs.asp.net/frank_hileman/archive/2004/07/23/192509.aspx">http://weblogs.asp.net/frank_hileman/archive/2 ...Show All
Visual Studio Express Editions VC++ Exp Edition 2005 fails to compile with STL string
I don't care about all the new Managed C++, CLR stuff, etc ... not just yet. Right now, just want to compile the most basic, could't -be-simpler C++ program that most C++ compilers could already handle 10 or 15 years ago. And surprisingly, VC++ 2005 EE fails to do that. Or if it can, the Microsoft VC team certainly do not make it easy. I love to be told that I'm wrong or missing something really stupid. That w ...Show All
Visual Studio Class Designer & Project References Error
When a Solution contains many projects and a projects contains reference to another project in same solution, then if I try to open Class Designer File, its throws error which says "Cannot Load '[Class Designer File Path]' Object reference not set to an instance of an object; but if I remove all project reference from that project, class designer files open normally, but then project won't compile. I reinstall Visual Studio, even reinstall ...Show All
Visual C# How to resize an image programmatically?
How can I programmatically enlarge an image with the original image placed at the left bottom corner, and the enlarged area filled with specific color Thank a lot. public Bitmap ResizeBitmap( string filepath, int width, int height) { Image originalImage = Image.FromFile( filepath ); Bitmap result = new Bitmap(width, height); using (Graphics g = Graphics.FromImage( result )) using (SolidBrush brush = new SolidBrush(Colo ...Show All
.NET Development insert an element into a xml file using web application
why the new element and attribute can not insert into that xml file Any help will be appreciated. Code as following. using System; using System.Collections; using System.ComponentModel; using System.Data; using System.Drawing; using System.Web; using System.Web.SessionState; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.HtmlControls; using System.Xml; namespace ...Show All
.NET Development Dataset in ArrayList
Can I store my Dataset in Arraylist Is possible bye murali Yes u can store the Datasets in Arraylist. You can store any type of object in ArrayList . Example code follows ArrayList ar = new ArrayList(); DataSet ds = new DataSet("DataSet A"); DataTable dtA = new DataTable("Table A"); DataTable dtB = new DataTable("Table B"); ds.Tables.Add(dtA); ds.Tables.Add(dtB); DataTable dtC = new DataTable("Table C"); DataTable ...Show All
.NET Development reading arabic text from mysql
hi, i have some text in arabic stored in a mysql archive. i inserted them using phpmyadmin and are shown fine. i'm trying to read them using odcbconnection and odbc driver, but if i try to read it i receive a string full of ' '. i have to make some settings to the connection to be able to read arabic text ok Try to write the new records using ur new connection ... i did face this s ...Show All
