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

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

Shodin

Member List

Darren Tao
DrJazz
mahdi
Blast
KerryLW
prenney
Huson
Maramil
renemt
FP.Three
George P Boutwell
polocar
kriti
furjaw
Dietz
SSAS_STUDENT
Ryan.Wen
Trevor E Hilder
supagu
moemen.ahmed
Only Title

Shodin's Q&A profile

  • Visual Studio Team System FxCopCmd /successfile

    Do the option /successfile on FxCopCmd work According to help print out on FxCopCmd it should generate a file if the are no problems in the analyses: /successfile [Short form: /sf] Create .lastcodeanalysissucceeded file in output report directory if no build-breaking messages occur during analysis I’m running FxCopCmd with options: /successfile /project:MyProject.FxCop /out:BuildLogs I would expect that a “.lastcodeanalysissucceeded” file was created in the BuildLogs folder when FxCop can not find any problems – why do I not get this file -- Erik Pedersen PS: using version 1.35 Ok, now I got it. The problem was this out option. I called my output file "NorFor.FxCop" and when the output file ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. General Audio Disfunction

    After about 10-15 minutes of gameplay, the audio slowly begins to become more and more distorted and fractured sounding. Both the sound FX and BGM gradually become more choppy and grainy sounding while dragging down the overall performance of the game. Any ideas It seems to be working ok for me but it's hard to test. I did simplify things a bit by not making every sound a Cue object. I only make Cue objects when I need control over the sound such as stopping it in the middle of playback. Otherwise I simply use PlayCue. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. XACT could not load the data provided. Make sure you are using the correct version of the XACT tool.

    When im trying to say: m_AudioEngine = new AudioEngine ( "TestProject.xgs" ); I get this error: "XACT could not load the data provided. Make sure you are using the correct version of the XACT tool." I think ive have done what there stood in the how to, and the Space game works perfectly with sound. Is there a solution to this I am also following the help files instructions on using the XACT tool as well as implementing the example code in the program. At first I was getting the message saying that the file was not found because it was looking for: C:\Documents and Settings\Donovan\My Documents\Visual Studio 2005\Projects\MyFirstXNAGame\MyFi ...Show All

  • Visual Basic IDE annoyances

    While i absolutely love the new visual studio, there are a couple of things that drive me nuts!!! when i right click on a symbol in code (such as a variable or procedure name), i can choose "Definition" and jump to that location. unfortunately, the "Last Position" menu item (that was available in VB6) was removed so now i cannot jump back to where i was previously. when i want to save my file with a different name, i would normally choose "File->SaveAs". this has now been changed to include the file name, which i find to be reallly annoying, especially since i will not be using the same name. opening visual studio is really quick, but closing visual studio takes forever. opening the design (GUI) view takes forever. switch ...Show All

  • Visual C# Type cast

    Hi you all, I have the above code: <code> Type classTelemetry = dllQuorum.GetType( "Gre.Quorum.Telemetry" ); SomeClass obj = (classTelemetry)someObject; </code> and I am getting the following error: ... classTelemetry is a 'field' but is used like a 'type' But isn't classTelemetry a type Isn't GetType the same as getClass in Java Thanks in advance, MeTitus Daniel Kuppitz wrote: Hi, I don't know what getClass in Java does, but classTelemetry is an instance of type Type. What do you want to do with this cast Actually it should be: SomeClass obj = ( SomeClass )someObject; -- Regards, Daniel Kuppitz ...Show All

  • Visual C# I can't run VS 2005 on vista

    I have installed Vista Ultimate from MSDN. On clear Windows (without any optional drivers and programs) I have installed Visual Studio 2005 Professional EN. But when I try opening Visual Studio it always closes ! In Event log is description like previous posts: Faulting application devenv.exe, version 8.0.50727.42, time stamp 0x4333e699, faulting module ntdll.dll, version 6.0.6000.16386, time stamp 0x4549b87a, exception code 0xc0150015, fault offset 0x0002b216, process id 0xd18, application start time 0x01c751532be98c50. The same error is when I try open documentation of Vista SDK (after installation it on my system) I have try SP1 for Visual Studio 2005 and SP1 Beta on Vista but the error with ntdll.dll doen't disappear ...Show All

  • Visual Studio Team System Can't Manage to execute DTS Package in ASP.NET

    I have a very simple DTS package which export a table into a text file. Running the package from Entreprise Manager doesn't cause any issues. However, when running the package from ASP.NET code, the code is being executed with no error but the objDTS.execute doesn't not sent the txt file. I am using the same userId, password as in Entreprise Manager. Please help!!! In your reply, please considerer that I do not have the admin rights. Thanks in advance. Here is the code I use: Imports DTS Public Sub btnExecutePackage_Click ( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnExecutePackage.Click Dim objDTS As New DTS.Package T ry objDTS.LoadFromSQLServer("btn000136414&quo ...Show All

  • Software Development for Windows Vista manipulating zipfldr.dll to create a Compressed folder

    Hi, I'm looking at creating a small app that needs to compress files and folders. Obviously, i'll need this to use Windows' built-in zip support (because otherwise my app would have to use 3rd party software that I'd need to distribute along with it) I know that the command rundll32.exe zipfldr.dll,RouteTheCall %filename% opens a zip file in explorer, but I need the command to create a zip file. Can anyone help Andy To do it in vb6; http://tek-tips.com/viewthread.cfm qid=1302498 ...Show All

  • Visual Studio Where can i get VS2005 for free?

    Hello, Where can i get VS2005 for free I am student of High school and i am looking for some studying program where would i can get VS2005. I found http://theSpoke.Net but that's not longer available. I was also looking for MSDN AA, but that's for University or College, but i am studying High school. Any another chance how can i get copy of VS2005 for free I was using VS Express, but that's not support addins and i haven't chance develop for Windows Mobile and these two things are what i want. Sorry for my poor english, i am still learing. Thanks for help. you can't get the full VS For free, you must purchase it either from your retailer store or the internet, or purchase a subscription to M ...Show All

  • .NET Development rate this code please

    Following is a custom thread pool class that I attempted to write. Would you please take a look at the code and see what design issues (or coding ) issues does it have using System; using System.Collections.Generic; using System.Text; using System.Threading; namespace Gemini.Threading.ThreadPool { public delegate void CallBackHandler(object context); public sealed class CustomThreadPool : IDisposable { #region private memebers... private readonly int _CurrentPoolCount; private List<ThreadData> _Threads = new List<ThreadData>(); private ManualResetEvent _ItemsInQueueEvent = new ManualResetEvent(false); private SynchQueue _QueueWorkList; private static void OnThreadStart(object o) { ...Show All

  • Visual Studio Team System Schema Comparison - multi selection of entites and flag them "skip"

    it is not possible to select multiple items in the schema comparison results view and then choose "skip". A user has to click on eg every table, right click it and select skip. Currently the usability of this product is limited because of issues like the one mentioned. Additionally, sometimes this product greys out eg update/create actions, and sometimes it displays skip. If an entry is greyed out, it can be difficult to distinguish if it is updated/created or skipped. In might be beneficial to consistenty mark items as "skip" if the user selects to skip it and not to change the color to gray. ...Show All

  • Windows Forms Timer problem with windows service

    Dear All, I have set a timer for my windows service. The problem is that when I start my windows service it writes to a file and I find that it just wrote once that is when the service starts. I set the interval to 10000 that is 10s. So what is the possible problem here any help please Dear Andrej, Your example of timerDelegate = new TimerCallback (OnTick); stateTimer = new Timer (timerDelegate, null , 0, 5000); // 5000 = 5 secs . I am a bit lost when now comes to threadig and things like that Can you give me some explaination on that Thanks man. ...Show All

  • SQL Server Enterprise Manager returns [MS Visual Database Tools] - The parameter is incorrect when returning all rows

    When I try to return all rows from a view or table by selecting Open Table|Return All Rows from the context menu, I get a dialog in the middle of EM stating: An unexpected error happened during this operation. [MS Visual Database Tools] - The parameter is incorrect. Any ideas This could be due to the Enterprise Manager trying to return too many rows that the client machine unable to cope up, you might try from a query analyzer to list the rows which is a recommended way. Also you can test on another machine to see whether it reproduces the same, also apply the recommended service pack to client tools too. ...Show All

  • Software Development for Windows Vista FindResourceW return null

    i use the follow codes to get icon of exe file,why hRes is null HMODULE hExe = NULL; HRSRC hRes = NULL; HGLOBAL hResLoad = NULL; hExe = LoadLibraryW(bind_file_name); hRes = FindResourceW(hExe, MAKEINTRESOURCE(128), RT_GROUP_ICON); hResLoad = LoadResource(hExe, hRes); ....... ...Show All

  • Visual Studio 2008 (Pre-release) HTTP Basic Authentication

    How do I declare HTTP Basic Authentication for an Indigo service hosted by IIS6 Also, how do I specify these credentials in the client's .config file i used same code to repro problem on RC1 and i am not able to repro this problem make sure IIS virtual directory security set it to "basic" authentication Are you able to browse .svc in IE using same credentials(when you browse svc url(.svc) in IE,it will prompt for username and password ,by using these credentials,are you able to browse .SVC ) ...Show All

©2008 Software Development Network