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

Software Development Network >> Tom Hollander's Q&A profile

Tom Hollander

Member List

Scherild
Jesper Ekenberg
Allan Huang
MarcoSartore
Evan Mulawski
Dylan Beattie
Deuce BOI
Ecroton
Daniel Hawkins
minigendo
Mark Asztalos
Orellang
Carl Daniel
SufferTheFools
Speedie
DKB
Sanjaya Yapa
davidsp8
JJ Unbreakable
Steev
Only Title

Tom Hollander's Q&A profile

  • Visual Studio Error while building the vb.net 2005 project

    While I am building my solution in vb.net 2005 it giving a message as mentioned bellow Error 3 Unable to copy file "C:\Documents and Settings\****\Documents\Visual Studio 2005\Projects\LTS\MyLib\bin\Debug\MyLib.dll" to "bin\Debug\MyLib.dll". The process cannot access the file 'bin\Debug\MyLib.dll' because it is being used by another process. LTS Actually it was running fine until yesterday. Today it starts to give this problem. Please help me to solve this problem. Thank you Did you reboot your computer and retry If you were debugging and left a debugger window open you would see this issue. Since it is transitory, that is you see the problem today and not yesterday, it is probably a running ...Show All

  • Visual Studio Express Editions Stopwatch Questions

    Hey all I have some questions about a stopwatch app that i am working on, first here is my code: Imports System Imports System.Diagnostics Imports System.Windows.Forms Public Class Form1 Dim StartTime As Date Dim EndTime As Date Dim stopwatch As New Stopwatch Dim miletime() As Date Dim mark As Boolean = False Private Sub btnStart_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnStart.Click StartTime = Now stopwatch.Start() End Sub Private Sub btnStop_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnStop.Click EndTime = Now stopwatch.Stop() End Sub Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.Eve ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. What's the correct way to do rendering in a new thread in XNA (especially on XBOX360)

    Hi, in a project I need to do rendering in a new thread (not in overide draw() method) The thread function is like this: private void RenderThread() { for (; ; ) { graphics.GraphicsDevice.Clear(Color.CornflowerBlue); //Copy any parent transforms Matrix[] transforms = new Matrix[myModel.Bones.Count]; myModel.CopyAbsoluteBoneTransformsTo(transforms); //Draw the model, a model can have multiple meshes, so loop foreach (ModelMesh mesh in myModel.Meshes) { //This is where the mesh orientation is set, as well as our camera and projection foreach (BasicEffect effect in mesh.Effects) { effect.EnableDefaultLighting(); effect.World = trans ...Show All

  • Visual Basic How to pass a dataset to a web service

    hello there guys! i wanna ask a question which bothered me a lot! and this is it. is it possible to pass an untyped dataset from a client application to a web service and how thanks in advance! i just badly need to know passing untyped datasets from clients to web service since it returns argumentnullexception error or nullexception error. thanks! On a webservice named Test create this sub: <WebMethod> Sub PutData(MyDataIN as DataSet) 'do something with the dataset End Sub On a client application that has a reference to the web service do this: Test.PutData(YourDataSet) Simple :) ...Show All

  • SQL Server Assembly not found in SQL Catalog for VSS

    I'm trying to connect to VSS from my CLR procedure. I'm getting this error.. Assembly 'microsoft.visualstudio.sourcesafe.interop, version=5.2.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a.' was not found in the SQL catalog. I added reference to VSS dll by opening the project file in notepad, as I couldn't right-click and do an add reference. Here's the code... using System; using System.Data; using System.Data.SqlClient; using System.Data.SqlTypes; using Microsoft.SqlServer.Server; using Microsoft.VisualStudio.SourceSafe.Interop; public partial class StoredProcedures { [Microsoft.SqlServer.Server.SqlProcedure] public static void PrintToday() { try ...Show All

  • Software Development for Windows Vista Exception handling in ExternalDataExchange services

    What is the recommended way of dealing with exceptions that occur during the handling of ExternalDataExchange events As the events are processed asynchronously by the runtime, there seems to be no way of the calling application (the host) being informed that the event has not been succesfully processed. For example: I have a custom HandleExternalEventActivity that continually listens for activity updates within an EventHandlingScopeActivity (see this post http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=807117&SiteID=1 for more info). This custom "HandleActivityUpdateEventActivity" will throw an exception if the ExecutionStatus of the named activity has a value of ActivityExecutionStatus.Closed (completed activities are n ...Show All

  • SQL Server Where is install for SQL Server 2005 Mobile, Cofigure Web Synchronization Wizard???

    I have something called Configure Web Synchronization Wizard under my SQL Server 2005 Mobile Edition on my XP machine. My problem is that I need to install it on a Windows 2000 machine and I can't find the installation package for it. I installed SQL Server 2005, which installed SQL Server 2005 Mobile Edition, but I didnt' get the wizard. I also installed Visual Studio 2005. Anyone know where it is In SQL Server 2005 Management Studio, create a publication (right click on the Replication node in the Object Explorer and choose New Publication). Then right click on the publication and choose Configure Web Synchronization. Darren ...Show All

  • Smart Device Development How to deploy to Windows CE .NET 4.2 Device a project from VS2005

    So the problem is that when I deploy the test project on my Windows CE .NET 4.2 device, VS2005 allows me only "Pocket PC 2003 Device" and "Windows CE 5.0 Device". I select "Windows CE 5.0 Device" and in a minute receive a message on the device screen: "The program is not compatible with the current operating system and therefore may not run on this device. Do you want to continue installation ". And the question is: how to deploy program to my device What can I do to make VS2005 display the option "Windows CE 4.2" in the target list Please see this: http://groups.google.com/group/microsoft.public.dotnet.framework.compactframework/browse_frm/thread/c49e1 ...Show All

  • .NET Development find .net version

    hello, Is there some way to find out what version of .NET is installed I've seen spots where people just cycle thru the three versions (1.0, 1.1, 2.0) to check, but I would like something where you don't know the number, so that it could work just as well for 4.0 as it does for 2.0. I'd like to be able to do this in Visual Basic. Thanks for any help. VBS in Windows (like WSH scripts) or VBS in an ASP application Depending on which we're talking about, you might have to tap the registry at the key I pointed to earlier. But be aware that multiple versions of the runtime can be installed on a single machine. Perhaps it would be more helpful if we knew more details about what you were trying to do. ...Show All

  • Visual C# Using html in C# code

    Is there a way to use html in a C# application I would like to use html in my app without having to use + quote + a few hundred times. You question is a little bit ambigious, What do you mean by using HTML in C# code Do you need to Show HTML from any source OR you Need to GEnerate HTML using code and then Show it What do you mean by + quote + IS it " "..... Sorry but you question doesnot explain much. Let me try to answer your question :), If you need to Display the HTML, you can use BrowserControl and load your pre build HTML in it using Navigate function.. If you want to load and HTML from any wehpage on the Web you can load it in the same way as above. YOu want to genera ...Show All

  • .NET Development Remoting, Event Handling

    Hey Guys, I have a problem that not even research is seeming to help me solve. It is an issue with Remoting with C#. I am trying to figure out how to write an event handler for when a connection is made my server so i can just get the ip address of the remote computer. I would greatly appreciate it if you could help me here. the RemoteEndPoint also contains the remote port they connected on.. using Port instead of address .. ie (( IPEndPoint )client.RemoteEndPoint).Port.ToString()); ...Show All

  • Audio and Video Development WMF downloads

    I know this is a really beginer question, but I've not found the aswer anywhere else... What do I need to develop with de WMF, is there any SDK, DLL, etc needed I'm using windows Vista Ultimate, and Visual Studio 2005. Thanks What you want is the Windows Vista SDK ( http://www.microsoft.com/downloads/details.aspx FamilyId=C2B1E300-F358-4523-B479-F53D234CDCCF&displaylang=en ). Good luck! ...Show All

  • Windows Forms save control user to xml file

    hi, i want to know how can i save user control like textbox (i want to save the textbox as a control user not the value of the contorl ) in a xml file and when i press button named load from xml file he load the textbox on the from (ie. create the textbox) please any one help me thanks, Hi sir: I have create a demo for adding controls in form load event as follows; for ( int i = 0; i <= 3; i++) { TextBox TB = new TextBox (); TB.Location = new System.Drawing. Point (42, 20*i); TB.Name = "textBox" +i.ToString(); TB.Size = new System.Drawing. Size (80, 20); TB.TabIndex = i; this .Controls.Add(TB); } and if you want using xml , we ...Show All

  • Windows Forms ComboBox in DataGridView, setting the combo box's values accordingly to each row

    Hey all, I have a DataGridView control and a comboBox column. I managed to populate the comboBox's items from my database but I dont know how to set the appropriate value to it according to its row in the dataGridView. some more explanations for my problem: The dataGridView represents a Patients table and each patient has a Contact, I'm displaying this contact by a comboBox. Each patient has a ContactID field which tells which Contact belongs to this patient. So I want for each row in the dataGridView to set the comboBox's valueMemeber field to the ContacID field of this row. The tables are: Patients(PID,name,phone, ContactID ) <-- The DataGridView represents this table Contacts( CID ,name,phone) ----------------- ...Show All

  • Visual C++ DumpBin can't find mspdb80.dll

    When I try to start DumpBin, either from the command prompt, or by clicking the filename in Windows Explorer, I get the message "The application has failed to start because mspdb80.dll was not found..." DumpBin is in C:\Program Files\Microsoft Visual Studio 8\VC\bin, and mspdb80.dll is in C:\Program Files\Microsoft Visual Studio 8\Common7\IDE, and also in C:\Program Files\Common Files\Microsoft Shared\VSA\8.0\VsaEnv. What do I have to do to get DumpBin to operate Did you try opening a VS command prompt and then call dumpbin.exe Without setting the path correctly, you will get this error message The VS command prompt will set for you the needed environment setting. Thanks, Ayman ...Show All

©2008 Software Development Network