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

Software Development Network >> happy we tod's Q&A profile

happy we tod

Member List

TheLe
Suricate
Bugge
P.J.Ganesh
Naim001
CrispinH
Sir_K
allen_xu
sakthiG
rroot01
markgkda
totoro_msdn
IsabelleAM
DMahalko
SachinG
Bill Dafon
JKRAFT PIT Rep
Conker
Foster Hardie
foobarX
Only Title

happy we tod's Q&A profile

  • Visual Basic winform in ie? possible?

    Hi... Can I have a winform and display it in IE I can assume users will have .net framework 2.0 installed. Alan, anything that allows me to have a designed winform displayed in IE would work.... ...Show All

  • Visual Studio Tools for Office "send email" button in MS word

    Hi guys! Is there anybody here who knows how to add a button in a Microsoft Word document Then when I click the button it sends an email with the document as attachment. Thanks. Looks interesting! will give it a try and let you know. Regards Pavan ...Show All

  • Visual Studio Team System Can't Install TFS RC on a Domain Controller???

    We can no longer install TFS (RC) on a domain controller This worked in earlier betas and CTP versions. But now I'm told with the installer that this is not a supported configuration, yet the installation guide talks about installing on a DC. I wasted all this time setting up the DC system and get to the point of running TFS install and am told I can no longer do this I've seen Microsoft respondents in the past indicate that you can install on a DC in these forums. What is going on here This is annoying. Due to the issues involved in installing and setting up TFS to work on a Domain Controller, we ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Using the Plaform SDK with Visual Studio.Net 2003

    I wish to use the "Windows Server 2003 SP1 Platform SDK" with Visual Studio.Net 2003 This is because the DirectShow software has been moved from the DirectX SDK to the Platform SDK (and I wish to use the latest 'august 2005' version of the DirectX SDK and also DirectShow, so I need both SDKs installed) My problem is that having registered the Platform SDK's directories with Visual Studio, a re-compile of my previously working c++ code now generates the following error. c:\Program Files\Microsoft Visual Studio .NET 2003\Vc7\atlmfc\include\atlsocket.inl(26): error C3861: 'FreeAddrInfo': identifier not found, even with argument-dependent l ...Show All

  • .NET Development Writing to CD

    Hi, How can I enable the Windows 'Send to' method in my program, so that customers can send write their data to a CD Thanks. You can use the wizard if all the requirements are met: OS > XP, cd burner drive installed, burning allowed on the drive, IMAPI service running... Given all that, you need to get an ICDBurn interface which can talk to the MSDiscMasterObj that deals with CD burning. For this you have to define the interface, then create one with Activator.createinstance. When you call the interfaces Burn method, it will pop up the wizard and take the user through burning the contents of the st ...Show All

  • Software Development for Windows Vista async CreateFile()

    Hello, I don't see the async file open fn in documentation. Why it is still not implemented Thanks, Dmitry Dmitry, it isn't clear what you are asking for, can you explain some more what you are expecting and where you expect it ...Show All

  • Visual Studio Express Editions Intellectual Question??

    Hi There Below Is a Is a Generated VB Simple Program. - A Windows Form with a Rich Text Editor Control loaded with the Text - "Hello World Without A Printer"....... < Global .Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _ Partial Class Form1 Inherits System.Windows.Forms.Form 'Form overrides dispose to clean up the component list. <System.Diagnostics.DebuggerNonUserCode()> _ Protected Overrides Sub Dispose( ByVal disposing As Boolean ) If disposing AndAlso components IsNot Nothing Then components.Dispose() End If MyBase .Dispose(disposing) ...Show All

  • .NET Development Update???

    cString = "Update tblWatchInstance SET 'EstimateApprovedBy' = txtApprovedBy.Text WHERE tblWatchInstance.WatchID LIKE '%" + txtWatchID.Text + "%'" conn = New SqlConnection(ConnectionString) conn.Open() CMconn = New SqlCommand(cString, conn) CMconn.ExecuteNonQuery() I am trying to update my table...but there seems to be some sort of system error exception that i get can anyone look at my code sample and see anything wrong...well i know something is wrong but what any help would be marvelous Best way to avoid this missing quote is to use parameterized query. It will help you not just to av ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. linker problem

    I'm making my first DirectX program and when I try to compiler I get this error: DirectX Test error LNK2019: unresolved external symbol _DirectDrawCreate@12 referenced in function "bool __cdecl init(struct HWND__ *)" ( init@@YA_NPAUHWND__@@@Z) and it point to this line in my code: hr = DirectDrawCreate( NULL, &g_pDD, NULL ); hr is a variable of type HRESULT and g_pDD is a var of type LPDIRECTDRAW please help It is recommended to not longer use DirectDraw. You should use Direct3D instead: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=76924&SiteID=1 Your linker problem occurs beca ...Show All

  • Visual Studio 2008 (Pre-release) What happened to ServiceHost.Throttle

    The title says it all really.  The ServiceHost generic used to have a property named Throttle which allowed setting of no. of concurrent threads and so on, but this has now disappeared/moved. Anyone know where it went David David, I've posted a rough draft of the reference documentation for ServiceThrottlingBehavior at http://blogs.msdn.com/ralph.squillace/archive/2005/12/12/502887.aspx . Any errors, let me know. :-) I'll update the post as information becomes available. ...Show All

  • Visual Studio Team System Avg. Response Time

    Hi, I am running a load test containing webtests. Each webtest has one webservice request. The avg. response time of each request is aroung 12msec(0.012sec). I see a counter "% Time in Webtest Code" which shows around 45%. My question is if the avg. response time also includes the time spent in the webtest code . If this is the case, is the actual response time 12msec - 5.4msec(45% of the total avg. response time) Please advise. Thanks, The reported response time is just the time between submitting the request and receiving the response from the server. So, the actual response time for the requst is ~12 ...Show All

  • SQL Server How to get SQL Server 2000 data files location?

    Hi. Is any way to get SQL Server 2000 data files location using TSQL Thank you for your answer. I have already considered this variant, but using a little other request: select top 1 filename from model..sysfiles. This is not very simple approach, becase then one must parse the path name and remove file name part at the end. Well, if it is the only way to get result, I'll use it. ...Show All

  • Windows Forms How2 - Drag&Drop onto a From without using Controls

    Hi, I am trying to create a dropzone form which is completely blank (No controls) so that I can drag and drop any file from the desktop onto the form which then moves the file from the desktop to the directory c:\dropzone All I can find so far is drag and drop with controls not just the form. Can anyone help with the VB.net code now I have never used an empty form as a drop target, but a form is a control. If you can drop on any control, you can drop on a form. If you have sample code that drops on control 'A', change that code so control 'A' is your form. ...Show All

  • Windows Forms Is this Bug???

    Hello~~ I tried to execute the method by function key in the keydown event of the form. 1. in the Form :  KeyPreview = true 2. Form KeyPress event : e.Handled = true; 3. Form KeyDown event : MessageBox.Show("keydown event"); At first, after the form is load, even though I key in the function key ( ex. F5 .. ), It's showed the messagebox of th ...Show All

  • Windows Forms percent

    can't we use a percentage as width/height value for controls (and for fonts) and if not what is the solution to get the same screen for 800 x 640 , 1032 x 764, 1600 x ..... and so on  not depending on the screen size  Percentage layout isn't natively supported.  Conceivably, you could write your own layout engine that supported& ...Show All

©2008 Software Development Network