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

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

s_sd

Member List

blue3952
Anjana
Najm
Jimig
HedleySohn
Steve-0
rothco
Sebastian Dev
Robert Schroeder
seraph
andystac
The One
ddennard
Trent Swanson
StephenWalker
Francis
sireesha
Cedar Sith
kicke_
MBaig
Only Title

s_sd's Q&A profile

  • Windows Forms Passing value from another form to fill datagridview

    Here' what I am trying to achieve...I had a form(frmMain) having a Customer/Orders structure..The data are displaying properly using the dtagridview.I want to display the details by having another form(frmChoose) by which a user will choose for the name of the company he wishes to display details with.This chosen value will be passed to the control(lblCompany) of frmMain and supossedly display the order details based on that company chosen by the user...My ordeal now was how can I fill the datagridview using this setup.Had tried to pass this using the this code but apparently to no avail. Private Sub dgvPatients_CellClick(ByVal ...Show All

  • Visual C++ ambiguous symbol

    Trying to compile a C++ WinForms Winsock related project with /clr option I get a few errors after adding #include <winsock2.h> statement. The reference is to a different header file: servprov.h . There is no direct reference in any of my files to this header. I verified it with quick find command. There is no reference to it in winsock2.h either. I do not know where the reference is coming from. Thus my first question is this: how come I get errors (8 total) from a header file that is not a part of my project explicitly. As far as I could determine, serprov.h is being referred via #include <servprov.h> in four other header ...Show All

  • .NET Development XSLT and Namespaces

    Hi, I'm having problems getting XSLT to deal with namespaces and I'm not sure if it's a .NET thing or a stylesheet thing. With running XPath queries in .NET you need to specify a namespace manager, fine, done that, works a treat. But I don't see any property or method with the XslTransform class that allows a namespace manager to be specified. So question one, is there a way to specify a namespace manager with XslTransform class If there isn't then could someone tell me what I'm doing wrong with the stylesheet. <sonnet type="Shakespearean">   <auth:author xmlns:auth="http://www.authors.com/">     <last-nam ...Show All

  • Visual Studio Express Editions Is vc++ 6.0 good

    i bought a book on vc++6.0.can i build powerful software applications with that.what is the difference between the vc++6.0 and vc++ 2005.what is the latest released version Well... you could use VC++ 6.0 but that's too old really. VC++ 6.0 was released about 8 years ago and I'd say that the quality of the C++ compiler and the IDE itself improved a bit since then . Not to mention that there is a free version of VC++ 2005 called "Express" (though it does not have support for MFC and ATL) see: http://msdn.microsoft.com/vstudio/express/visualc/ ...Show All

  • Visual Studio Team System How do you read pdb files so that you can extract the line number and source file information of the memebrs being checked?

    I need to get information such as the line number and the source file of the violation checked in FxCop. I've searched some threads and it is telling to use pdb files. How can I read pdb files using FxCop sdk Pdb files contain the link between the executable code (ie the assembly or binary) and the source code. You shouldn't need to read the pdb file yourself as FxCop will automatically use this to point to the source file/line in the UI if you pass the node to the Problem constructor. Under what context (ie within a rule, in the FxCop UI, etc) do you need to know the source and line ...Show All

  • Visual Studio Displaying Mutiple Reports

    Hi, I would like a sample of the coding required to display mutiple reports on one form. I have created four reports, have one form with the crystal reports viewer on it. The main report is linked to it, but I do not want to create a form and CRviewer for each report. Please show we the code needed to release a report and attach another. Most are using the same database... Just do CRviewer.ReportSource=<<The report name (including full path/ Object) you want to show>> That all it. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Lighting large meshes

    [Ignore the fact that I work at MSFT and my sig says "VS Platform Team". I'm posting this as a user, not an expert ] I'm using the December SDK and writing a C# application that uses Managed Direct3d. In one view I have a mesh, some ambient light and a directional light. I'm not using specular lighting (RenderState.SpecularEnable = false) and I'm using Gouraud shading (RenderState.ShadeMode = ShadeMode.Gouraud) If I render the mesh at its natural scale, the lighting is applied and the scene renders fine. However, if my world transform includes some large scaling, the diffuse lighting is not applied. I tried vary ...Show All

  • Visual C# Using C++ Interop in C#...... Help....

    Using 2005 Express of C++ and C# I want to use the STL and STD in VC++ in C# by Interop. I develop a uncompleted commercial app in C++ because I want the flexablity of C# on developing custom components, but I want to use the power of C++ to pass variable to and from C++. Does anyone know of an example using C++ as the interop in C# I am new to interop and if I had an example that would speed up the learning curve. Thanks for you help!... C# interoperability allows to call API exported from Dll. It is called PInvoke and works exactly like VB6 API calls. You can read more aboutPInvoke here: http ...Show All

  • Windows Forms VS2005 Cross Thread

    I have a pretty complex program in C#. but basically I have 2 forms. disable some buttons in form1; form1 call some bool function on form2(via a delegate). this function will print some stuff on a textbox in form1 via a cross thread handler. if the function return true then enable the buttons. simple enough. but vs2005 give me this error: "Cross-thread operation not valid: Control 'button1' accessed from a thread other than the thread it was created on." Does anyone knows what is going here And how i can solve it This thread should help you : http://forums.microsoft.com/MSDN/ShowPost.aspx PostID= ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. October 2005 DirectX SDK is available!

    The DirectXR Team is pleased to announce the release of the DirectX 9.0 SDK October 2005 Update! The October Update includes the first public release of the XInput SDK.  This SDK will allow game developers to fully support Xbox 360 Controller for Windows.  To download or learn more about this release please visit http://msdn.com/directx/sdk .   Features added in the October 2005 DirectX SDK update - XInput XInput is an API that allows applications to receive input from the Xbox 360 controller for Windows. Controller rumble effects and voice input and output are supported. For a quick start guide to using the XInput API, see ...Show All

  • .NET Development IActiveDesktop

    Dear all i do programming in a desktop application that puts html file on the desktop as a background and rearrange desktop icons and adjust the list view of the desktop and others... after searching the internet , i found that the only way is to use the IActiveDesktop interface. so my question is how to implement IActiveDesktop interface in C# thx all Thx dennis , I found your pages before and it solved all my problems many thx for people like u , who share information wit others, and I hope that god gives u more science thx ...Show All

  • SQL Server Transaction

    I had the next scenario: transaction transaction1 commit transaction 1 transaction2 commit transcation 2 transaction3 commit transaction 3 commit transaction What's happen if the transaction3 break-up (for any reason), transaction2 and transaction1 are rollback Thanks, Claudiu If you lookup nested transactions in Books Online this should help. The transaction is either committed or rolled back based on the action taken at the end of the outermost transaction. If the outer transaction is committed, the inner nested transactions are also committed. If the outer transaction is rolled back, then all inne ...Show All

  • Visual Studio Team System In Web Tests, How to Validate the values on a grid ?

    I want to validate the values that are shown on a grid , based on the values that are selected on a Combo.(Herein internally, the grid gets filled, when the combo box value is changed.) I would also like to know the selected row from the grid, so as to try it... or else Manual testing has always been there at our help   You can do this with a validation rule.  If the value in the combo is displayed on the same page as the grid, then you could do it with one valistion rule.  If the value of the combo is on the previous page, then you would need to use an extraction rule to pull out t ...Show All

  • .NET Development SSLStream data out of order

    I am upgrading my FTP server to use SSL. I can successfully negotiate an SSL command channel in response to AUTH. I do synchronous I/O here, and all is fine. When the data channel is protected it immediately begins life as SSL. I use the same asynchronous I/O model for both SSL and non SSL modes, casting either SSLStream to a Stream, or casting the NetworkStream to a Stream to do the I/O. But when the data channel is SSL the data is arriving out of order. All bytes are always received, and the byte content is correct (just out of order). My question is, are there special restrictions, or setup required on SSLStream to do asynchronous re ...Show All

  • Windows Forms vb express and sql server express

    Hi, I am trying to use the combo "vb express and sql server express" to know in advance what these two products will be like; I haven’t done anything yet because I am unable to create a Data Source. When I open the New Data Source wizard and try to create a Data Source, I always get these error:  An error occurred while retrie ...Show All

©2008 Software Development Network