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

Software Development Network >> Jack Hoxley's Q&A profile

Jack Hoxley

Member List

Vic02
QWERTYtech
Francis Shum
Jay_Vora_b4843e
Will Merydith
Tryin2Bgood
Tony Maresca
moondaddy
dophine
Charltonn
mike11d11
Kieron Lanning
shido
Dave Waterworth
Javahar
FC-Shiro
ozhonetech
Muhsin Zahid Uğur
pinoyz
teamonkey
Only Title

Jack Hoxley's Q&A profile

  • Game Technologies: DirectX, XNA, XACT, etc. Audio works on PC but not 360

    Has anyone run into an issue where the audio works fine on the PC version of the game, but when you compile it for the 360 it does not I'm using a shared Solution, and have the content directories mirrored, and the content in the project is mirrored. The XACT file is set to copy always in the content pipeline. I see it create the banks and everything when it sends it to the 360, but there is no audio. Any help would be appreciated! The game runs fine with exception of missing audio. There are no compile errors. Other projects do work fine on the 360 with audio. ...Show All

  • .NET Development How To remove spaces in xml file resulting from the xsd

    I have transformed an xml file from xslt to my required file . After Transformation I am getting spaces between the nodes which are originally in the actual xml file and i have removed them on the targeted xml file. How Can I remove these spaces and get the proper indented xml file. My Original File is < xml version = " 1.0 " standalone = " yes " > < NewDataSet > < Table > < Title > CAD Designer/Drafter </ Title > < CreatedDate > 2007-01-12T10:14:00+05:00 </ CreatedDate > < BookNumber > 1181015 </ BookNumber > < CompanyName > R. W. Beck </ CompanyName > < ZipCode > 98113 </ ZipCode > < City > Sea ...Show All

  • Visual Basic DoubleClick Event for ListBox

      Hi All I want to select the item in the listbox when it is double clicked. But not able to figure out how to add DoubleClick Event handler to the ListBox Private Sub ListBox1_DoubleClick( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ListBox1.DoubleClick Error:Event 'DoubleClick' cannot be found how do I add the Event DoubleClick   What version of VB are you using and Make sure that the control is added using the "withevents" keyword Friend WithEvents listbox1 As New ListBox Private Sub ListBox1_DoubleClick ( ByVal sender As Object , ByVal e As System . EventArgs ) Handles ListBox1 . Dou ...Show All

  • Visual C++ trying to use localtime.....

    Hello...I'm trying to have it display the local time of the users location.....It's weird that TickCount is in Environment:: .. but LocalTime is not. How do you get it to get the local time ! Thanks. GetLocalTime returns a void you cannot initialize a string with that and you cannot pass an unintialized pointer to GetLocalTime - well you can, but... Use this instead: SYSTEMTIME st; GetLocalTime(&st); System::String^ s = System::String::Format( "{0}.{1}.{2} {3}:{4}:{5}" ,st.wDay, st.wMonth, st.wYear, st.wHour, st.wMinute, st.wSecond); System::Console::WriteLine(s); -- SvenC ...Show All

  • SQL Server ALTER DATABASE MODIFY NAME but

    Leave the file location/directory the heck alone! How do I do this Just issuing: ALTER DATABASE Old_Name MODIFY NAME = New_Name moves the mdf and ldf files to a new, unwanted location (apparently the SQL Server default as it's under program files) with the new name. Is this possible or do I have to issue the additional ALTER DATABASE MODIFY FILE statements for this Hi, ALTER DATABASE ... MODIFY FILE command modifies the names of data files of the related database. Please check the following article for also a sample on changing logical file names of SQL databases http://www.kodyaz.com/articles/change-sql-server-database-file-names.aspx Eralper ...Show All

  • SQL Server full text indexing help

    My originalquery looks like this select top 400 * from na_item_view_new where ((story_name like '%midlothian%' ) or (title like '%midlothian%' ) or (script like '%midlothian%' ) or (item_text like '%midlothian%' ) or (keyword like '%midlothian%' ) or (notes like '%midlothian%' ) or (description like '%midlothian%' ) or (clipname like '%midlothian%' ) or (creator like '%midlothian%' )) and Convert(datetime,rundown_date) >= '11/06/2006' and Convert(datetime,rundown_date) <= '02/06/2007' and type=1 and content_status=1 order by convert(datetime, rundown_date) asc This query takes like over a minute to run so I am trying to add full text indexing. to all the text fields to make it run faster and use Contains but it says I cannot ad ...Show All

  • Visual Studio 2008 (Pre-release) ADO.NET vNext Installation problem

    I attempted to install ADO.NET vNext today, but upon starting the install wizard, I was prompted with a message box stating: "Could not access network location VisualBasic\ADO.NET vNext CTP\1033\." I have previously installed the .net 3.0 framework, Visual C# express 2005, Visual Web Developer 2005, and the May 2006 Linq CTP. I'm logged in as administrator on my box, so I couldn't imagine it would be a security issue". Does anyone have any thoughts on this, or any suggestions where I might look for answers I didn't have any luck googling on Ado.net vNext installation problems. Thx for any help. I decided to look at the MSI tables with Orca.exe. I noticed in t ...Show All

  • Visual C# Is it possible to execute c# program in background

    I am writing a simulation in C# (VS 2002) preliminary estimates show that the program will run for 3-4 weeks. When the prototype runs it takes over 99% of the CPU. I would like if possible for the simulation to use limited CPU resources when the PC is in use and take over all the available resources when I am not using the PC. What are my options Thanks Alex You can try lowering the process and thread priority. You may still encounter contention for other resources (e.g., disk IO). Some other options are: - Detect user input idle period to throttle processing. Windows message processing provide a hook for this, I think. - Implement it as a screen saver (not too familiar with this) ...Show All

  • SQL Server Need help converting a CHAR into a Datetime

    I have a Database which is having a Counterdate time Column stored in the form of Char(24) But i need it to be in form of datetime so that i can use the datetime functions on it..When i use the cast or convert inside the function where i am passing this character it gives me error "Conversion failed when converting datetime from character string." I am done all permutatiions and combinations for this used Set @DE = convert ( datetime, @ts,121) Set @de = cast( @ts as datetime) BUT ALWZ give me same error.... also when i copy the whole of the data table into some other database the error doesnt come.. i converts the character into the datetime.. I DONT understand why the Server is behaving wiered.. Hoping to ...Show All

  • .NET Development Calculating with measurements

    Hi, I want to make an application which asks for example "how much is 23 centimeters in millimeters". This should be random and showed in a label and the answer should be typed in a textbox. The problem is, i don't know how to randomize the measurements and how to get for example the "23 centimeters" and "millimeters" in a string. I hope i made myself clear about what i'm trying to do. Any one any suggestion Thanks in advance! "The problem is, i don't know how to randomize the measurements and how to get for example the "23 centimeters" and "millimeters" in a string." Sorry, Stilll not clear! You need to generate Random Numbers Best Rega ...Show All

  • Visual Studio Team System Approval check-inpolicy

    Hello! Developer works on x number of filesand is ready to checkin. Before he checks it in, an approver has to approve his changes. He is not actually going through each and every file and checking for changes, but kind of getting an overview what has been changed. Once the approval is obtained, developer can checkin his changes. I tried enabling the check-in notes, but this is only on the developer's end where it's just enough to enter comments in the code-reviewr section. How can we acheive this in tfs without having to use the shelving\unshelving process Thanks! You could create a "code review" work item type, where only certain people are allowed to Resolve it, and then write ...Show All

  • Visual Basic How to detect/capture left or right mouse click

    I tried the my.computer.mouse thing, but no luck. Thanks. Provides a int that indicates which button was pressed. Private Sub Button1_MouseDown( ByVal sender As Object , ByVal e As System.Windows.Forms.MouseEventArgs) Handles Button1.MouseDown Label1.Text = Control.MouseButtons() End Sub ...Show All

  • Visual FoxPro Search Company function: Type any letters to find a few similar company names

    Hi all   I create the form to search the company name. I have the long list of company codes & names inside the table (company.dbf).   Form Designer Company Name : <Text1>   <Grid>   Code    |    Company Name     Search Command    Exit Command        For example, let say the company name is Visual Foxpro Ltd. Just type any letters such as ‘Fox’ on <Text1 > and then click on Search Command to get a few company names and u will see the result as below..   Company Name : “Fox”   <Grid>   Code    |    Company Name   FASP &n ...Show All

  • Visual Studio Interacting with Server Explorer

    I would like to make a mapping tool very similar to the mapping tool for DLinq. Is there any documentation on interacting with Server Explorer I would like to be able to drag an object from the Server Explorer window to create a shape on the diagram. Thanks for any guidance. -Daniel Actually, here's a somewhat terser post with the code needed to parse the clipboard. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=265925&SiteID=1 ...Show All

  • Visual Studio Express Editions PLEASE ANSWER THIS IMMEDIATELY

    With my VC++ it says that the iostream.h file, there is no such file or directory, but in fact i have it in the script as #include <iostream.h>. It only does this when i go to run the script. Can you help me as to why this is happening Thank you very much that helped me out a lot but i had 2 errors come up about the cout and cin are undeclared identifiers. Can you help me with this too DragonKaat PS. Thank you again PSS. Just to let you know I am a person who knows nothing of Visual basics or VC++ at all, but I'm not doing too bad. ...Show All

©2008 Software Development Network