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

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

nyaung

Member List

PatGO
Vipul
KNOREUS
idunkn0
AnandaK
iliketoeaticecream
drumboy
Paul Nystrom - MSFT
SathishKumar
SADave
Per Broms
chire
Dahoul
eebrown
J-Gaming
Bjornar
xyray
nabendu
Meher
Anthony Stevens
Only Title

nyaung's Q&A profile

  • SQL Server Obtain sqlceresultset table schema with GetSchemaTable

    I have a SqlCeResult pointing to a table : Public conexion As Data.SqlServerCe.SqlCeConnection = New Data.SqlServerCe.SqlCeConnection( "Data Source=iPAQ File Store\GestionAlmacenN.sdf" ) Public ComandoCargaProductos As Data.SqlServerCe.SqlCeCommand = conexion.CreateCommand Public ResultSetProductos As Data.SqlServerCe.SqlCeResultSet Private Sub Form1_Load( ByVal sender As Object , ByVal e As System.EventArgs) Handles MyBase .Load conexion.Open() '********************************************************** '************Conexion con Tabla Productos****************** 'Comand ...Show All

  • Visual Basic Code Help!!!!

    Hi!, I am used to Visual Basic 6.0, but I am starting to look at Visual Basic 2005 Express Beta 2. I have this code from Visual Basic 6.0 that Visual Basic 2005 will not recognize. There are more of the same thing, but I need help what to do so I can fix the rest of the program. These are some of the codes: frmRegister.UserInfo.EOF frmRegister.UserInfo.Recordset What is the right code for Visual Basic 2005 Thanks    I think that I answered my own question. If I turn off MSADO 2.8 and just leave Interop.ADODB on I do not get any errors. Should I use Interop.ADODB or just ADODB ...Show All

  • Visual C++ Please Help me !

    I have try to create a program like Easy Cafe. But i faced with some problem. I would like to promote user not to close my App (how to hide Close icon on top right corner of my App). I wanna ask how to prevent user turn off my of (even though in Task Manager) Another purpose of my App is lock screen. First, the screen only display some picture and a dialog box. After user press on "Start" button on dialog box, my App'll minimize on task bar and Working screen'll show to user. When user leave (I'll restart my App), my App'll return to first state. Please help me how to lock screen and how to prevent user turn off my App Hi, To display ...Show All

  • Visual Studio Team System Looking for book suggestions

    Hello,  I am looking for suggestions on books specifically for TS Architects. Are there any good publications out there yet, that are not based upon beta releases of TS Thanks in advance. John Hi John, You've probably already seen the list of books on MSDN, but just in case you haven't it's at : http://msdn.microsoft.com/vstudio/teamsystem/reference/books/ I've read Richard Hundhausen's book which provides a good overview but not too much in-depth hands-on stuff. Which is a good thing as it was the first one to be published. Both the book that I've been involved with, and the Apress o ...Show All

  • Windows Forms listview scrollbars

    Hi All, I am setting listview scrollbars property to true in design time. how do I capture the event when I click on scrollbars (horizontal or vertical). Thanks Just add this code to ur class. private const int WM_HSCROLL = 0x114; private const int WM_VSCROLL = 0x115; protected override void WndProc( ref Message msg) { // Look for the WM_VSCROLL or the WM_HSCROLL messages. if ((msg.Msg == WM_VSCROLL) || (msg.Msg == WM_HSCROLL)) { // Move focus to the ListView to cause TextBox to lose focus. this .Focus(); } // Pass message to default handler. base .WndProc( ref msg); } Thanks Aadi ...Show All

  • Visual C++ WaitForMultipleObjects not signalling events properly under Windows 2000 Server

    I have a C++ Win32 NT service application (runs as system) that uses the WaitForMultipleObjects function to signal one of four recurring timer handles created with CreateWaitableTimer/SetWaitableTimer. The WaitForMultipleObjects call correctly signals all 4 timers when running under Windows 2000 Professional, Windows XP (all versions) and Windows 2003 Server. However, under Windows 2000 Server (fully updated, SP4) only the first two handles in the array are ever signalled (handle[0], handles[1]). The other two handles are never signalled...ever. The sample code is below: HANDLE handles[4]; handles[0] = GetStopEvent(); handles[1] = Create ...Show All

  • Visual Studio Team System Build a new sharepoint site for an existing team project

    The subject says it all:   Is there a way to build a new sharepoint site for an existing team project If there isn't there should be.  Losing all my work items and change history just because the sharepoint site got messed up is simply unacceptable. -cd Carl, what is the scenario in which you are running into this issue. We should not be losing work item and change history information because of issues with the sharepoint site. ...Show All

  • SQL Server how large is 4 GB

    Hi, All. New to SQL. Just downloaded SQL server Express 2005, Web doc says its max limit is 4GB, Need to know how large a 4GB can hold. The data shall be like holding company info, say: company names, locations, line of business, phone, etc. It needs full-text search on it. Is this Express is the choice to go 4 GB is a LOT. First of all, it's 4294967296 characters. But it's compressed in the database, so it's actually more. ...Show All

  • Visual Studio Team System what permissions i need at the server to create a new project from VSTS client?

    I am in Namespace Administrator group but when i try to create a project from my client machine i getthe below stated exception. What can be the problem and possible solution What permission settings i have to make at WSS and RS 04/29/2005 07:16:07.977 | Module: ELeadServiceMediator | URL for eLead web service retrieved as " http://tcs046247.testdom:8080/bisserver/EleadWebService.asmx " from the registration service | Completion time: 0 seconds 04/29/2005 07:16:07.977 | Module: ELeadServiceMediator | eLead web service proxy constructed | Completion time: 0 seconds 04/29/2005 07:16:08.117 | Module: ELeadServiceMediator | Template Informati ...Show All

  • .NET Development Problem with Asserted Permissions

    I have code that is hosted in IEEXEC. The same code can be run from a local or remote file and it will work. When it runs from IEEXEC it fails because of code access permissions. (The code is trying to use remoting to connect to a host that is other then the one it is loaded from.) The assemblies are strongly named and fully trusted. I found an article that indicates the following line of code will allow code in a fully trusted assembly to do anything that it wants regradless of the AppDomain or previous deny settings. (new PermissionSet(System.Security.Permissions.PermissionState.Unrestricted)).Assert(); AS A TEST I have put this code ...Show All

  • Software Development for Windows Vista What are the important changes in WWF Beta 2 relative to WWF Beta 1?

    What are the important changes in WWF Beta 2 relative to WWF Beta 1 Michael - you can get it from Paul's blog post - here http://blogs.msdn.com/pandrew/archive/2006/01/19/UpgradeWFBeta2.aspx ...Show All

  • Visual Studio 2008 (Pre-release) How to develop a portalUI like that in "http://www.valil.com/portaluitest/portaluitest.xbap"?

    How to develop a portalUI like that in " http://www.valil.com/portaluitest/portaluitest.xbap " hi, In the beta2.0,the name of MyApp class has changed to 'App' ...Show All

  • Visual Studio Express Editions mspdb80.dll was not found !

    When I tried to run cl.exe from the command line, the error message I get is "Application unable to start, mspdb80.dll was not found". Can somebody help me with this Thanks, Deepak I'm running Express 2005 and the default path for the IDE directory is: C:\Program Files\Microsoft Visual Studio 8\Common7\IDE You should find it there. ...Show All

  • .NET Development Automatically detect a CD and read CD contents

    Hello all, I am trying to make a module which will do two jobs: 1. Automatically runs when a CD is inserted into the cd rom drive. 2.copies the contents on CD to any location on hard disk. I am usng C#.net 2003. Anyone please help me! Thanks http://msdn.microsoft.com/library/default.asp url=/library/en-us/shellcc/platform/shell/programmersguide/shell_basics/shell_basics_extending/autorun/autoplay_intro.asp http://msdn.microsoft.com/msdnmag/issues/01/11/autoplay/ ...Show All

  • Visual Studio 2008 (Pre-release) Enabling a button though Data Binding

    I'm using the November CTP, and am having difficulty enabling a button with Data Binding.  I've looked at code from previous CTPs, so it seems my code is right, and this should work, but I'm having no luck.   <Button x:Name="btnSave" Content="Save">     <Button.Style>       <Style TargetType="{x:Type Button}">         <Style.Triggers>           <DataTrigger Binding="{Binding Path=SaveButtonEnabled}" Value="true">             <S ...Show All

©2008 Software Development Network