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

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

DiamonDogX

Member List

jankowiak
.net sukbir
Nayan Paregi
eureka-eureka
Crish
Abhishek bhadouria
qwv
CraigCody
raghu_grdr
shakalama
James Nelson the Second
Dave Midgley
BennyWang
sfmd
corbin
airwalker2000
bilalso
Brian Konception
dbdoc
GeneralSQL
Only Title

DiamonDogX's Q&A profile

  • Visual Studio Team System Code coverage in web tests

    Hi To be more explicit i am trying to do similar thing as specified in this blog http://blogs.msdn.com/vstsqualitytools/archive/2005/06/08/426979.aspx specifically (including the steps) scenario 2 for a web test. is it possible i am getting a error like this Cannot find any raw coverage data (.coverage) files. Check test run details for possible errors. Am i missing some thing Thanks ...Show All

  • Software Development for Windows Vista Examples of using Persistence and Tracking in ASP.NET

    Hi, For Tom Lake's example of: Examples of using Persistence and Tracking in ASP.NET Why all samples seems related to Persistence Service only No code is about Tracking (except Web.Config), such as Create or Insert profile, am I right Andy Ho Joel, First of all, thanks for your reply. But what I want is the sample is for ASP.NET, not for WinForm application. The reason for me to get the sample is because I got problem when trying to make TrackingService and PersistenceService work together, please see my thread here: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=550245&SiteID=1 From Tom Lake's example, the Persistence works well, but nothing about Tracking Service at t ...Show All

  • Visual Studio Tools for Office imageMso - possible values?

    Hi, what are the possible strings in imageMso attribute Is there any list available I have the Excel demo from Jensen's log but this is only for Excel and customUI.xsd does not contain applicable values. Thanks This gallery has a source code and the Excel file is the source itself! The new file format specifies the ribbon customizations by embedding a special XML part. Just give the file a .zip extension, open it and find the relevant XML parts - the list with all the built-in msoImage Ids is in there. ...Show All

  • Visual C# Detect shuttingdown

    Hallo, I write a program that must be run before shutting down, it is possible to abort shutting down with shutdown.exe -a. Only how can I detect Windows (XP) is shuttingdown Diii Put this code in Your Form: private const int WM_QUERYENDSESSION = 0x0011; protected override void WndProc( ref Message m) {      if (m.Msg==WM_QUERYENDSESSION)      {            // Yes Shutting Down... Try to cancel abort.. and run your application.      } base .WndProc( ref m); } Edit: You can also hook a handler to FormClosing Event and see what coming in the FormClosingEventArgs whether it was shuttdown or ...Show All

  • .NET Development Problems with using remoting through the Internet

    Hello! I'm practising in using .net remoting, and I want to create some kind of chat. I've got a server-activated object, hosted on IIS and a console client application. Client adds a delegate for it's method, responsible for delivering message to remote's object public event member (Event1). When a client wants to broadcast some message it calls remote object's method (Method1) that implements functionality for brodcasting message. Method1 raises Event1, this causes clients recieve message. When I use IIS running on local computer or a computer in same LAN as client computer everything works! But when I host remote object on IIS in the Internet error occurs. The first step (addition of delegate) succeeds. But when client calls ...Show All

  • .NET Development {"Object must implement IConvertible."}

    I keep getting this even though I have defined everything that has been suggested in all the forums :-( - HELP! I used this fine in VS 2003 - can anyone tell me the replacement in VS 2005. I have a public function that is called at various times that I need to execute a Stored Procedure. I get an error at the =>DBExecuteQuerySP = cmd.ExecuteReader(CommandType.StoredProcedure) It tells me to check my 'inner exception' - and that shows the subject line as error: {"Object must implement IConvertible."} My FUNCTION: 'Executes a SELECT Stored Procedure and returns a SqlDataReader containing the results Public Shared Function DBExecuteQuerySP( ByVal cmd As SqlCommand) As SqlDataReader Dim co ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. ode.xna

    By the way, I had ported ODE.NET to MDX 2.0 in the past. Today, I recompiled it with references to XNA with VS2005. The compiler didn't complain. I'm in the process of getting a demo working with references to ode.xna it but it's still in the early stages so I can't be 100% sure it will work. So far so good :/ www.pepperboy.net Yes it is wrapping native stuff. I creating a very a basic demo so far. Added a reference to ode and created a world object to set gravity. No errors or warnings. That's actually pretty promising! ...Show All

  • SQL Server Reporting Services in SQL 2000

    I would like to learn/more, practice creating and using reports but I don't know if I can do that on my home laptop with version 2000. I know, I know... upgrade to 2005. Can't do that due to technical difficulties on my other pc. Can I do this with my current setup thx Kat Yes you can. For SQL 2000, Reporting Services came as an add on component rather that being part of main install package. You will need to have Windows 2000 or XP Professional which comes with IIS. This is required for running Reporting Services. ...Show All

  • .NET Development xmlbulkload and namespace problem

    I'm an xml thickie and after searching for hours I can't find the answer to a problem. I have a XML filefragment to load that (simplified) looks like :- <L:Record> <L:Field>fdgdfgfg</L:Field> </L:Record> I cannot get it to load thru xmlbulk load. If I modify it to use the default namespace <RECORD> <Field>fdgdfgfg<Field> <RECORD> then it loads with this schema <xsd:schema xmlns:xsd=" http://www.w3.org/2001/XMLSchema " xmlns:sql="urn:schemas-microsoft-com:mapping-schema"> <xsd:element name="RECORD" sql:relation="RECORD" > <xsd:complexType> <xsd:sequence> <xsd:element name="Field" ...Show All

  • Visual C++ Problem with end of file with Ctrl+z

    Hello, I not understand why my program not work. Here is my code. #include <iostream> #include <fstream> #include <string> using namespace std; fstream f; void Create(); void Print (); int main () { int n; do { cout<<"1. Create a new file "<<endl; cout<<"2. Print file"<<endl; cout<<"Your select: "; cin>>n; if (n==1) Create(); if (n==2) Print(); } while (n>=1 && n<=2); return 0; } void Create() { f.open ("Proba.txt", ios::out); string name, Nr; while(cout<<"Name: ", cin>>name ) { cout<<"Nr: ", cin>>Nr; f<<name<<" "<<Nr<<endl; } f.close (); ...Show All

  • Visual C++ SymChk.exe

    Where do I find this I see documentation on it but nothing leading me to where to download. Help Try starting here... Rather than using the symbol server, I just downloaded the symbol packages and told the VS2005 debugger where to find them. It worked well... ...Show All

  • .NET Development Generate a Class from an XML file

    I have a challenging idea that hopefully someone has some ideas on how to solve... Does anybody have any ideas on how to go about creating a .NET class whose sole purpose will be to read in an XML file and, based on the data contained within the XML file, from it will be able to dynamically create a class I'm not talking about an object of the class, because obviously there's many options to do that. I'm talking about creating the entire class and everything in the class; the name of the class, modifiers, members, methods, properties, etc. I'm not concerned about logic/decision making inside the class, nor am I concerned about events, delegates, threads, and other advanced topics, just the basics that I mentioned. I ...Show All

  • .NET Development POST WebRequest

    Hello, I'm trying to log in to a website programmatically. My first thought it was to construct a string with the requested values . Example for the following login form :   <!-- login form -->   <form action="/login.php" method="post"> <input type="hidden" name="action" value="login"> <input type="hidden" name="url" value="/forum">   <script type="text/javascript" src="clientscript/vbulletin_md5.js"></script>   <table cellpadding="0" cellspacing="3" border="0">   <tr>    <td class="smallfont">User Name</td>    <td><input type="text" class="button" name="username" id="navbar_username" size="10" accesskey="u" tabindex="1 ...Show All

  • Audio and Video Development RequestSample has never been called ?

    Hi all, I've implemented MediaSource which exposes video and audio stream. 1. Topology started. 2. "RequestSample" on audio stream and raise MESample to deliver data. 3. ProcessInput of audio decoder and return NEED_MORE_INPUT to ProcessOutput. repeat 2-3,... "RequestSample" on video stream has never been called!! any idea or how MF can request sample to video stream thanks. As to why you never get a RequestSample on your video stream... You should, shortly after the application calls IMFMediaSession::Start. To get started with the troubleshooting, I'd closely examine the relationship between the topology, your Media Source, and your streams. If you're not doing so already, try to do playback throu ...Show All

  • Windows Forms INSERT Statement conflicts with ForeignKey Constraint

    I have a simple database with 4 tables (UserData, ComputerData, SupportData, ITResources). I have set the primary keys in all tables (UserDataID, ComputerDataID....etc) to int and identity. I have created 3 id columns in the SupportData table and added FK relationships to the Primary keys in the respective tables....The FK columns are int NotNull and set to autoincrement. The relationships are created without a problem....the issue occurs when i try to add data using a form created in Visual C# express, when attempting to save it comes up with the error in the subject line of this message. When i remove the autoincrement from the FK columns, the error "Column 'userid' does not allow nulls" occurs. I have been trying to work thi ...Show All

©2008 Software Development Network