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

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

Tampico

Member List

Jasonhol
wp416
Siggy
newbie1928
santosh.s
russ_mac
ngoclinh_nkotb
Vlado H
lexluthor
i2adnan
Yusuf K
skydyvr
Dean S.
Jon Flanders
MURALEE KRISHNAN
KUCL
Unreal400
DennisCIS
Noel L
kungpaokitty1
Only Title

Tampico's Q&A profile

  • Visual Studio Multilingual tutorial

    Hi, I'm trying to use the multilingual tutorial that comes with Visual Studio 2005 ( http://support.businessobjects.com/documentation/product_guides/cr_net/vs_2005/html/crtsktutorialsothermultilingual.htm ) but I cannot find the "CrystalReportViewer_resource_files" folder they talk about (I have installed the tutorial sample code files). Does anybody know where I can find it   Thanks.   -Philippe. ...Show All

  • .NET Development Multi-threading with UdpClient

    Hi there, I am trying to implement a simple board grame which use UdpClient to play over a network. My problem is that the game requires all the network connection and traffic to be done in a separate thread. My approach is to use a main thread to do all the user interface and game logic and use another thread to do all the network related logic. However, I run into problem when I have to pass the status of the board from the main thread to ...Show All

  • Visual Studio Team System Problem with Beta 2 TFS Install with Sharepoint portion

    Although I have had no problems installing the pieces for TFS during Beta 1 and all the CTPs , I can't get Sharepoint Services 2.0 to install correctly this time. I have tried 3X and I get this on install: An unexpected error has occurred. Web Parts Maintenance Page: If you have permission, you can use this page to temporarily disable Web Parts or remove personal settings. For more information, contact your site administrator. I am running ...Show All

  • Visual Studio Team System Error creating work item

    I am using th beta 2. I never be able to open a work item. I have a server (Windows2003) and a client (W2000). I am the only user at this time. I have to test Team system before the other developper. At this time, I haven't seen any other problem with VSTS (but it is the beginning of my test). Does only one client crash   Have you tried connecting to the server from another client (the workitem cache may be corrupt on that specific c ...Show All

  • Windows Forms Grab current record when not using databinding

    Table: CustID int, primary key, Identity Specification = yes CustName nvarchar(20) When a customer is added the CustName field is passed to a stored procedure, therby adding the customer. The CustID is created automatically by the DB. I need to grab the value of the CustID just created by the DB. There is no windows databinding class being used. That value is needed for a foreign key into additional tables (billing adresses, phone ...Show All

  • Smart Device Development Datagrid Highlight Row

    When the user click on an individual cell - wanted to highlight the entire row - is that possible and if so, how Please consider subscribing to CurrentCellChanged event and selecting row from it by calling Select() method with desired row number as argument. ...Show All

  • Windows Forms App.Config returning null values in Windows Services but returns right values in Windows Application.

    Hi All, I have created an Windows Service where I am using App.Config for global variables. But, it is always returning null values ( string xyz=ConfigurationSettings.AppSettings["abc"]) for all the variables I have declared in App.Config. (But the same thing if I am doing as a Windows Application then it's returning the right values.) Interestingly, this same Windows Service is working properly in another machine but not ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. .x file exporting from 3DSMax using Skin modifyer

    hi, Is there a version of the MS .x exporter that supports Max's Skin modifyer for wieghted meshes used in animations. If not, is support for this planned   The Skin modifyer has many advantages over Physique. Just out of curiosity, what is the main difference between the two that makes Skin unusable with .x   Aren't those modifyers simply interfaces for a vertex weight value   Its just a weight value in the end! :) Urgent ...Show All

  • Software Development for Windows Vista Dialog Box Shadow

    Is there any way to get a shadow drawn under a dialog box with no frame. Prior to Vista I used a thin frame, which gives a shadow, but under Vista the thin frame is thick and allows selection and dialog box movement, thus I now have to use no border to get a non-moveable dialog box. Changing the Active Window Border width does not have any effect on thin frame dialogs in XP. They remain a single pixel. The problem your change causes is that ...Show All

  • Visual Studio 2008 (Pre-release) looking the difference between Asynchronous Message Exchange Patterns and Asynchronous Operation Implementations

    Hi I had readen the WCF documentation about asynchronous calls but I can't undestand well the differences between Asynchronous Message Exchange Patterns and Asynchronous Operation Implementations. Is there a sample of Asynchronous Message Exchange Patterns Thanks Javier Yes. Have a look at Steve's quick discussion here. http://hyperthink.net/blog/2005/11/27/A+Little+Bit+About+Async+In+WCF.aspx . If ...Show All

  • Windows Forms TabControl and ToolStrips:strange behaviour ?

    got a form with a tabcontrol on it. On each tappage a ToolstripContainer and some Toolstrips in int. If I see Tabpage 1 in the designer and run...then I get Toolstrips visible on Tabpage 1. Not on ex.TabPage2. if I see Tabpage2 in the designer and run...then I get Toolstrips visible on TabPage 2. No on ex. TabPage1. Is this meant to be or am I missing something Thx JMW You are welcome to have the last word on t ...Show All

  • Windows Forms DataGridViewComboBoxColumn Losing Values

    I have a ComboBox column in my DataGridView that is giving me some problems.  I have enabled AutoComplete and set the ComboBox to DropDown.  If the users starts typing a valid value and tabs, the value shows in the column properly.  If the user drops down the list and clicks on a value, the value shows in the column properly.  However, if the users starts typing a valid value and then drops down the list and tabs aw ...Show All

  • SQL Server Restore DB without Transaction Log

    Hi, How can I restore a DB without TRN log. As database transaction logs grows too much and I only want to restore the database. Thanks Shafiq You should be wary about just going to simple recovery model. This is not suitable for production systems where loss of recent changes (in the event of a problem) is not acceptable. This is because after a data backup in the simple recovery model, the transaction log is truncated. Th ...Show All

  • SQL Server Problem with instalation

    I have a problem with SQL 2005 Express on Win XP, at the start of instalation, with - Performance Monitor Counter Requirement (Error) Messages Performance Monitor Counter Requirement The System Configuration Check for Performance Monitor counter registry value has failed. For details, see How to: Increment the Counter Registry Key for Setup in SQL Server 2005, in the readme file or in SQL Server Books Online Please, sen ...Show All

  • Visual Studio Addin calling a custom dialog

    Hi, I'm trying to have an addin launch a Windows Form to get some custom user input. The idea of the addin is to have a button in VS that pops up a little form. In this form, the user can select one of the projects of his active solution (project list is in a combobox). Once the project is chosen, the form returns the ComboBox selected index to the addin's Connect class to proceed. So, i made my addin project and managed to create my buttons wit ...Show All

©2008 Software Development Network

powered by phorum