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

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

173234

Member List

sensores
ssdfsdfsdfsdfsdf
jthomas
jrsairwalk
Sijin Joseph
neolace
kwing
K H Tan
phoy
JRickW
Gu1234
LostInSwindon
SteveBender
topographicaltales
mew1909
Oliver 123
alfredd
Jennifer Lai
Katu
stibitz
Only Title

173234's Q&A profile

  • Windows Forms Help needed .

    Hi how to read values from INI files and write values back in INI files. dese anybody tell me the code. Thanks in advance. regards kash Also check this out... <a href="http://msdn.microsoft.com/library/default.asp url=/library/en-us/dndotnet/html/custxmlread.asp">Implementing XmlReade ...Show All

  • Visual C++ How to redirect STDIN of CMD.exe in C++ programme?

    How to redirect STDIN of CMD.exe in C++ programme Hi All I am trying to redirect STD handles of cmd.exe in my programmes. I am able to redierct STDOUT and STDERR, but rediercting STDIN is not workin. I wiash that whenevr i create a new process "CMD.exe" it should obtain its input from a file say input is 'dir' and write the output to a file. I am able to write the output to a file , but I am unable to redirect the STDIN of the process. I have t ...Show All

  • Visual C++ Dialog + Modeless

    HI,   I am trying to create a dialog. I have a .EXE which already as its Dialog and this dialog is create with the function DoModal(). This EXE loads my dll. and at some point my dll needs to lauch a modeless dialog... I have tried the following:         DlgPtr = new DlgClass();         DlgPtr->Create( IDD_FIRST_DIALOG );         DlgPtr->ShowW ...Show All

  • Visual C# Is there any way to flag a block of code so it isn't reformatted by "Format Document"?

    I love the VS2005 autoformatter, and I use "Edit / Advanced / Format Document" and "Format Selection" all the time. Sometimes, though, the code is much easier to read if you break the rules and put everything on one line with multiple spaces or tabs. Example: Property1 { get { return this.myClass.internalAttribute1; } { set this.myClass.internalattribute1 = value; }} P2        { get { return this.p2; } &n ...Show All

  • Windows Forms Form and textbox resize when the textbox's text has changed

    I have to show different questions on a multiline textbox. I want to make possible resizing the textbox (to show the entire question) and also the form. If it's possible i need a tip and maybe a little sample. Thanks hi, Is your problem solved Could you be more clear in your problem definition Thank you, Bhanu. ...Show All

  • Smart Device Development Serial Port Error: COM1: does not exist

    I have a PPC app that I am simply trying to open a serial port for using the SerialPort control in VS2005. As soon as I try to open the port it will give me "Error 57: The port 'COM1:' does not exist. And it does this for COM2, COM3 & COM4 too. This is a Dell Axim x30 with Wifi if that helps at all. Anyway, I cant figure out why it keeps throwing this error. If anybody has any ideas what may be going on I would love to hear em'. ...Show All

  • Windows Forms datagridview button column doesn't respond to enter keystroke

    vs2005 beta1 it does respond to mouse click though, but when you use enter keystroke, only leads to current row change. Thanks mark. I put the code here just in case anyone needs it. Public Class MyDatagridviewButtonColumn Inherits DataGridViewButtonColumn Public Sub New () Me .CellTemplate = New MyDatagridviewButtonCell End Sub End Class   Public Class MyDatagridviewButtonCell Inherits DataGridViewButt ...Show All

  • Windows Forms Q on Toolstrip container, making toolstrips stay where you put them!

    Hi there I have a toolstrip container on a form, with menus and 3-4 toolstrips (one for file, record operations, and one specific to the form that is open) My problem is that I can arrange them neatly, and on the same line, FFFFRRRR, where "FFFFF" = file toolstip and "RRRR" = Records nav. I run it, and the item is rendered properly. Once I close the solution and re-run it, the Second toolbar flops to the next line an ...Show All

  • Visual Studio 2008 (Pre-release) Deployment WCF

    It’s possible have a services of wcf in one computer and the bussiness layer that wcf use in another computer I would implement this ( before wcf ) with .Net Remoting. Because you have wcf now I suggest you to use netTcpBinding for communication betwen sevice that you expose and business layer on another machine. The service itself could expose any binding like, baseHttpBinding or wsHttpBinding. I suppo ...Show All

  • Visual Basic Creating Control Arrays!

    How can i create a control array in VB 2005 If I convert a VB 6 project into VB 2005 the control that's in an array has an extra property in the misc sections called Index on Text1 or what ever the control is called. But when I copy the control into another VB 2005 project it no longer has that property! How can i create this in another project I read http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=67447&SiteID=1 but it did not answer ...Show All

  • Windows Forms How can I make the IDE create correct code?

    I implement a component, but I can't get it's paraent (a control which contain the component). So I want to get the paraent from constructor's parameter. But the IDE can't create corrent code for my new constructor. How can I make the IDE create correct code I want to let the IDE automatic create the correct code, because I want to get the paraent in Design Time mode. example: The  illegal code:    &nb ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Card game development

    Hi I am new to game programming. Recently I have downloaded a casino game from 24ktgold casino and very curious about it. I am vb.net programmer and wanted to know how can I develop a card or casino game with .net If anybody can suggest, it would be great starting point for me. Have a look at the starter kits for VS 2005, there is a crad game starter kit that you might be able to take apart. http://lab.msdn.mic ...Show All

  • Smart Device Development Unable to access WebService from PocketPC app (2003).

    This question has been posted before. And I have followed all the answers I could find. Yet I still cannot connect to my WebService through a PocketPC application, neither through the emulator or the acutal device. Here is the error I am getting: 'Strata.exe' (Managed): Loaded 'System.SR.dll', No symbols loaded. A first chance exception of type 'System.IO.FileNotFoundException' occurred in mscorlib.dll A first chance ex ...Show All

  • Visual Basic I cannot reference my class

    I created a new class ( Class1 ) that holds information for creating and displaying controls. I put it all in a function ( general ). However, I cannot reference that functon in my main form ( Form1 ). I even tried to import the class and it still gives the following error: Referrence to a non-shared member requires an object referrence . Any idea what I am doing wrong You need to use the shared modifier to the methods you want to use w ...Show All

  • Windows Forms Binding Navigator Tool.Enabled not Working As Expected

    I have a binding navigator for which I want to selectively enable/disable the Delete button based on the return value of a table adapter query (given data condition).  When all my variables were declared and instantiated within the procedure enabling/disabling the Delete button it worked. Once I refactored out to having this event update class variables, it all got hosed. Any ideas on how I can get this functional Here's what I do (var ...Show All

©2008 Software Development Network

powered by phorum