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

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

daph4ntom

Member List

NetPochi
Deerhake44
adi151478
Ogulcank
dczraptor
Cadey
Mike_in_NC
Mindy Riddick
George2
I.You
.neo
hingos
D.V.Sridhar
BJ Custard
Sinclair Schuller
JohnPrem
Nick Gravelyn
Billdozer22
Manmamiya
R3dD0g
Only Title

daph4ntom's Q&A profile

  • Visual Studio The application failed to initialize properly (0xc0000005)

    iam trying to run a program called mp3unpack.exe and i get this error message the application failed to intialize properly (0xc0000005). ive used this program and i recently reformated my hd installed the service pack 2 and windows media 11. before i reformated the program worked fine but i didnt have sp2 or wm 11. i also have a new av but i dont think thats the problem cuz i dissabled it and my mp3unpack still wont work. Iam not 100% sure what the mp3unpack.exe program does but i think it turns mp3 files in a certian forlder into wav files.. brokenbox wrote: i didnt say any thing about visual studio and i didnt think i posted it relating to visual studio.. i just have a problem and i dont know hot t ...Show All

  • Visual C# using lock statement to synchronise static variable access

    Hi, I am using framework 1.1 I have a static volatile bool variable in a class Globals public class Globals { static volatile bool _bDoLiveUpdate; public static bool DoLiveUpdate { get{return _bDoLiveUpdate;} set{_bDoLiveUpdate = value;} } } I have 2 more classes, one of which runs on a separate thread. Both these classes access the property Globals.DoLiveUpdate to perform certain functionality. How can I synchronise access to Globals.DoLiveUpdate by following two classes using lock Please note that the property Globals.DoLiveUpdate and variable _bDoLiveUpdate are both static while the class Globals is not declared static. public Class ClassSameThread { MyFunc() { Globals.DoLiveUpdate = false; // Do Something Globals.DoLiveUpdate = true; ...Show All

  • SQL Server Hierarchal data reports

    I have set up a hierarchal report, which is based on one data set using a table and grouping. I have a group header, a details, and a group footer section in the table. The details is filtered based on one of the columns, and hidden with the ability for the user to expand and collapse the row based on one of the fields in the group header. My problem is, I am trying to set up a report which gets scheduled to run weekly, and emailed out to its users, in PDF format. The PDF format will not allow the user to expand and collapse the rows. I would just send the users a link to the report, and the can expand / collapse the rows they want to see, if they didn't mind having to be connected to set up their report, and having the extra step of expor ...Show All

  • SQL Server MDX Query Governor ?

    Hi, There are 2 problematic cases that would require some kind of MDX Query Governor or time out: - User leave an endless query running forever - User cancel an endless query on the client and it does not get cancelled on the server I looked into the server properties and saw a couple items like Admin Time out, External Connection Time out etc. Which one of these properties should I use to get the SSAS server kill run-away queries that where either let go or canceled on the client side but still run and eat the CPU on the server My take is that any Client issued MDX lasting over 30 minutes should be automatically cancelled on the server. Right now I restart the server when it get too bad but it is not a solution, one cann ...Show All

  • Visual C# How to Exract SQL minute data to houly data in C#?

    Hi I have a SQL table that has data filled with million records and the date is in minutes it looks like :- RowDateTime Meter 1 Meter 2 Meter 3 25/05/2006 02:49:00 1220 450 489 25/05/2006 02:50:00 1223 470 500 25/05/2006 02:51:00 1227 490 511 25/05/2006 02:52:00 1230 510 522 25/05/2006 02:53:00 1233.5 530 533 25/05/2006 02:54:00 1236.9 550 544 25/05/2006 02:55:00 1240.3 570 555 25/05/2006 02:56:00 1243.7 590 566 I want to make a C# code or SQL query to the above table and convert the data to houlry by summing Meter1,Meter 2 and Meter 3 to be the average. I want to import al ...Show All

  • Visual Studio Team System Is there a tool to create class diagram

    Using Guidance tool with VS 2005 team version, I created a web service solution. When coding is done, I need to create a class diagram. Is there a tool can do this based on my Vs 2005 solution and project, or binaries Thanks Visual Studio 2005 Standard Edition and above include Class Designer. You can access it by right-clicking on a source file or project in the Solution Explorer and choosing "View Class Diagram". You can add a class diagram to a project by right-clicking on the project in the solution explorer and choosing Add | New Item ... and choosing Class Diagram from the list of items. There's probably a dozen other ways to get a class diagram as well. Note that the cl ...Show All

  • Windows Forms Setting PowerPoint slideshow as active window over a form

    HI! I'm trying to realize a simple application that loads PowerPoint presentations over a mask, displaying the name of the presentation ad the time passed. The problem is that I can't manage to set PowerPoint slideshow as the active window. This is the code (I omitted what was not important):  Private Sub playerpresentazioni_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Me.Load Me.Activate() Me.WindowState = FormWindowState.Maximized Dim filePath As String = startmenu.DirectoryPath & "PresentationToLoad\" & filePres filePath = Replace(filePath, " ", Chr(32)) Dim returnValue As Boolean returnValue = My.Computer.FileSystem.FileExists(filePath) ... 'initializing componen ...Show All

  • .NET Development problem with MSN messenger

    im having a problem with signing onto MSN and I wasnt sure where to go to ask for help. so here i am. Ive tried to sign in over and over again and i keep getting an error message which says: Signing into MSN Messenger failed because the service is temporarily unavailable. Please try again later. 81000395. I checked the service status and it says that everything is up and running properly. What can i do to fix this tash12457769 wrote: im having a problem with signing onto MSN and I wasnt sure where to go to ask for help. so here i am. Ive tried to sign in over and over again and i keep getting an error message which says: Signing into MSN Messenger failed because the service is temporarily unavailable. Plea ...Show All

  • Smart Device Development how to make the program which run at the backgroud?

    hi because my software should do some thing at a specifical time by user setting. so it can not hand the ppc's form agelong. just like msn, it not hand the ppc's form agelong, but it is active agelong. How to do it. Thank you hi Cedric509 thank you. it run right. and I do not know that private void Form1_GotFocus( object sender, EventArgs e) { this .Visible = false ; this .Update(); //the rest of your app } do the variable 'this ' is the form1 or my application And how to place my app in \\windows\start ...Show All

  • Visual C# Problems with GetProcAddress

    I am writing a program to monitor WM_NOTIFY messages in an application so that I can be alerted to updates in the data being displayed. I am currently having problems with my code to write my native DLL to the remote process. I have the following for my P/Invoke section: /// <summary> /// The GetModuleHandleEx function retrieves a module handle for the specified module if the file has been mapped into the address space of the calling process. /// </summary> /// <param name="dwFlags"> This parameter can be one or more of the following values. </param> /// <param name="lpModuleName"> Pointer to a null-terminated string that contains the name of the module (either a .dll or ...Show All

  • Software Development for Windows Vista Problems with Infocard requiring X509 authentication

    I'm trying to do a import of an InfoCard into the Windows CardSpace client. When I issue it using username/password UserCredentials, then it works fine. When I switch the requirement in the same card to X509V3Credential, it breaks the import. The relevant portion of the card is: <ic:UserCredential xmlns="http://schemas.xmlsoap.org/ws/2005/05/identity"> <DisplayCredentialHint xmlns="http://schemas.xmlsoap.org/ws/2005/05/identity">Choose a cert</DisplayCredentialHint> <X509V3Credential xmlns="http://schemas.xmlsoap.org/ws/2005/05/identity"> <X509Data xmlns="http://www.w3.org/2000/09/xmldsig#"> <KeyIdentifier xmlns="http://docs.oasis-open.org/wss/2004/01/oasis- ...Show All

  • Visual C++ Problem with Getting EBP of the stack on X64 when Exception happen

    Hi There, I am trying to traverse the call stack when SEH happens. On x86, this can be done by using ebp of ContextRecord. However, on X64, I can't find any member of "contextRecord" and "ExceptionRecord" can be used for such purpose. I am aware there is some thing unusual in X64. But my question is that since MS can display callstack info when exception happens in the VC 2005 on X64, why user can't do that Can anyone please shed some light on this I am okay to use any undocumented function or embeded assembly to solve this issue. Thanks, -Yuanfei Hello Re: Problem with Getting EBP of the stack on X64 when Exception happen Such questions are ...Show All

  • Visual Studio Express Editions "Start Debugging" won't run console app

    Hi, My "Hello world" console app won't run when I select "Debug > Start Debugging". Nothing seems to start and just hangs. When I try to close VS, a dialog asks if I want to stop debugging. But, when I start out by selecting "Build > Build Solution" followed by "Debug > Start Without Debugging", my app runs fine. I started with a General Empty Project and added a .cpp file to the Source Files directory. How can I get my app to run with "Debug > Start Debugging" Thanks, Ted Hello Can you give us some more information please, such as: What type of application is it What does the application do (Wha ...Show All

  • SQL Server Creating Partitions and filegroups vith variables

    Hi champs, I know this is simple, but I cannot get the right syntax. I am trying to create Files and Filegroups with names including the current date, Ex. FG_Year_2006_Month_04 That means that the table must be created on a variable filegroup ex. Create table .... ON [@variable] I know i have to use a EXEC command, but cannot see how exact the syntax is.. /Many thanks ...Show All

  • .NET Development I need help about WPF

    hi,all.Im a newbie with .net development. Today my computer installed the VS2005 extension for WCF and WPF.I make a WPF project,but I confused a bit of programming method.I spend 3 more hours for a program of "hello,word". Now,I got problem: I make controls of button and Image in Winform.I wanna let the Image display a picture which path of "c:\shee.jpg" when I click the button.Please tell me how to figure it out,I really a appreciate for you. Thanks anyway. Put the image in the image control and set its visibility to false. At run time ie in the code of click of button se the visibility to true. I think that should help or i have misunderstood ...Show All

©2008 Software Development Network