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

Software Development Network >> Aaron Marten - MSFT's Q&A profile

Aaron Marten - MSFT

Member List

khamlon
jon4paz
Nody Online
Vagif
ck75mk
Cris001
ragc
kid_kaneda
MAwais
Bill Henning
Joe Albrecht
SoulSolutions
DotNetFireball
tovarish
Embirath
MrPerez
Nrupesh
SidharthMalhotra
stswordman
Binu Jeesman
Only Title

Aaron Marten - MSFT's Q&A profile

  • Visual Basic embedded DOS window

    Hi, I was wondering how can I embed a dos window in vb.net What I am trying to do is to have a dos window embedded into a form so that I can have someone fill in a textbox and then I can take what is in the textbox and run it as if I had typed it in from the command line. What I did was I ran it through the shell command and displayed its output on the screen. That works but there is one issue; It returns the whole output when the command has ended but what I need is it to display its output as the command is run, as it does when its ran in the dos prompt. is this possible thanks I know why your getting that, but I have no idea how to explain it in the proper terms, so bear with me here. "2008 ...Show All

  • Visual C++ GUID_NULL undeclared identifier

    I'm compiling a project from VS 6.0 in VS 2005. I get two errors that I cannot resolve. Errors: Error 17 error C2065: 'GUID_NULL' : undeclared identifier c:\program files\microsoft visual studio 8\vc\atlmfc\include\atlcomcli.h 365 Error 18 error C2373: 'GUID_NULL' : redefinition; different type modifiers c:\program files\microsoft visual studio 8\vc\platformsdk\include\cguid.h 30 Code: atlcomcli.h line 365 __checkReturn HRESULT GetIDOfName(__in LPCOLESTR lpsz, __out DISPID* pdispid) throw () { return p->GetIDsOfNames(IID_NULL, const_cast <LPOLESTR*>(&lpsz), 1, LOCALE_USER_DEFAULT, pdispid); } Code: cguid.h line 30 extern const IID GUID_NULL; It seems that GUID_NULL is not defined in the p ...Show All

  • Windows Forms C#, or java script

      Hi guys, please help me. how to avoid the glowing border lines in Media player (Asp.net + C# + javascript)          I created the media player project. using ASP.NET ,C# and Javascript. It will run on IE. When I run my project in some PCs it will show glowing border lines.Some pc s wont display the such lines.                          In the border lines if click once that lines will disappears. How can I avoid this lines. I am using param tags to get the media player. Thanks jai              &nb ...Show All

  • SQL Server how to get total number of variables using scripttask

    I want to loop thru all the variables in my package and set number of variables that had variable-name begin w/LOCAL, so I can use the name to generate a dynamic SQL query for the next EXEC SQL Task. any one know how to do this. Have you added your 10+ variables to either the ReadOnlyVariables or ReadWriteVariables list   The Dts.Variables collection is generated based on those preset list of variables. Thanks, Patrik ...Show All

  • Visual C++ Virtual Store location in Vista

    How can I find where Windows Vista is putting my application data files Everything works until I try to do a shell open and of course the file isn't really there. I've done: SHGetSpecialFolderPath(NULL,path,CSIDL_APPDATA,false); but that tells me where my data should be as opposed to where it is. Any thoughts or suggestions would be welcome. Will hello Re: Virtual Store location in Vista Take a look at this: http://www.awasu.com/downloads/2.2.5/alpha2/fileLayout/ I hope it give some hints but please note that such questions are outside the scope of this forum, for the scope of visual c++ general forum, please refer to: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=1944 ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Managers vs Services vs Components

    Hi All I'll start by saying that I'm really enthused by XNA and think that it's a *wonderful* thing. My $99 is on its way (OK, not quite yet). But is anyone else confused by XNA's use of the terms Manager, Service and Component I've done a little digging around before creating this post and can't see anything definitive on what these terms actually mean. Here's my attempt: Service: a singleton-type object, potentially useful to many objects within a game and accessible through the singleton Game object. The singleton Game object is typically passed to the constructor of any interested object and that object typically holds a reference to Game. Manager: an object used to manage the lifetime of other objects (e.g. ContentManager ...Show All

  • Visual Studio Team System Interesting Behavior

    Here's some interesting behavior. Has anybody experienced this I have a dll in the bin directory of a web site. The site is under source control. The dll does not have an icon next to it indicating that it is under source control (the little lock). In source control explorer I can browse to the source control file location ($/path/to/file/dll) and it exists there. I have the latest version, there are no pending changes. Renaming the dll will display an icon (checkmark in this case) and the source control explorer will indicate the the pending change is 'lock, rename'. Renaming it back to its original name will remove the icon (just a blank space) and the source control explorer will indicate the pending change is 'lock'. I wou ...Show All

  • Windows Forms Column Sort

    Hi, i'm new with datagrid and i'm wondering how can i make the alphabetical sort of the column to work, does .Net already hasve that functionality I don't know if this is important but the datagrid was filled with data from an array. tkns I've a question now, why can't i see the arrows for sorting that usually appear on the column header Is it because the collection i'm using doesn't implement some Interface ...Show All

  • Visual Studio Express Editions Real Time Math Calculations

    How's it going everyone I am working on a piece of software that will allow a user to do some complex math very easily. To make a long story short, I need the software to make the calculations in real time instead of displaying the results after a button is clicked. Does anyone know where I can find a tutorial on how to do this Thanks, Brian This will let them use negative numbers: Public Class Form1 Private Sub TextBox1and2_KeyPress( ByVal sender As Object , _ ByVal e As System.Windows.Forms.KeyPressEventArgs) _ Handles TextBox1.KeyPress, TextBox2.KeyPress Dim tb As TextBox = CType (sender, TextBox) If Char .ToString(e.KeyChar) = "-" AndAl ...Show All

  • Visual Studio 2008 (Pre-release) NUnit and Resources

    Whenever my TestFixture tries to execute Resources anywhere in the program, I get a NullReferenceException thrown. Is there something that you need to do in order to handle Resources when testing with NUnit I'm having the same troubles. NUnit makes a pretty weak attempt at loading the resources. Anyone have a reason for this behavior or a real fix Surely someone out there has been trying to test their WPF app. ...Show All

  • SQL Server Comparing strings in MDX

    Hello gurus, Is there an equivalent to the TSQL LIKE '%mystring%' function in MDX e.g. to filter a Product dimension to only those products containing 'IPOD' or whatever Thanks Not in straight MDX, but it is possible to use stored procedure to do that. There is a open source project to build library of sprocs that few of us participate, and it has the implementation of Like function. Check it out here: http://www.codeplex.com/ASStoredProcedures/Wiki/View.aspx title=StringFilters HTH, Mosha ( http://www.mosha.com/msolap ) ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Hi, New Question... About CreateWindowex...

    Hi, I wrote a small program that opens a windows with CreateWindowex... It compiles perfectly, up until then it says the Errors below... 1>First Window Ever 1.cpp 1>Linking... 1>MSVCRTD.lib(crtexe.obj) : error LNK2019: unresolved external symbol _main referenced in function ___tmainCRTStartup 1>C:\Documents and Settings\Ly Heu\My Documents\C++ Codes\Try Window All Over Again 1\Debug\Try Window All Over Again 1.exe : fatal error LNK1120: 1 unresolved externals 1>Build log was saved at "file://c:\Documents and Settings\Ly Heu\My Documents\C++ Codes\Try Window All Over Again 1\Try Window All Over Again 1\Debug\BuildLog.htm" 1>Try Window All Over Again 1 - 2 error(s), 0 warning(s) ======= ...Show All

  • SQL Server WSUS reconstruct the environment

    Hi All Im a new comer to the site and wsus. I inherited a functional wsus server it was great but due to a demand for improved reporting features I attempted to install the Wsus rollup reporting sample. Im uncertain as to how but I hashed up the installation to the extent that it corrupted the MSDE installation. It was suggested I remove wsus and reinstall. At this point I made another error. I was told that WSUS 3 had improved reporting features (and indeed it does, its infinitely better in that respect) so I signed up with Microsoft and downloaded the installation file. WSUS 3 uses SQL 2005 for Windows so my back up of the MDF & log files were rendered useless. I have since removed WSUS 3 reinstalled a fresh copy of WSUS Sp1 and run ...Show All

  • SQL Server How to set Multiple Active Results Sets (MARS) enable in ODBC

    hello all there can any body tell me how could i set the Multiple Active results Sets (MARS) option on/yes in case of the ODBC. The thing is i create the connection using the SQL Native(sql sqrver-2005)wizard, i got following when create the DNS Microsoft SQL Native Client Version 09.00.1399 Data Source Name: DM_N Data Source Description: Server: vsnet1 Use Integrated Security: No Database: DM Language: (Default) Data Encryption: No Trust Server Certificate: No Multiple Active Result Sets(MARS): No Mirror Server: Translate Character Data: Yes Log Long Running Queries: No Log Driver Statistics: No Use Regional Settings: No Use ANSI Quoted Identifiers: Yes Use AN ...Show All

  • Community Chat zune not recognized by PC UPDATE FIXED PROBLEM-new sync cable fixed problem

    My PC will not recognize my zune, any other device i hook up usb i getthe old DOng ding sound and it shows up. When I hook up the zune, I get nothing. This is the second zune and third cable, it will not even charge on my PC and yes i have 2.0 usb. Any help would be great. Thanks Chad K This is now also happening to me. My Zune is about 2 weeks old and has been working perfectly ever since. On Friday, I had a small issue where the Zune wouldn't connect to charge, however a quick disconnect and reconnect and it was fine. However, tonight, I am having the problem again and this time, the Zune is refusing to connect at all. With all of the people on this forum having the same probl ...Show All

©2008 Software Development Network