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

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

thomastwo

Member List

Piotr K.
Albinowookie
lumakar_challa
zephyr_at_hades
khaley
Datawizard
Adam Goossens
moondancer10
vbrook
desertgeek
Rajesh_B
Kriss
RobGriff
M Chan
_Rico_
MrMartin
Jay1980_UK
bo.skjoett
ETSUGeek
Carl Meek
Only Title

thomastwo's Q&A profile

  • Visual Studio Express Editions Help me with importing c++ dll functions.

    Hi, Im trying to import these functions from vb.net but i dont know what WORD and so on would be in vb.net and how I would call them. ////////////////////////////////////////////////////////////////////// // Decrypt Message From FrontCode Peer Cache Server // // Parameters // pSrc : (IN) Message From Peer Cache Server. Buffer must be 132 bytes. // pDst : (OUT) Primary Node Addresses. Buffer must be 120 bytes. // // Remarks // Node Address Structure // // typedef struct TAG_NODEINFO { // DWORD dwNodeIP; // Primary Node IP Addresses // WORD wUDPPort; // Primary Node UDP Port // WORD wTCPPort; // Primary Node TCP Port // BYTE bF ...Show All

  • .NET Development XPathNavigator and adding node?

    Lets say that I have the following in my xml file: <gameinfo> <lives>5</lives> <score>10786</score> <maps> <mapID>2</mapID> <mapID>0</mapID> </maps> </gameinfo> Then after processing with XPath Navigator, I want the output to be something like this: <gameinfo> <lives>5</lives> <score>10786</score> <maps> <mapID>1</mapID> <mapID>2</mapID> <mapID>0</mapID> </maps> </gameinfo> I want to be able to add that node into the maps node. (This is fo ...Show All

  • Visual Studio Express Editions How do I make my program save its preferences into an external file!

    I've been working on my program for a while now, and i still havn't found a way to make an external preferences table. i'd like for it to store its preferences into an external XML file, but failing that is there a way to fairly moderatly easily make a registry based preferences table Hi there, Your application already has a file of this nature. You can view it through the IDE or through your standard Windows Explorer interface. IDE ==== Open your solution explorer and double click on "My Project". A new tab will appear in your IDE and it should have a sub-tab called "Settings". Open this up and you'll get a scre ...Show All

  • Visual Studio Source Control on database objects...

    Hello, I want to ask what are the possible scenarios on VSS 2005 + VS2005 Team Suite to source control dababase objects (SQL 2000) Is it still limited to stores procedures as VSS 6.0d + VS2003 do SQL 2005 instead Thanks. Hello, VS 2005 does not have support for stored procedure version control through the server explorer. The recommended way is to use database projects to generate scripts for your SQL Server objects, then use a version control system to manage changes to the project. Thanks. ...Show All

  • Visual Studio 2008 (Pre-release) How Can I Benefit From LINQ?

    Hi! I'm modest C# programmer. What does LINQ has to offer me people like me. Any guidance would highly appreciated. Thanks Alternatively (not that Miha's suggestion isn't good -- it's recommended), here's a short answer: To date, there's been no good, unified, low-maintainance way of searching querying graphs of data -- whether objects, lists, or trees. Linq is a pattern which attempts (rather successfully, I think) to do so, and to do so in a manner that is extensible. For example, with DLinq in particular, features are available to the user (or other 3rd party) to implement new DataContexts for their particular needs -- p ...Show All

  • .NET Development ASP.Net Frameset reload

    I have two frames, each contains one .aspx file. When I click the button in the first frame, the second frame content need to be reloaded. -------------------- I use the codeing: Button1.Attributes.Add("onclick", "window.parent.frames('Main').location.href('MainFrame.aspx');") in the button click event of the first frame. --------------------- My problem is: - When I click the button in the first frame for the first time, it is not reloading the .aspx file in the second frame, but it reloading for the second click. Why it is Can anybody help me... Nelson. Thanks for the reply. Now, I am designing a web page in ASP.NET co ...Show All

  • Visual FoxPro Cancel Button Does not work--A known bug?

    I have no idea if it is a known bug. The important fact for me is that it is a bug. It occurs in _VFP.StartMode = 4 as well as in interactive session (_VFP.StartMode = 0). It caused me to lose numerous error records before I realized what was going on. In exe environment when one error follows another there is no way to quit because the Cancel button does not do what it is supposed to be doing. You crush the system and no records are saved of course. Anyway, this is a stamp of one of the session errors: An error has occured "feature is not available" (1001) ADDPROPTOFORM 2998 .... Record details in error log files Two opt ...Show All

  • Visual C++ Print Preview Issue

    Hey, Heres the problem.  I use the OnFilePrintPreview and OnEndPrintPreview methods of the various views.  I have overridden these methods just for some appilication specific calls, but at the end of that i still call the base class for these methods.  That all works well but when I preview a document and then open another document it fails,  basically i want to be able to call the OnEndPrintPreview method when i open a new document (just in case) but dont know what the message call is can you help Thanks Will The MSDN Scribble tutorial. For me a standard sample to check MFC b ...Show All

  • Visual C# Attribute method intellisense

    !Hello! Sorry but my english is very bad. What attribute i should use to show a short description of an method in the intellisense tooltip I know [Description("")] but isnt show information... Thanks Pavleras Use the XML documentation feature of Visual Studio. The <summary> tag is used by Intellisense to display value-added information: /// <summary> /// Description for SomeMethod.</summary> /// <param name="s"> Parameter description for s goes here</param> /// <seealso cref="System.String"> /// You can use the cref attribu ...Show All

  • Windows Forms Install Content Files In A Directory Structure

    I am using c# Express. I have created an application that searches for content files(images and sounds) in folders located in the same directory as the application's .exe file. Is it possible to have Clickonce install my application's content files as part of a directory structure rather than a bunch of loose files in the same place as the exefile such as: Appfolder << Dont Care if this is unknown I'm using Directory.GetCurrentDirectory() App.Exe MediaFolder SoundsFolder ImagesFolder Can I even use the IO classes with a Clickonce App<< I assumed I could using a full trust application. My ...Show All

  • Smart Device Development LNK2019

    hi everyone!     i wrote a simple program use studio2005 with WM5.0PPC platform. i want to read some contact information from the SimEntries database use some APIs as CeMountDBVolEx and CeOpenDatabaseInSession. i find the API descriptions in msdn. it must include Windbase.h and link the Coredll.lib to use it. i include Windbase.h,then build ,it said CeMountDBVolEx and CeOpenDatabaseInSession not defined. i look the Windbase.h, CeMountDBVolEx and CeOpenDatabaseInSession was not decleared in it . i search some head file ,in Windbase_edb.h,i found them,then i include Windbase_edb.h,build ,it said LNK2019 error with the two f ...Show All

  • Software Development for Windows Vista buying car under development! where? when?

    Each time this happens.... we your PAYING customer for MSDN get the shaft. How come Vista Feb CTP is available but not yet on MSDN Why does Connect users have it, but not people how pay you hundreds, if not thousands for MSDN where you'd expect to be able to get it first HELLOOO Just want to add that MS release Visual Studio 2005 with thousands of bugs and we - paying customers - helping them to test and validate their software that we pay for! When you buy a car you don't make a crash test - it's car manufacturer's responsibility. Why with MS we are making software using our testing and our mo ...Show All

  • Visual Studio Babel Icons

    I notice that the intellisense icons in 2005 are true color instead of 16 color icons. I tried changing the completionset.bmp image to use true color icons in the babel language service but VS.Net is showing the icons in 16 color format. I assume that when you create the imagelist, it knows the color depth of the bitmap. I also assume that you can store a true color bitmap as a resource just like any other bitmap. Unless any of the above assumptions is wrong, I don't know what else could be the problem. Thanks. When creating an image list with ImageList_Create, there is a flags parameter. you can pass values ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. A Good Game Tutorial

    Hi, i’m new here, and i was hopping if you can give some links to tutorials about how to program games. Where can I find one I would like to make my own games, so i asked you for help, Thanks. It all depends on what language and technology you would like to use. If you go along the managed directx path I would have a look at www.thezbuffer.com as the zman has a good collection of resources and tutorials to get you started. You could also have a look at the game programming forums on www.gamedev.net . ...Show All

  • Visual Studio Team System Problem with Team Foundation Install

    If you have a problem with the install and it does not finish how do you clean the SQL databases to try again The "Enterprise Manager" is call "SQL Server Management Studio" in SQL 2005. -Scott ...Show All

©2008 Software Development Network