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

Software Development Network >> Williamq's Q&A profile

Williamq

Member List

Argenta
encoded
SillyMS
Mr_White
David d48701
needforhint
thomaskremmel
Deanrm
mickdelaney
streetlightman
A kid
garyvdailyware
ijrr
Vijay Guru Prasadh
QuinDennis
R.Tutus
mcmathys04
LiquidAsh
ramraja_55
aguess
Only Title

Williamq's Q&A profile

  • SQL Server JDBC Driver setMaxRows documentation error

    The javadoc for statement.setMaxRows(maxROWS) reads: "Sets the limit for the maximum number of rows that any ResultSet object can contain to the given number. If the limit is exceeded, the excess rows are silently dropped. " In fact, it seems that the driver calls set rowcount MAXROWS on the connection. While this superficially will work, if your query manipulates records sets that exceed MAXROWS, the subqueries will also be limited in their size. And this is not what you expect. The javadocs suggest that it is only the result that is truncated. Silently. It seems that setFetchSize is more appropriate. I am using a relatively recent jar (248KB). I hope that somebody finds this useful and that the development team will adjust ...Show All

  • .NET Development Problem Making Requests to a non-.NET Web Service

    I'm attempting to utilize a web service written in something other than .NET. (Not sure what it is... probably J2EE.) I grabbed the WSDL via VS.NET (I'm using .NET 2.0, btw) and it created the proxy classes. When I make the request the remote server just returns an empty request body. After poking around a bit I discovered that their example SOAP request and my actual SOAP request differed quite a bit. First, their namespace prefix differed from mine. Their's is SOAP-ENV and mine is of course just SOAP. I assume that's fine. But then it gets more strange. The particular method I'm calling is called makePurchase. My SOAP request, however, looks like: <soap:Envelope ...> <soap:Body> <Purchase> Their example SOAP req ...Show All

  • SQL Server Slow query when run in multiple threads

    Hi, I'm trying to stress test my web application, but when I get high load, the queries that used to take 10-20 ms starts taking 500 - 2000+ ms. Or to put it another way, when i run them single threaded i can do about 43000 a minute, when they are run in paralell it drops to about 2500 a minute. What can i do about this There are severeal queries thats affected, but here is one example: update [user] with (ROWLOCK XLOCK) set timestamp = getdate() where userid = 1'' btw: im running sql server 2005 sp 1. The stress test is run on 3 machines total (web, sql and client) the client is simulation 400 users, cliking a page as soon as the last one is loaded, ie there will always be 400 page requests. I'm not ...Show All

  • Windows Forms How to play G.711

    Hello I 'm working on a USB Audio device. When the audio format is set to PCM8, the Audio test on Windows XP are ok. But I would like to get G.711 (μLaw or ALaw), both for record and playing. Windows XP do not seem to be able to play g.711. Is there any solution to fix this bug Thanks for your answer Antoine Unfortunately, this article do not help me, but thanks anyway. It is about MP9, and I have got the 10 on my computer. So this bug should not be in this version. And the question is, why do Microsoft guy develloped the recording part and not the playing one ...Show All

  • Smart Device Development what is needed in voice streaming among pocketpc

    platform:mobile2k3 i want to build app that transit/stream voice amoung ppc. how to record sound in wav tcp/ip..... how to send wav file through tcp/ip or udp how to convert wav to bytes what is the best way to transit This is a very broad question. You need to educate yourself on audio streaming, MMS, RTSP, audio file formats, multimedia. Generic WIndows CE 4.2 and newer (not Pocket PC) has a standard VoIP implementation . Take a look at Vovida WinRTP project. It gives you an idea of how this is done. I believe some people were successful in porting it to WinCE ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. How To: Load Resources missing from help file

    Can anyone fill me in on the missing content from the help file I am trying to follow the How to: Draw a Sprite tutorial and the link to How to: Load Resources is broken. The article is also not in the index. Thanks for pointing out the broken link, we're working to catch any issues like this and feed back helps. The load resources how to was intended to merge with the simple game loop how to but wound up still being referenced. The how to went over the need to create graphics resources after the graphics device is created and additionally whenever the graphics device is reset if the resources are created in the Default graphics resource pool. For more information on resource pools you can take a l ...Show All

  • Visual Studio Express Editions Looping help

    I am very new to C++. I need help with a program that I am currently working on. The program is a basic statistical analyser which looks through datasets and find average, minimum, and maximum in the given dataset. I am using a batch file to automatically input the data into the program. The final data looks like this: 8 -5 9 13 -8 16 -11 5 -2 -7 10 0 8 9 13 16 5 10 0 -5 -8 -2 -11 -7 0 0 The idea of the program is to input data until it read a zero. For this i am using a While loops: while (x!=0) at the exit of the loop, the program then prints out the output (average, min, max). This is where I am having trouble. I want the program the continue inputing data from the last zero it finds. Thus I would get 4 different outputs. F ...Show All

  • Windows Search Technologies WDS crash under Citrix

    Hello We have 2 Citrix-Servers on W3k Standard Server. The users are connecting to the servers with ThinClients over Citrix. We have now some multiple entities: 1. The WDS does not start at logon and when the User starts it, the message "WDS isn't running" is diplayed. The strange thing is, it is running... 2. The message "The WDS index isn't working properly. To fix this problem, you'll need to restart your computer, and you may need to rebuild the index. Select one of the following options..." is displayed. 3. Application Error The exception Breakpoint. A breakpoint has been reached (0x80000003) occurred in the application at location 0x7c822583 WDS version 2.6.5 with the patch Any idea how we can ...Show All

  • Visual C++ How do you reinitialize the classes shown in ClassView.

    I have a 4 files in my project which contains about 20 classes. Only the classes in 3 of the files show up in the ClassView. This prevents me from seeing the properties for the classes in the 4th file while editing it. Thanks, John If you are using Visual Studio 6.0, Close the Workspace, Delete the .clw file exists in the project folder, Open the workspace and recreate it by Opening classwizard. it will ask you for the source file need to parsed. In Visual Stdio 2003 or 2005, delete the .ncb file. and reopen the project. This may solve your issues. ...Show All

  • Visual Basic visual studio 2005 is running slowly

    I am developing a windows application(converting vba to vb.net). some of the forms have ten or more tab controls. Each tab control has many text boxes,listboxes,radio buttons. when i change a name of the control it takes 30s ---2min. when i copy and paste some control from one form to another it takes 1--5minutes. this does not happen all the time. any solution/advice would be appreciated. navigationbar is disabled/wordwrap is disabled ms vs 2005 ver 2.0.50727 os-windows xp sp2 cpu-p4-3000mhz ram-2g machine-hp Thats doesnt sound right. See Posting http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=382602&SiteID=1 MS have have released 2 fixes that address different ...Show All

  • Visual FoxPro MS SQL Server or VFP Database???

    Hi every one, hi MVFPs, I am working with SQL Server database, but I wonder that I've got some big problem with SQL table that has more than 500,000 records. If there are about 50 connections access to that table with select, update,,, task, the SQL will become very slowly and return error message as: ....query out of time,,, or dead lock.... If I work with VFP database, there are about more 100 connections with command "use" the table, and so often tasks to seek, select, update.... but It still work well even if not too fast. And I have a VFP table with more than 1,5 billion records working hard like that. So now I don't know if I will working with VFP database or getting SQL instead because of the more security of usin ...Show All

  • Audio and Video Development UOP functionality

    Does HD-DVD technology have analogy UOP from DVD technology http://msdn.microsoft.com/library/default.asp url=/archive/en-us/directx9_c_Summer_03/directX/htm/uopvalidmethod.asp You could use a action listener for controller_key_down (and controller_key_up) and create specific actions (or no action for prohibited userop) for each remote control key in the function called by the event handler... ...Show All

  • Visual Studio 2008 (Pre-release) ADO.NET vNext August CTP is here

    Just curious - why is it that the bits Pablo is working with in the Channel 9 video have a really nice looking visual designer for entity models - and the August CTP gives us nothing but raw XML to play with and no designer What happened between then and now that yanked the designer from the bits As is always the case during development, there are a number of things we have under development/investigation which are not in a form suitable for shipping even in a CTP. The visual entity designer is one of these. We are looking at the possibility of making it and/or other tools available at some point in the future, but we don't currently have any confirmed plans. - Danny ...Show All

  • SQL Server Boolean ? in SQL (2005) table

    I was wondering what should be used for a yes/no/ entry identifier . Should it be a simple int , tinyint , or uniqueidentifier Thank you No problem: 0 --> No, False 1 --> Yes, True ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Question about installing games...

    Hello, I created a small game in Game Studio and it runs fine on my machine. I wanted to install it on my wife's laptop and it won't work. I upgraded her laptop from .Net 1.1 to .Net 2.0, the same as on my machine. I also downloaded and installed the XNA Framework Runtime. She is running DX 9.0c just the same as I am. But the game will not run on her machine. Any thoughts Thanks in advance... MagnusJ wrote: Maybe a long shot, but could it be that her PC has a less capable video chip Possibly even an older pixelshader (v1.4) Already asked - "Also, does the laptop have a pixel shader 1.1 (possibly 2.0 depending on what you're doing) or better video card If not, that's the pro ...Show All

©2008 Software Development Network