Software Development Network Logo
  • IE Development
  • Windows Forms
  • Microsoft ISV
  • SQL Server
  • Smart Devicet
  • Visual C#
  • SharePoint Products
  • .NET Development
  • Audio and Video
  • Game Technologies
  • Windows Vista
  • Visual Basic
  • Visual FoxPro
  • Visual C++
  • Visual Studio

Software Development Network >> Jonathan Wong's Q&A profile

Jonathan Wong

Member List

thegreat1
DD_Helmetman
Jacco Mintjes
friggityfraggity
Karlo
Young K
Sunchaser
Suran
chaza
mig16
Anabhra
sun919
Kapil Aggarwal
kirillkin
Ben Santiago
ecsinusa
IvanVC
Tewari
MattJGrant
moreOncoding
Only Title

Jonathan Wong's Q&A profile

  • Visual Studio Team System Test Manager Window not available VSTE for Software Developers?

    I have installed the release version of Visual Studio Team Edition for Software Developers and can no longer find the Test Manager Window menu item.  I see Tests View, Test Results, etc.   Is this a feature that is not included in this version Earlier today Ekobit ( www.ekobit.com ) released “ Test Manager Add-In for Visual Studio Team Edition for Software Developers ”. This Add-In makes it possible for developers to manage the lists of tests, build hierarchies and execute tests from the Team Edition for Software Developers just the way they would be able to do using the Test Manager window if they had Team Suite. Being a VSIP package, Test Manager Add-In is seamlessly integr ...Show All

  • Visual Basic baby lock

    Hi, i got a couple of questions according to how to disable things in win xp: I'd like to disable the net connection on xp - how can i do that how can i disable installing any program disabling themes disable running several programs disable access to several folders I'd like to write a baby-lock onto my computer because i'm not the only person who uses it, and i don't want to allow others to get full control on my pc. i am working with vb2005. Any feedback is appreciated, thnx Attila Attila Fogel, I guess some of your projects need the Lock functions added. However, the Windows Operating System has provided enough kinds of Lock methods for you. Just use them directly because it is save time and w ...Show All

  • SQL Server framework 1.1 update + ssmse: get warning!?

    Hello, friends, here is my problem: I installed sql server express on a naked Windows xp pro with SP2; of course, framework 2.0 installed, and MS-installer 3.1 installed as well. I also installed ssmse. Everything worked fine. Then I installed all windows updates via Windows Update in internet. Now suddenly, when starting ssmse, I get a Warning Textbox with Header "Microsoft SQL Server Management Studio Express", then the yellow triangle with the exklamation mark, but NO TEXT AT ALL, and the OK-button. So unfortunately, I do not know what to do. Only thing I found out was, that in all updates, the culprit surely is framework 1.1 update. Before installing this, everything worked fine, afterwards, well, see above. When I click the ...Show All

  • Visual Studio Express Editions Compilers: Visual Studio Vs Turbo C++ for DOS version 1.01

    Hi I have a code that compiles using Turbo C++ for DOS version 1.01 from http://community.borland.com/article/0,1410,21751,00.html What is that I need to do so that it cmpiles on Visual Studio as well When I tried it needed some *.h files. I copied them (from the Turbo C environment) and put it in there - now it says "no compiler tool is associated with the file extension" I am not happy with the Turbo C++ for DOS version 1.01. That is why I am trying it on Visual Studio - could someone offer help so that I can make it to work Thanks You are trying to compile a file that has an extension that is not recognize by any of the compiler tools - therefore the IDE does not know what to do with it. Cou ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Do render targets have to be the same size as the back buffer?

    Hi, I have a render target set up as: screenBuffer = new Texture2D(graphics.GraphicsDevice, 1280, 720, 1, ResourceUsage.RenderTarget, SurfaceFormat.Color, ResourcePool.Default); When the back buffer is set to 1280,720 (the same size as the render target) the code below works and the screen displays a blue background as expected. //Set device to render target graphics.GraphicsDevice.SetRenderTarget(0, screenBuffer.GetSurfaceLevel(0)); graphics.GraphicsDevice.Clear(Color.Blue); //Set the render target to the back buffer graphics.GraphicsDevice.SetRenderTarget(0, graphics.GraphicsDevice.GetBackBuffer(0, 0)); graphics.GraphicsDevice.Clear(Color.Gray); //copy the (scaled) screen buff ...Show All

  • Visual Basic SQL STATEMENT Select, where * problem

    I have what appears to be a simple query but I have having major problems The Query that works is: SELECT * FROM Mutual WHERE (Ticker = 'axiax') When I change it to the following it does not return any results: SELECT * FROM Mutual WHERE (Ticker = 'ax*') I think I have tried every combination of "" and spaces and can't get anything to work. I am running Visual Basic 2005 Express Edition, SQL Server 2005 Express, and it is a Access 2003 database (.mdb) Please help. This is my query, the problem might be here. SELECT symbol, lcg, lcb, lcv, mcg, mcb, mcv, scg, scb, scv FROM shortfunds WHERE Symbol = @symbol This is the error I get here. 'Unable to Parse query t ...Show All

  • SQL Server Unable to install SQl Server 2005 SP2 - Unexpected error

    I am trying to install SQl Server 2005 SP2 but it was throwing an unexpected error when trying to install "setup support files". O/s: Windows Server 2003 SP1 Product: SQL Server 2005 Standard Edition Log file shows: +++++++++++++++++++ === Verbose logging started: 2/20/2007 16:05:42 Build type: SHIP UNICODE 3.01.4000.2435 Calling process: F:\SQL2005sp2\hotfix.exe === MSI (c) (74:68) [16:05:42:635]: Resetting cached policy values MSI (c) (74:68) [16:05:42:635]: Machine policy value 'Debug' is 0 MSI (c) (74:68) [16:05:42:635]: ******* RunEngine: ******* Product: C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\Cache\SQLSupport\x86\1033\SqlSupport.msi ******* Action: ******* CommandLine: ********** MSI ...Show All

  • Smart Device Development can't find PInvoke DLL 'winmm.dll' !!!

    i adapt code from window application to device application template. the problem i found is i can import "winmm.dll" (P/Invoke Library)in a window app. and i can run it practically,but when i run on deviceapp. it has an error that "MissingMethodException was unhandled" and "can't find PInvoke DLL 'winmm.dll' " what should i do i use C#.NET ,vs 2005 and hp ipaq hx2400 series to run this device app. pls.. Refer this link. It can contain useful information to you. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=711697&SiteID=1 ...Show All

  • .NET Development Login failed

    I tried the following code Sub CreateDataAccessObjects( ByVal db As Database) ' Create relational datasource Dim ds As New RelationalDataSource( "THYROID" , "THYROID" ) ds.ConnectionString = " Integrated Security=SSPI; Provider=MSOLAP.3;Data Source=localhost;Initial Catalog=THYROID" db.DataSources.Add(ds) ' Create connection to datasource to extract schema to dataset Dim dset As New DataSet() Dim cn As New SqlConnection( " Integrated Security=SSPI; Data Source=localhost;Initial Catalog=" & CbDatabase.Text) ' Create the customers data adapter with the ' calculated column appended Dim daCustomers As New SqlDataAdapter( &quo ...Show All

  • Visual Studio Team System Missing TFS Reports

    I can't seem to find the Exit Criteria, Fix and Fix Bug Rates, and Quality vs Velocity reports when I create a project or download a process template. These reports are listed on the TFS product page as available reports with TFS RTM. Our setup is TFS RTM from a B3R installation. I checked the B3R process templates, and it did not possess the noted reports either. Should these reports be available with the install of TFS RTM Dennis,   Thanks for your reply.   The noted reports are missing from projects that were created pre and post RTM migration. It's simple to upload the reports if I could find the RDL for the missing reports. When I dl the process templates for CMMI or Agile 4.0, the not ...Show All

  • Windows Forms How Do You Embed A Sound File?

    I have a program with in which I wish to have music to play in the background. I want to embed it. SIMPLY. In the form.cs if possible. Try This using System.Media; private void PlaySound() { SoundPlayer myPlayer = new SoundPlayer(@"c:\MySound.wav"); myPlayer.Play(); } ...Show All

  • Windows Forms How to create usercontrol with a look up combo? The microsoft example does not work.

    Hi, I look at the the example available on msdn walkthrough http://msdn2.microsoft.com/en-us/library/ms233787.aspx for my requirement but it does not work for me. I am using VS2005 Pro on XP SP2 + SQL 2005 express. In my case the combo gets pupulated with data from the look up table but it does not change as I scroll through the work table. If I manually set the LookupMember property using Advanced data bindings, then it works fine. But I want to know why the code as shown on the site does not work But then there is another issue. Even if I put the control on the form, and set all the proprties, the next time i open the form, i get following error: Cannot set the SelectedValue in a ListC ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Torque X and C#

    I was messing with Torque Game Builder and it seemed pretty cool, altough maybe a little TOO controled So here is my question, is it possible to take code from Torque X and edit it with C# It was my understanding taht Torque X will no longer use TorqueScript, but C#. Maybe I'm wrong. But it's what I'd actually prefer. ...Show All

  • Visual Studio Express Editions application reaction to dll broken reference

    I have created a class library which i include as a reference in another project , when I run my application from an exe file and the dll is missig, on an error prompt there is an option to continue despite the mising dll. I would like the application to shut down when the dll is missing without the possibility to continue , how should I do that Hi, I've browsed through the web and bumbped through this sample. http://www.codeproject.com/csharp/addrefvsnet.asp This sample code has a CheckReference with it. It checks if a reference exists. Maybe you can use that to check if all of your references are present upon loading your project... cheers, Paul June A. Domag ...Show All

  • Windows Forms VS2005 MyApplication_Shutdown not getting fired.

    We are developing windows application in VS2005 (VB.Net). I have placed resource clearing and audit entry in the "MyApplication_Shutdown" event. But this event is not getting fired when our application exits. When I tired with the sample application, in our system it works fine. I don't know whether I have disabled any setting so that this event does get fired. Note: I have checked application framework checkbox in application settings. Looking at the WindowsFormsApplicationBase class, the Shutdown event is fired right after Application.Run() exits. Not seeing this event means that Application.Run() doesn't exit normally. The only thing I can come up with: an unhandled exception. Do you trap the UnhandledException event ...Show All

©2008 Software Development Network