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

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

chmur

Member List

pchr
EarlyAdoptors
virnoche
Ronnie Smith
Luther Smith
MegasAlexandros
Björn
Michael Barton
Niko Wessman
JPP
erickson777
RA-SJD
Dhivya.S
Rena
BigBro
Bad Habit
Joe Morin
Mike1820
Erik van der Veen
RamiHajbi
Only Title

chmur's Q&A profile

  • Game Technologies: DirectX, XNA, XACT, etc. XBox and directX

    I am new to game programming and directX and I would like to inquire about the following problems... I want to develop games for my Xbox; Is there a DirectX SDK for that or the DirectX10 SDK would work with it. If there is another SDK then where can it be downloaded from How do I view the game that I would be developing at my PC, through an emulator or something And can the LAN connection of the Xbox be used to dump the game resou ...Show All

  • Visual Basic Access, Insert, VB .NET 2005

    I am trying to insert data into an MS Access Database using standard VB 2005 controls. Me .MDLDataTableAdapter.Insert(1,"alpha", "beta")   Doesn't work... nor does Me .MDLDataSet.MDL.AddMDLRow(1, "alpha", "beta")   I have even tacked on a Me .MDLDataSet.MDL.AcceptChages()   Nothing inputs into the database.  If there is something simple that I am missing it isn't in the tutorial on simple data access on ...Show All

  • Visual Studio Express Editions Smart Card Manage

    Hi. I want developer software with a reader of Smart Card in PC/SC standard. How can i do What i need to do this Thanks. Gerardo PS: please, if i must download a specified SDK (free downloadable), post a correct Link. I would check with the maker of the smart card reader and see if they have an sdk. Also Sub assembly has a smart card reader library for .net ...Show All

  • Visual Studio 2008 (Pre-release) Queries Regarding Peer Channel

    Hi I have few doubts in Peer channels Can i send a message across to a single node in a group Can a peer channel be used for a Request/Reply kind of communication Regards Ragu Each peer in the mesh has a UUID for that node. If each node uses that ID in a request message sent to the mesh, the others will receive it, but can ignore it. The same for the reply. So at the application level you can ...Show All

  • Visual Studio Express Editions DataBase and ListBox?

    Greets again. I'm trying to get data from DataBase columns/rows into a ListBox. There are 10 columns in the table. I want 5 fields of one row to load into a ListBox. I made two separate TableAdapters, BindingSources, DataSets, etc. One for the ListBox and one for a ComboBox and some TextBoxes. The ComboBox and TextBoxes load their respective fields as planned. The ListBox only loads one Item from the DataSet. ...Show All

  • SQL Server How to use ODBC SQLSetConnectAttr from C# ?

    Hi, I'm having problems dealing with some large datatypes in a C# application using odbc. Basically certain datatypes, such as db2 CLOB, are not recognized as 'valid' by the odbc driver. It seems the fix is to use the SQLSetConnectAttr function using the appropriate key/value pair to 'map' those to datatypes known to ODBC but I'm not sure how to use it in C# code. The template seems to be more an unmanaged C type API with handles being ...Show All

  • Visual Studio Team System using TFS remotly

    Dear all, We want to use TFS or VSS over VPN connection to support geographically dispersed teams. I'v tested VSS 2005 with following configuration: Site A: 512Kpbs DSL Site B: 256Kpbs DSL Project Size: Around 10-15 files (total size just 500kb) but it disappointed me as its taking too much time to do checkin and checkout and even navigating the solution explorer is very slow. here r the stats Opening Project = 15 minutes File checkout of ...Show All

  • Visual Studio Team System Problems after reinstalling SharePoint

    I have to reinstall the WSS after a problem with a Language Pack Service Pack. After that, Foundation couldn't create new team projects anymore. I've already tried the Foundation's setup repair option, but even so, I'm getting this error (see below) during attempts to create new Projects. How do I correct that without reinstalling everything and losing my current projects Thks, Max Andrade 11/9/2005 4:30:38 PM | Module: Engine | Thread: 8 | R ...Show All

  • Visual C# Save Binary file

    How do I save a binary file, eg. png, exe. code: byte [] buffer = new byte [255]; int start = readBinary.Read(buffer, 0, 255); while (start > 0) { writeBinary.Write(buffer); start = readBinary.Read(buffer, 0, 255); } That's because you didn't say it was a png, and so he's given you code that saves it as strings, with a new line at the end of each. You should use Environment.NewLin ...Show All

  • Visual Studio 2008 (Pre-release) Can't install WinFX Dec CTP

    Hello! I can't install the WinFX Dec CTP! The installation stops always with the same error: Config_Products_Install: Begin installation of product: Microsoft .NET Compact Framework 2.0 Config_Products_Install: End installation of product: Microsoft .NET Compact Framework 2.0 I have uninstalled the Compact Framework but nothing changed! What should I do I hope someone could help me! Thanks! I had the same ...Show All

  • Windows Forms creating a paper version in pdf of a winform

    Any one know off a good component that can create PDF documents You are correct, Ken. Saving to PDF is supported with Crystal.  We use this in house, however, I cannot provide an example. ...Show All

  • Windows Forms A question about SouceCodeEditor

    Recently,I want to write a source code editor that is just like VS.NET or the other code editors,which can provide a professional experience in coding by providing such features as syntax highlighting,line number tray,code foldering and so on.Now,I'm trying t ...Show All

  • Software Development for Windows Vista Re-creating Event-listener after Runtimeshutdown

    Hi all Is there a way to recreate the event listeners of a running but persisted StateMachineWorkflow after the Workflow Runtime has been "restarted" Let me explain: I have a running StateMachineWorkflow with 3 States (for example), State 2 is the current state and it's waiting for an external event, the instance becomes idle and persists. After the instance is persisted the runtime shuts down (System Restart, Load-Balancing - or ...Show All

  • Visual Studio Express Editions 'System.EventArgs' is a 'type' but is used like a 'variable'

    Whats wrong with my code below Can you correct it private void txtusername_TextChanged( object sender, EventArgs e) { if (EventArgs (e) == Keys .Enter) this .txtpassword.Focus(); } } Try the KeyPressed Event and it will work fine. private void txtusername_KeyPress( object sender, System.Windows.Forms.KeyPressEventArgs e) { if (e.KeyChar == ( char )Keys.Enter) { Console.Write("a&quo ...Show All

  • Software Development for Windows Vista Page Flow - Details

    Hi, I've watched the series of webcasts that have been put together for WF including the one that Israel did on "Using Workflow in Web Applications". Great Job on all these webcasts - what an excellent tool for us developers!! What I would really love to see is at least one example of the Page Flow that Israel was talking about in his webcast demonstrating how to use WF to drive navigation. I am using Beta2 and would sure love su ...Show All

©2008 Software Development Network

powered by phorum