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

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

SeongWook

Member List

AlexWerner
Grayson Peddie
Jay-r
Philip at Alpha Index
Neil Dela Osa
BeeNeeB
NJDESI
Rozek
Johnny P
Anders Ryden
Geoff Garside
rajabharathi
jturn99
myksdsu
Simon.kx
Gortz777
aajrb
NonGT
Scooter!
Silliea
Only Title

SeongWook's Q&A profile

  • Game Technologies: DirectX, XNA, XACT, etc. Unmanaged directX and .net windows form

    I have written (with a pointer from you lot here - thanks) a visualisation program in unmanaged C++ DirectX. Everything works fine, however I need to be able to change and edit parameters of the model with the usual text input boxes and track bar, as well as haveing a menu with different options. I have written a little windows form program that does this but wihout the directx stuff. I would like to add my DirectX work into a window in the form but I have no idea about devices and that side of things (I just used the tutorials to set that end of things up). Any help would be greatly appreciated, thanks. ...Show All

  • Windows Forms What is the AddNew method of BindingContext???

    I need to try this question again: Does anyone know what the AddNew method of BindingContext Class is   It is not documented in the Class Members. Here is the code that generated this question.  This code is found on a form displaying one record at a time.  This code appears to prepare the form for data entry; but other than incrementing the& ...Show All

  • .NET Development How to set the local timezone in asp.net application?

    Hi, We have created an application in asp.net(in USA) and we have clients in different parts of the world. The problem is , consider we are in eastern timezone (eg:Georgia) and one of our customers is in Texas, now there is a time variation. We came to know from our texas client that the application is displaying our timezone, but not his. Is there any way to make the application read/take the time from the local system [I'll tell abt one situation in our application. In the application(website), theres a 'new customer entry page'. In that, when a new customer comes to the office and signin, his name and the time of his arrival will be s ...Show All

  • Windows Forms DataGridView Text Modifications

    Hello, I want to be able to do two things: 1) When the user selects some text in a DataGridView cell, I want to be able to respond to that. So when they select the text, and let go, I want to be able to get the selected text. Any idea how 2) I want to be able to get the cell contents of an entire column iteratively. So I select a column, click a button, and I want to be able to get the text value of each cell. Any ideas how to proceed on one or the other What events should I look at Thanks. ...Show All

  • Visual Studio Express Editions Combobox update fail.

    I have binding some textbox and a combobox to a Access database. I can update the data in textbox, but the combobox will return to the oiginal value when I try to update the data. Private Sub cmdSave_Click(...) Me.BookTableAdapter.UpdateQuery(Me.BookDataSet.book(Me.BookBindingSource.Position).INDEX, txtISBN.Text, txtTitle.Text, txtAuthor.Text, txtPublisher.Text, cmbCodeSubject.Text) Me.BookBindingSource.EndEdit() Me.BookTableAdapter.Update(Me.BookDataSet.book) End Sub "UpdateQuery" is a Query I created in the Adapter UPDATE book SET ISBN = , Title = , Author = , Publisher = , CodeSubject = WHERE ...Show All

  • Visual C++ VC++ 2005 B2 error C3766:'ClassXXX' must provide an implementation for the interface method 'foo'

    Hi All: I have complied the code from MSDN library for Vs2005b2, which is the example of 'interface class'. The codes are as follows: //========================================= // mcppv2_interface_class.cpp // compile with: /clr using namespace System; public delegate void ClickEventHandler(int, double); // define interface with nested interface public interface class Interface_A {    void Function_1();    interface class Interface_Nested_A {       void Function_2();    }; }; // interface with a base interface public interface class Interface_B : Interface_A {    pro ...Show All

  • Visual Studio Team System Centralize suppressions (no more attributes) in VS2005

    Using VSTS, how can we avoid having to suppress violations all over our codebase I'm aware we can suppress things at an assembly or module level, but that's not my intent. I want to have fine-grain control, yet don't want my codebase polluted with all those attributes. This is the only reason we can't use the built-in Code Analysis in VSTS -- it screws with the code. I just want a separate analysis file that can store all the information it needs to, and stays completely separate from the source, but still get the benefits of VSTS and Team Build integration. Is there a way to hack the teambuild/msbuild stuff to use .fxcop project files but ...Show All

  • Windows Live Developer Forums HELP!!!! ME PLEASE!!!!

    I am getting really annoyed with my msn messenger. I can't sign in and i don't no how to fix it. like i put my e-mail address in and my password and then it goes straight onto we can not sign u in at the mo click troubleshooter  and then i click trouble shooter and everything is fine and they can't find any thing wrong!!! What do i do ! ! I know my password is right coz i go to www.hotmail.com to check my e-mails. please help me if u have any ideas to help me it would be much appreciated. Thanks! First of all, in any forum "HELP ME PLEASE" is not a way to start - people scan these forums looking for questions they c ...Show All

  • Visual Studio compilation for dotnet 1.1 framework

    is possible to use visual studio 2005 to compile applications for the 1.1 framework i haven't found any options that let me choose which runtime target. I have several applications running and i cannot move all of them to 2.0 framework in a day. You might check out the following links for toolkits that enable Visual Studio 2005 to compile applications for .NET Framework 1.1. http://blogs.msdn.com/jomo_fisher/archive/2005/04/22/410903.aspx http://weblogs.asp.net/rmclaws/archive/2005/06/04/410360.aspx NOTE:  Use these at your own risk ... these are community efforts, and are not supported by Micros ...Show All

  • Visual Studio Team System Which version for Business Analysts and Project Managers?

    I'm leading an effort at my company to review VSTS to determine if it is a right fit. We are using the Beta 3 evaluation and so far it is a great product. The thing I can not figure out is which version do people in the role of Business Analysts and Project Managers use Their main usage would be to interact with reports and work items. Any suggestions The best fit for them is probably to use no version of VSTS. Rather, they would typically use Office 2003 (Excel and Project) and the Team Client - which is nothing more than Visual Studio with all the compilers and project types removed. Individual team c ...Show All

  • SQL Server Pivoting currency text file

    Hi! I have a currency exchange rate flat file with this format: date;USD;EUR;SEK; 01-01-2004;8.232;8.00;1.43; 02-01-2004;8.232;8.00;1.43; ..and so on. I need to pivot this to: 01-01-2004;USD;8.232; 01-01-2004;EUR;8.00; .. and so on.. Anyone got any tips on how to achieve this Try the UNPIVOT transformation. It does exactly what you need to do. There is a useful walkthrough demo in BOL that explains what the UNPIVOT transformation does.   -Jamie ...Show All

  • Visual Basic Processing Serial Data

    I need the reduce the processing time in a uMicrocontroller to allow faster sampling times. This has creates a problem in the data collection routine in VB. The old system collected the analog data a converted it to a decimal format before sending it to the serial port. This data is collected and saved using Hyperterminal. The VB program would, when run, would open this file and process the decimal data by graphing it. What I need is to capture the data directly and process a binary word. All attempts to run the graph program have failed! I'm sure it's in the way I'm reading the data. I've not been able to find much informatio ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Targeting older machines

    Hi there. I guess part of this is more of an opinion question. I want to target older machines that may not have up-to-date graphics cards. Right now I am using a game engine that gives the developer the option of using DX8, DX9, or its own software driver. To compile the engine, I naturally need the DirectX SDK. Problem being that the latest realeases don't have DX8 support. So the question becomes: Is DX9 a 'safe' way to go for older machines (in which case I will just pitch the DX8 stuff in the engine) Or should I try and grab an older version of the SDK that includes DX8 support Thanks. ...Show All

  • Visual Basic Save\Load values as text file

    Hello In VB6, I was able to save and load values as text file, it saves them like this form: "V1","V2","V3" I was using this code: Dim A As String, B As String, Op Op = FreeFile A = "Value1": B = "Value2" Open "D:\File.txt" For Output As Op Write #Op, A, B Close Op How can I do it in VB2005 Thanks & Regards The following code will do the trick in VB Express/2005 making use of the My.Computer.FileSystem.WriteAllText method Dim A As String, B As String Dim Content as string =A & B My.Computer.FileSystem.WriteAll ...Show All

  • SQL Server Management Studio Express CTP update now available

    There is a new Management Studio Express CTP download available at   http://www.microsoft.com/downloads/details.aspx FamilyId=82AFBD59-57A4-455E-A2D6-1D4C98D40F6E&displaylang=en . This update fixes the defect where installing the full Books Online documentation prevented Management Studio Express from starting.  With the update, Management Studio Express and Books Online no longer interfere with each other. To update Management Studio Express CTP: 1) Uninstall Management Studio Express CTP from your machine. 2) Clear your browser's download cache.  If you are using Internet Explorer 6, you can do this by starting Internet ...Show All

©2008 Software Development Network