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

Software Development Network >> Noah Hambayi's Q&A profile

Noah Hambayi

Member List

ppngiap
Scott A.
kapilp
Pawel.Gr
mmmmmm
Chad Mumford - MSFT
wolfkrow
allears42
eegee
eman1961
Chrono Detector
Nick Boyd
new to sql server
Clint Stotesbery
Behzad Karim
PJune
Víctor M.
donnie100
Daniel Hernán Pallarez
MackJerry
Only Title

Noah Hambayi's Q&A profile

  • Visual Studio How to rotate the text 90 degree in a ReportViewer report

    I am creating a report using the ReportViewer control in a windows App. In the report, there is a table cell's content ( mailing label ) which needs to be rotated 90 degree. Is there a way to do this Please help!!!!!!! ...Show All

  • .NET Development How to query delete commands against table with ado.net?

    Hi, guess this should be really simple but seems as if I am just on the wrong track. All I want to do is delete every dataset in a certain table, which I would do with a query like that: "Delete From myTable" But how can I do that with ado.net I read through msdn-library but all I could find was something like: "myDataSet.Tables["myTable"].Rows .Delete();" Of course I am not willing to iterate over al ...Show All

  • Windows Forms how to display tooltip for infinity time?

    hi, I want to know how to display a tooltip forever as long as the mouse still at the control. I only find AutoPopDelay property to set the time but cannot set the time to be infinity. anyone can help thanks in advance I notice that there is a protected method on the ToolTip class called StopTimer. It seems to be what you are looking for. Only problem is that you would have to created a derived ...Show All

  • Visual C++ Using Printf in a "C" DLL?

    Hello, I've been writing a DLL in VisC++6, and I've run into a bit of rut... Everything is fine, until I try to use the 'Printf' command within the DLL, I realise that the DLL will not have a console window associated with it, and I have tried to use a few API commands... Which brings a console window up... but I still cannot send anything to the console, either with 'Printf' or 'WriteConsole()'... The error message I receive from the latter API ...Show All

  • Visual Studio Team System Version Tree Browser

    First thanks to the product team for all they have done! Secondly, does anyone know of plans within Microsoft of outside for a Version Tree Browser so that merges, branches, branches from branches, labels etc could be shown for Team Edition. My ClearCase customers are finding that a main missing point in their look at moves to TFS. Yes. I can't promise what shape things will take, only that we're very aware how nice it would be ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. How to use DSSCL_WRITEPRIMARY mix the sound?how write the primary buffer?

    how write the primary buffer How to use DSSCL_WRITEPRIMARY mix the sound Since the advent of the Windows Driver Model, there are no advantages to writing directly to the primary buffer, in fact it is simply an abstract concept now – there is no physical buffer available to the app where all audio gets mixed (so you cannot apply global effects on the primary buffer – you’ll have to mix the stuff yourself if you want post submix effects). ...Show All

  • SQL Server Flat File and uneven number of columns

    Please leave feedback for Microsoft regarding this problem at https://connect.microsoft.com/SQLServer/feedback/ViewFeedback.aspx FeedbackID=126493 Ok I'm sure it just me, SSIS has been great so far....but how can you import a straight CSV file with and uneven column count. For example: (assume CR LF row delimiter) The,Quick,Brown,Fox,Jumps Hello,World This,is,a,test "Normally" I'd expect this | Col1 | | C ...Show All

  • Visual Studio Team System vsmdi relationship to TestCase/TestMethods

    I am trying to determine how an entry inside the vsmdi file relates to a test case method. Each test case item in a test list appears to have a unique Guid and the relative path to the assembly that the test case belongs in. However it does not list the test class that the test case belongs to. This information is visible when viewed from the test manager, but does to appear to be stored on the filesystem. Does anyone know how this relationship ...Show All

  • SQL Server Conflict Management

    Hi, I developed an ppc application, where i am using web service for synchronisation, but here i am getting lot of problem while handling conflict management. Please suggest me how to manage conflicts, using web service. Thank you, Prashant Perhaps the easiest way to ensure that the unit of work that each mobile client is performing is guaranteed unique and avoid conflicts at synch time is to assign ...Show All

  • Software Development for Windows Vista MMDeviceapi

    Hi all, I'm trying to compile some sample codes from the white paper. The sample codes enumerates the audio end points and print out the display name. I've included mmdeviceapi.h and propkey.h but got failures. The following are the linking errors error LNK2001: unresolved external symbol _PKEY_DisplayName error LNK2001: unresolved external symbol _CLSID_MMDeviceEnumerator error LNK2001: unresolved external symbol _IID_IMMDeviceEn ...Show All

  • Windows Forms How to assign a ARGB Color to a brush

    Hi, I'm doing some custom drawings in a form and i want to fill a rectangle with a color choosed by the user. The color is stored in a database by it's ARGB value. How do I create a custom brush with an ARGB Color. Thanks Serge .... Case CeduleObjType.ObjDetailRectangle vPen.Color = vCeduleObj.Color pGraphics.DrawRectangle(vPen, vCeduleObj.ScreenX, vCeduleObj.ScreenY, vCeduleObj.Width, vCeduleObj.Height) pGraphic ...Show All

  • Visual Basic Packing additional files

    I am creating an installer for an existing program, and I need to be able to package .exe and other files in order to create the installer. Please tell me how I can package files, and then extract them to the directery of my choice. Please give step by step instructions and/or code examples, as I do not know very much about programing in Visual Basic .NET. -Thank You two options: 1. Use ClickOnce deployment http://msdn.microsoft.com/ ...Show All

  • Smart Device Development MFC 3.0 and VS2005

    I have an MFC base project (main app , 5 dlls and 3 static libraries and several external (third party ) dlls) that has progressed from PPC 2000 to wm2003 without major problems, until now. I've encountered all of the problems outlined on this forum (and more). Originally all I wanted to do was debug the app to see why it didn't run on WM2005, I then found out that a major rewrite was necessary to just get it to compile , much less link with the ...Show All

  • Windows Forms global error handling

    Hi guys/gals I'm having a little trouble programming a global error handling routine in VB6 which would be friendly to the end user and yet not let the system crash,ever!!! It would also be handy to have the error #, error name, form and subrou ...Show All

  • Windows Forms Adding button dynamically to an existing control

    Hi all, My current client has a requirement for a datagrid that has a collapse/expand button at the top left corner of the Caption row. This is because there are a lot of datagrids on our forms and some are only relevant/useful to some users (but they all have to be there.) It is nothing to do with drilling down or having child-parent data - it simply needs to minimize the datagrid on the form so only the Caption row is showing. When they cli ...Show All

©2008 Software Development Network

powered by phorum