Software Development Network Logo
  • Windows Live
  • Visual Studio
  • Visual C++
  • Visual J#
  • .NET Development
  • VS Express Editions
  • Visual C#
  • VS Team System
  • Architecture
  • SQL Server
  • Visual Basic
  • Windows Vista
  • Smart Device
  • Visual FoxPro
  • Game Technologies

Software Development Network >> _carlos's Q&A profile

_carlos

Member List

Edward Thompson
Régis
zhenxingzhang007
chasiubao
memac
Omnibuzz
Lee Meyers
WantaBe
hrubin996
ARMegos
Eadd
sud
Yedu
Agi
esiboda
Sunny Jung
LJry
AzizDsoua
Logifire
Sassenfeld
Only Title

_carlos's Q&A profile

  • Visual Studio Team System Terminology in Guide CMMI

    Hi, Could anybody tell me how can I interpret  ,p.e.  2 : CM : 1: 1.2  ,  for  'Establish configuration management System'  and  'Establish configuration management Records' Is this ok : 2: Level 2 CM : Configuration management    1: Specific Practice  1.2. Item 2  within  Specific Practice If not .... Does exist anything  that  tell me  the  level  of  CMMI Thanks Leticia ...Show All

  • Visual Studio 2008 (Pre-release) Can TextBlock be made to auto-scale its font to fit into height/width?

    I can't seem to find a way to create a TextBlock with a fixed size and get its text contents to be "best fit", e.g. to automatically scale the font so that all the text is visible.  I tried putting a Viewbox around the TextBlock, and that almost worked - it forced the font to be appropriately small to make the contents fit.  However, it seemed to ignore the wrapping functionality of the TextBlock, so it made all of the text fit on one line. Any suggestions Thanks. Gerald I was wondering if there is a TextBlock property similar to CSS' line-height , which sets the height of a line of text. Any thou ...Show All

  • .NET Development Setting DNS suffix through .NET?

    I'm trying to see if a machine has a domain suffix and if not add that suffix to the computer. I have something like this: System::Net::IPHostEntry ^rHostInfo = System::Net::Dns::GetHostEntry(System::Net::Dns::GetHostName()); String ^rHostName = rHostInfo->HostName->ToLower(); if(rHostName->Contains(".mysuffix.com")) { } else {    rHostInfo->HostName = String::Concat(rHostInfo->HostName->ToString(), ".mysuffix.com"); } This doesn't seem to do anything, Anyone know what I should be doing to set the suffix Thanks! Thanks, That makes sense. So is there anything I can call ...Show All

  • SQL Server Automatic synchronization of lookup columns

    Data Flow: Step 1: I use a OleDb Source Task to read data from a table (say table A) with 5 columns. Step 2: Then I use a lookup task to add a sixth column (resulting from lookup on table B). Step 3: Then I save the 6 columns to table C using a OleDb Destination Task. Now, I go to underlying database and modify the tables like: - remove 1 column from table A (not the column used for lookup later). - remove 1 column from table B (not the columns used for lookup and not the columns retrieved after lookup) - remove 1 column from table C (same as the one removed from table A). If I get back to SSIS designer, it is nice enough to ...Show All

  • Visual Studio Team System TF30177: Team Project Creation Failed

    It feels like, I am going one step forward, just to be thrown two steps back. Ok, my problem is close to be the same as with TFS BETA3 (now i use the CTP). When I try to create a new team project, it fails with this (friendly) message: Error Unable to connect to the Windows SharePoint Services at COMMMO-TFSRV  Explanation The Project Creation Wizard was not able to connect to the Windows SharePoint Services at COMMMO-TFSRV. The reason for the failed connection cannot be determined at this time. Because the connection failed, the wizard was not able to complete creating the Windows SharePoint Services site.  User Action Contact ...Show All

  • SQL Server How I can copy object SMO between DB and servers?

    Something following is necessary: Column c1 = srv1 .Databases[“db1”].Tables[“t1”].Columns[“c1”]; Column c 2 = <something which copies c1>   srv2.ConnectionContext.SqlExecutionModes = SqlExecutionModes.CaptureSql; srv2.ConnectionContext.CapturedSql.Clear();   srv2 .Databases[“db1”].Tables[“t1”].Columns.Add( c2 );   foreach( string s in srv2.ConnectionContext.CapturedSql.Text ) {     Debug.WriteLine( s ); }   srv2.ConnectionContext.SqlExecutionModes = SqlExecutionModes.ExecuteSql; Really it is necessary to make copying all properties of ...Show All

  • Visual C# Send Data over USB

    Hello Everyone, I'm not sure is this the place to ask this question. Anyways if not the place somebody can redirect me..... I'm trying to send some data over USB....The WritePacket USB takes these parameters..... void WritePacket(ref byte data, int length)... I have a XML File from where I'm reading the contents and sending over..... say If I can read something like this foreach(XMLNode node in nList) // Where nList is XMLNodeList { string text = node["text"].InnerText; string something = node["something"].InnerText; } Now how do I change this to byte data and send it over.... A ...Show All

  • SQL Server Error importing data from oracle database to an SQL database

    Hi! When i was importing a database table from an Oracle Database to a SQL database table, the wizard returns this error: Could not connect source component. Warning 0x80202066: Source - VB_PERMISSIONS [1]: Cannot retrieve the column code page info from the OLE DB provider.  If the component supports the "DefaultCodePage" property, the code page from that property will be used.  Change the value of the property if the current string code page values are incorrect.  If the component does not support the property, the code page from the component's locale ID will be used. Error 0xc0204018: DTS.Pipeline: The "output column " ...Show All

  • .NET Development how to "UPDATE a VIEW"

    anyone could tell how i can update a view in vs my dataset has tables and views but views doesn't show any update method please help me ! There are AddNew and Delete methods on DataViews, and you can change the existing data view the DataRowView methods. http://msdn2.microsoft.com/en-us/library/system.data.dataview.addnew.aspx http://msdn2.microsoft.com/en-us/library/system.data.dataview.delete.aspx ...Show All

  • Visual Studio Team System SetLocaleForDataTypes

    I have found one variable in our code where it does not seem to want to set the locale. We have the following in the class itself rather than in a method in the class private DataTable Res = new DataTable ( "Results" ); What I would like to do is immediatly after that line in the class set the Locale ie Res.Locale = CultureInfo.InvarientCulture; Visual studio does not seem to allow this. I have tried to add the above line into methods where Res is used, while Visual Studio allows the line to be added doing so does not get rid of the item from FxCop. Does anyone have any suggestions   ...Show All

  • Windows Forms TASKVISION DataLayer - How many table can the datalayer support

    Hello,   Suppose i have accouting and inventory system and they both add up to have around a 150 tables then can i define all of them in the common datalayer, how many tables can be supported in this TaskVision datalayer , since it sits in the memory, and is consistent . Will it be ok to define individual datalayer for specific tables to make the Datalayer component more light.   Please advise   If you are going to build a system with 150 tables I suggest you use a serious datalayer (the one that comes with TaskVision is IMHO only for little projects (less than 15 tables), you should take ...Show All

  • Visual C++ Call Browser is not working in VS2005

    hi, i just noticed that the Call Browser is not working anymore in VS2005. of course, i can view the Call Browser window but all searches fail. i also do not see the context menu option for call graph when i right-click on a symbol. what should i check thanks for any insight... g   gchippie wrote: i just noticed that the Call Browser is not working anymore in VS2005. Compared to what This feature was missing in VS.NET 2002 and VS.NET 2003 too! ...Show All

  • .NET Development .Net 2.0 release version breaks VS 2005b2?

    I have just upgraded my .Net frameworks to 2.0 release version, and in the process, I had to uninstall the previous beta version and also some other stuff like the compact framework. Now, Visual Studio beta2 is not launching anymore. Is this a known issue With kind regards. Two things. One, ClickOnce docs tell you all about how it downloads the most recent version of the .net framework. Yea it feels like *** when you run into that problem but remember, you are beta testing. You are suppost to be telling them bugs and helping with the overall release... which brings me to the next thing. They can, and did (y ...Show All

  • Windows Forms code generation at designtime

    Hi, by default vs.net generates a handler for the click or paint events when doubleclicking a custom component in designtime. I have a control that contains a few components when i doubleclick the control in designtime , i want to generate code for an eventhandler on one of the subcomponents instead of a handler for the control. what would be the best way t ...Show All

  • Windows Forms Smart Client Error

    I'm trying to host my application in IIS. When I attempt to access my application (ie: http://www.mysite.com/myapp.exe) it downloads all the assemblies correctly but when it tries to run it throws a "System.TypeIntialization" exception... this seems to be thrown by System.Drawing. I have the assembly set for full permission. Any ideas See http://www.superdotnet.com/csharp_ ...Show All

©2008 Software Development Network