Timmy0614's Q&A profile
Game Technologies: DirectX, XNA, XACT, etc. Using Non-XBox 360 Controllers
As far as I can tell the XNA framework doesn't allow me to use controllers other than the XBox 360 gamepad. In future releases of XNA will the use of other controllers be possible If not, then the framework is fundamentally flawed for those wishing to make games for windows. gmcbay wrote: If anybody is interested in using a non-Xbox 360 controller with the Spacewar starter kit, I have a modified version of the GamePadHelper class that supports generic controllers, using the old school Windows Multimedia library calls via PInvoke. You're my hero, man. You're my personal hero. I've been complaining about the lack of DirectInput ever since I learned about it. Side note: Leo's link doesn' ...Show All
SQL Server MSreplication_agent_status in sql server 2005
Is this table still residing in tempdb in 2005 I have created replication but the server doesn't have this table anymore ...Show All
SQL Server Web Synchronisation Throuth SSL
hi, i have done Web Synchronisation Using RMO , where i have an remote server at a remote place, where the Virtual Directory is Configured With SSL, for testing purpose if i access from the Client Computer entering http://72.17.246.214/SyncAbita/replisapi.dll diag " in the address of IE giving an errormessage "Unable to Reach Remote Host", if i remove SSL on the Server , i am able to access "SQL Websync diagnostic information" Page from the Client Machine, is it not possible to get perform Web Synchronisation With SSL, then i have inStalled 7 days Trial Version SSL on the Sever. Can any body help me out on this Issue i had mismatch of machinename in the certificate and that one i was using in url , but ...Show All
Windows Search Technologies WDS maxes the CPU on on terminal server
We're trying WDS 2.6.5000.5378 on a terminal server. We are having two problems which I'm hoping to get some advice on before I'm forced to look for a new corporate search solution. 1. WDS has the Backoff feature which stops it from indexing while the desktop is in use. However, the backkoff feature doesn't appear to take total CPU time into account. If a user session is inactive for some time the WDS indexer will run and devour the CPU. The TS has no CPU cycles for the remaining users actively in their session. Is there a way to limit the CPU utilized by any process instance of WDS indexer This is particularly a killer after initial install and index. 2. Even if we limit WDS to indexing Outlook the index files are large. Our stan ...Show All
Internet Explorer Development Creating tables on the fly with DOM methods... are special table methods required?
I haven't been able to find a whole lot of documentation on this issue. I know the special methods for creating and manipulating tables in particular exist, for example thead = tableObj.createTHead(); supposing the existence of a table object reference tableObj. How do these special methods compare to the generic var tbl = document.createElement("table"); var tbody = document.createElement("tbody"); tbl.appendChild(tbody); ... etc Apparently both sets of methods belong to the DOM Level 1 specification, so is there a more 'right' way to do things And has this issue been discussed or documented online somewhere I must not have found yet Thanks very much for your help. ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Reference rasterizer
My graphics card doesn't support Pixel and Vertex shader so i won't be able to do anything interesting with XNA, it's what i have heard. So i started thinking: will i be able to utilize the reference rasterizer (only to learn XNA) XNA supports reference rasterizer in addition to the HAL rasterizer I tried to add the ModifyDevice event, but it never was fired... in fact not before the device is created and the exception thrown... ...Show All
SQL Server Date not evaluating in an expression
I have been looking all over for some info about other people having this problem, but haven't found anything. I have a package that needs to download a dated file from an ftp site. I am using a couple script objects to set variables, and one of them is the filename based on the date. I use an expression to get the date: @[User::varFileName] = (DT_WSTR,4) Year( GetDate()) + (DT_WSTR,2) Month( GetDate()) + Substring((DT_WSTR, 29) GETDATE(), 9, 2) Everything works really well when I am debugging it locally. However once it is on the server or even once I come back to it in a day or two, I am still seeing the old date. I thought it might be because my variable needed to be set to evaluateexpression = true, however once I did this ...Show All
Visual Studio Express Editions Checking if a word contains a vowel
This program converts words into pig latin I need to add code where if a word does not contain a vowel it adds "-way" to the word. I need some help. Your suggestions are appreciated. is this what you want to do Dim i As Integer Dim foundvowel As Boolean word.ToUpper() For i = 0 To word.Length If word.Substring(i, 1) = "A" Or word.Substring(i, 1) = "E" Or word.Substring(i, 1) = "I" Or word.Substring(i, 1) = "O" Or word.Substring(i, 1) = "U" Then foundvowel = True Exit For End If Next If foundvowel = True Then word = word & "-way" End If ...Show All
SQL Server SQL2005 Database Service fails OWC11 Setup Failure --missing 4c483c.msi--HELP please!!
Hi all, I had to uninstall SQL2005 Service, client-tools & BI studio applications on my laptop running XP SP-2. Now, I'm trying a fresh install, a simple install of >>just<< the 2005 DB service is failing. Snippet of log file------------------------- MSI (s) (F8:80) [22:35:02:484]: Machine policy value 'DisableUserInstalls' is 0 MSI (s) (F8:80) [22:35:02:484]: Warning: Local cached package 'C:\WINDOWS\Installer\4c483c.msi' is missing. Snippet of log file------------------------- CSetupBootstrapWizard returned 1 <EndFunc Name='DisplaySCCWizard' Return='0' GetLastError='183'> Failed to find help file for LCID :3081 Loaded DLL:C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap\sqlsval.dll Version:2005.90.1399.0 & ...Show All
Software Development for Windows Vista CoImpersonateClient() across Integrity Levels
Hello all, I have an app that runs elevated that talks to an unelevated app via COM. I want the COM servers in the unelevated app to be able to impersonate the elevated client to perform certain file operations with full admin rights. Whatever CoInitializeSecurity() parameters I have been trying to apply on the client does not give the server appropriate rights ending with ERROR_BAD_IMPERSONATION_LEVEL error when it tries to work with a file after CoImpersonateClient() call. I can foresee that something like a Mandatory Label SACL needs to be applied to the client, but I cannot find any documentation in that regard. Anyone has any ideas Thanx in advance, AlexC So, can anyone confirm that this is not possi ...Show All
Smart Device Development Regarding ListView Control
Hi, I'm developing smart device applications by using CF 1.0/2.0. I have a questions about ListView Control. The question is "How to draw an image on the background of the ListView Control ". Please Send your suggestion or links. Thanx. M. GANESAN ...Show All
Windows Forms Printing Windows Forms
I'm having trouble centering my printed windows form on the paper. I can change the paper orientation from portrait to landscape with no problem but can't seem to get it to center to the page - it always wants to print off the the lower right. I've got my margins (left/right/top) set to 0 but change. This is a VB.NET 2003 app and the print command comes from the menu of the mdi for the app. Any help would be appreciated. For your consideration: Private WithEvents pd As Printing.PrintDocument (this is from within the mdi_Load) pd = New Printing.PrintDocument pd.DefaultPageSettings.Landscape = True pd.DefaultPageSettings.Margins.Left = 0 pd.DefaultPageSettings.Margins.Right = 0 pd.DefaultPageSettings.Margins ...Show All
.NET Development emailing from vb.net application
i would like to add an email to customers option in my point of sale application. which sends html mails or greetings to customers automatically based on the information from database.it should also have an option to edit the html template which i have designed. if anyone can help me out the steps i should follow will be helpful The System.Net.Mail namespace includes much of what you need (assuming you are targeting the 2.0 framework). When it comes to how to do it, take a look at the code sample and info here , it's a pretty simple and straightforward operation. ...Show All
SQL Server Trying to export a global temp table using SSIS.
Senerio: I have to extract data from a read only table using a globel temp table then export it to another OLE DB connection or to a flat file. But in the new SSIS packages it does not allow you to do thisusing the global ## symbols in front of a table name. How do I get around this Thanks Daeseong Han wrote: Hi Jimmy. On the SSIS menu in BIDS, select 'Work Offline'. Change SQLStatementSource property of Execute SQL Task to create a local temp table instead of global. Change SQLCommand property of OLE DB Source to use the local temp table instead of global. You will have to use the Properties window to do this because if you try to do it in the ...Show All
.NET Development Call to Web Service using HTTP GET does NOT work
Hi, I hope this is the correct newsgroup for this question. I have failed to find answer so far despite extensive searching. I am creating a test web service that I wish to extend. The example I am working from suggests that Web Services can be called direct using HTTP GET, eg: http://server/webServiceName.asmx/functionName parameter=parameterValue However when I try this I get the following error: Request format is unrecognized for URL unexpectedly ending in '/functionName'. It works fine if I first call the service, click on the public method and then invoke. I am using IIS5.1, VisualStudio2005 and .NET 2.0 What am I doing wrong (I even tried altering the IIS settings without success) Thanks in advance A ...Show All
