Software Development Network Logo
  • Visual Basic
  • Visual FoxPro
  • Smart Device
  • Visual Studio
  • Visual C++
  • VS Express Editions
  • Game Technologies
  • Visual C#
  • SQL Server
  • VS Team System
  • Architecture
  • Windows Forms
  • Microsoft ISV
  • Windows Vista
  • .NET Development

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

Dimmi3

Member List

A. Mereaux
roel_1984
CB812
adelino
Doogshnooglis
Kevin Won
cybrenergy
rclancy
Thenend
stupots
ratster
SudhaArch
WPINO
Conor Long
sveroa
DBurns
Gino Matthew
Hassano
Azeem Sarwar
Amberite
Only Title

Dimmi3's Q&A profile

  • Visual C# ICOMTrackingInfoObject

    Does anyone known where I can find the ICOMTrackingInfoObject interface The documentation exists: http://msdn.microsoft.com/library/default.asp url=/library/en-us/cossdk/html/bed709ca-5083-4073-a9f9-2b7b7f14cf87.asp But I can’t find it in the comsvcs.dll (it should be there !)   Tks in advance. Carlos Goncalves. ...Show All

  • Visual Studio Team System Assign group rights during the project creation

    Hi, In a process template, is there a way to automatically assign permissions to a defined Team Foundation Group For example, i have a global server group which name is "Developers" and i would like to assign it automatically during project creation to "MyProject\Contributors" project group. I found how to create custom groups with custom rights within the " GroupsAndPermissions.xml", but not how to assign rights like we can do in the version control file with "[$$PROJECTNAME$$]\Project Administrators" If someone can help me Unfortunately this is not possible wit the existing v1.0 Gro ...Show All

  • Visual C++ directory exists // create

    Looking for easy way to check if a directory exist and otherwise to create it Ok than, I look a bit further cause the call needs 2 arguments, a construction like this works LPSECURITY_ATTRIBUTES attr; attr = NULL; CreateDirectory("media/Saartje",attr) ; But, how do I check if one already exists ...Show All

  • Visual Basic playing mp3 file..

    hi ppl. it's rather a easy question for all u geeks..but i want to know how to play or embed a .mp3 file in a form.. i know how to play midi files or .wav files using windows api function plz help me.. ashish Theres a number of different ways. The easiest is to create a process or shell out to an installed player e.g. mplay32.exe -play mytrack.mp3. Alternatively, you can convert the mp3 to a wav or use a library that handles the necessary api calls for you.  Codeproject   have a good section dedicated to audio. Cathal ...Show All

  • Windows Search Technologies Hi Sert Outlook 2000 crashes on exit with WDS installed

    I ran into 2 problems with WDS version 2.06.0000.2083. I have just installed WDS for the first time on XP SP2. I don't have MSN Search Toolbar installed. My Outlook setup doesn't use Exchange and just connects to my ISP to retrieve email. The problem I have is that Outlook crashes on exit. I can post memory dump if necessary. Additionally, if I let WDS finish indexing while Outlook is up, WDS doesn't ever find anything in the email messages. Kind of defeats the purpose of Outlook integration. Are these known issues that I ran into If so, when should we expect to have a new version out that addresses Outlook 2000 integration Thanks. ...Show All

  • Visual Studio Team System Helpdesk type software

    hi, does anyone know of any vendors/partners that are writing helpdesk type tools that integrate into team system the kind of thing i am looking for is the ability for helpdesk people to record issues (exists already), but for those issues to have automatic tracking and escalation (usual helpdesk type stuff). (i know i can write this myself, but as always there is not time!) cheers dan I'm not aware of any at this time.  That doesn't mean there aren't any.  I think it is a very natural thing to want to do to better integrate your development environment and you operations environment. Brian ...Show All

  • .NET Development ThreadPooling in c#

    I have to upload 70 files using ThreadPooling and code i have used is as below.I have set the maxthread size as 10.But it is uploading only 8 files. Please tell me how to make it work.Also if u can please give a sample code.Help will be greatly appreciated. WaitCallback callBack = new WaitCallback ( UploadFileEx0 ); for ( int i = 0 ; i < 70 ; i ++) { if ( true == isThreadAvailable ( true )) { ThreadPool . QueueUserWorkItem ( callBack , GetFileName ( this . listView1 . Items [ i ]. ToString ())); } else { MessageBox . Show ( "Worker thread not available &qu ...Show All

  • .NET Development GC hangs with 100% CPU utilization ?

    Dear .NET gurus, I am trying to debug some .NET 1.1 application and and experience a strange behavior - from time to time the process hangs with 100% CPU and has to be killed. The threads in the application that burn the processor time are actually unmanaged threads busy doing the following: WARNING: Stack unwind information not available. Following frames may be wrong. 09f8ebc8 00aab14e mscorwks!GetCompileInfo+0x1840b 09f8ebcc 09f8ebd4 0xaab14e 09f8ebd0 00000000 0x9f8ebd4 (this one burns 98% of CPU) Also there are three additional theads doing this: 0660f408 79299fec ntdll!KiFastSystemCallRet 0660f438 7929a54d mscorwks!CorMarkThre ...Show All

  • Visual C# How to Automatic Shutdown the PC?

    Good day! Please help me or give some ideas on how to automatic shotdown the PC. The scenario is i have a shutdown button. if the users click that button it will automaticaly close your applications and shutdown you computer.. thanks. This MSDN page lists the shutdown functions. I couldn't find equivalent .Net framework functions so you have to use unmanaged calls to do what you want. Michael ...Show All

  • Visual Studio I want to add additional documentation to VS help system.

    I have VS 2005 installed and it comes with a set of documentation which you can filter via drop down box, which is great. But I am doing some sharepoint development and I really don’t want to switch between the two systems or more if I have other SDK docs I need to look at, can I add the sharepoint SDK or any .chm file to the VS help system which should be automaticly searched via dynamic help also. I think I am asking for the impossible. Cheers, David Olaf Neuendorf wrote: Hello Michael & Paul, please can you tell us when a fix will become available We are waiting for quite ...Show All

  • Visual C++ error in rewrite CDocment::Serialize()

    void CmyPainterDoc::Serialize(CArchive& ar) {  if (ar.IsStoring())  {    CFile mfile=ar.GetFile();   char buf[100]="this should be ok!";   mfile.Seek(0L, CFile::begin);   mfile.Write(buf,sizeof(buf)); ~~~ when i wana save a file as 111.tmp, whether it already exists or not,  this error occur: "cannot find file 111.tmp" why This code must be invalid: CFile mfile=ar.GetFile(); GetFile returns a pointer. Also why you are not using the standard << operator of the CArchive object Also repsoitioning the file pointer in an archive may lead in a ...Show All

  • .NET Development About Singleton and queed requests

    Hi, I have one query regarding performance. I have an remoting application which is using IIS as host. I am using the singleton objects. What i want to ask is, if I send say some 10 request for the same object (e.g starting the same screen by some 10 users at same time), thus my 10 requests will get queued or it will be served at same time If it is getting queued, what is the best solution to sort out the issue This is causing the great performance hit. Can anybody suggest. thanks Vyankatesh Hi, When remoted in IIS, the requests are taken care by ASP.NET which maintains a ThreadPool to handle the requests. I ...Show All

  • Visual Studio Team System Unresolved Reference: Microsoft.Vbe.Interop

    Hey, I'm working on a project that is in the process of being ported from VB6 to .NET. I've tried to run fxCop against the main .DLL (it's a web app) but I get an error message telling me that there is an unresolved reference to Microsoft.Vbe.Interop. Now, I have confirmed that this file does exist in C:\Windows\assembly\ and I've even verified that the version/public key that fxCop is expecting matches the assembly in the folder. However, fxCop will not allow me to select the file to be loaded, nor am I able to use Windows Explorer to copy the file to a local directory and point to it there. Am I completely missing something here Is it not ...Show All

  • SQL Server Data driven Subscription

    is there any way to read the values for userid and password from a database dynamically while creating a data driven subscription i have a huge list of reports written out to a shared folder once daily. These are then moved to appropriate fodlers with a file moving program. Instead of typing the userid and password manually on the subscriptions creation page, can we read it from a database. I am able to read all other parameters but these two. any help is appreciated. thanx in advance. hi, maybe this http://www.sqlservercentral.com/columnists/jselburg/datadrivensubscriptions.asp could be a proper workaround cheers, markus ...Show All

  • Visual C# Not enough storage is enough to complete this operation Error happen when compiled

    Not enough storage is enough to complete this operation. This error happens when project is compiled. It does not always occur. Any idea ...Show All

©2008 Software Development Network