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

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

Karlo123

Member List

the beginner
Seshagiri
Scuzball
Jaap Wagenvoort
meeka29
Terrell Plotzki
NimeshPatel
OrlanduMike
Brave Daun
IAOCHISON
rfinlay
jarekb
GTVic
NightwoIf
Amit Jitendra
Norman Guadagno
Yknev05
Ron K.
Scott Glass
QbyCarl
Only Title

Karlo123's Q&A profile

  • Game Technologies: DirectX, XNA, XACT, etc. System.NullReferenceException was unhandled

    Hi! In my windowed control, whose rendering is done completely in Direct-x, I provide the means for the user to change the font. For this reason, my object includes the function SetupFont(), which is called at least once on startup to set the default font, and then it may be called whenever the user decides to change the font. The mobjFontDirectX and mobjFontGDI objects are defined at class level: private void SetupFont(System.Drawing.Fon ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Installing DirectX SDK

    Hello.I am using Microsoft Visual Studio 2005.I downloaded the DirectX SDK from December and I have installed on my computer but I cannot build DirectX Aplication.Why I use VB. The 2nd question: "VC# is better for DirectX applications " In VB.Net look in the project properties - there is a tab called references where you can add and remove what you need. This really is a very basic.Net ...Show All

  • Visual Studio Team System Please help - installation error!

    Hi, I've been trying to install TFS since last week without succeed. I've followed all the guides and requirements such as excluding reports IIS, creating user accounts, but still receive the error below. D:\Program Files\Microsoft Visual Studio 2005 Enterprise Server\BISIISDIR\sdk\bin\BisSubscribe.exe" /eventType ArtifactChangedEvent /userid ISTEAMSERVER\TFSService /deliveryType Soap /Address http://ISOFT-TESTER:8080/Currituck/BisService.asmx ...Show All

  • SQL Server temporary table not dropped after user disconnected (SQL2005)

    Hello all, We are developing some stored procedures on the SQL2005 server. All of them use local temporary tables to store temp data. Due to some errors in the procedures, run-time errors are produced and the procedure stopped. But after user disconnected, these temp tables are still exist in the tempdb and cannot be deleted. We can only view these objects using SA account in tempdb.sys.objects view. I would like to ask if there is any meth ...Show All

  • SQL Server Management Studio and Enterprise Manager on Same Machine?

    Greetings! Do any of you know whether or not it's possible to install Enterprise Manager onto a box with SQL Server 2005 installed I've come across a couple of problems when trying to admin some SQL 2000 servers, so I need EM somewhere. Also, it's incompatable with SQL Server 7.0, of course, and I've got two of them to admin as well. Thanks! Yes, it's OK, I've done it. But it's not recommended for a produc ...Show All

  • Visual C++ Multiply 20 digits len ; It is emergency case

    Dear C++ Programmers We know the c++ " long long " type or "__Int64 " type support 19 digits ; if I want to multiply or subtract or sum two 20 length digits , what I must do How it is poosible Hi, you'll have to make a type for yourself that allows that kind of operations (use an array for example) or use any lib that supports that. ...Show All

  • Smart Device Development Connecting to Pocket PC

    Hello, Does anyone know how to connect to a Pocket PC device trough the activesync connection from a desktop pc I will develop an application which will work on both sides (desktop and pocket pc) so I would like to know how can I establish a connection between these two applications. Thank you in advance. Tiago Nobrega You can use either Sockets or RAPI. OpenNETCF has the library: http://www.opennetcf.org/PermaLink.aspx gui ...Show All

  • Visual Studio Express Editions How I can create multiple forms?

    Hello.How I can add multiple forms in my application and when the application is started to see 2 forms In the OnLoad event of the first form, allocate a new instance of the second form and call its Show method and store it in a member variable. In the OnClose event, close the second form. ...Show All

  • Visual Basic Windows Installer error message

    Sir, I develope an aplication using VB.net. It contains to forms, One crystal rport and an access database. I have added a step wizard project to my application. In add files box I have added the Acces database and crystal report. My problem is when I build the application the following error message is displayed and the setup MSI is not created. Project configuration skipped because it is not selected in this solution configuration ...Show All

  • Visual Studio 2008 (Pre-release) Replacing Buttons in GridViewColumnHeader

    I'm trying to successfully replace the default Button controls in a GridViewColumnHeader with a simple TextBlock. I've been able to do this by defining this style: <Style x:Key="styleGridViewColumn" TargetType="{x:Type GridViewColumnHeader}" > <Setter Property="Template" > <Setter.Value> <ControlTemplate TargetType="{x:Type GridViewColumnHeader}"> <Border Bord ...Show All

  • Visual Studio Advice needed: What technology/kit/etc to use when porting exsisting VS wizards

    Hi guys, In my company we have developed our own little .NET-based framework for making development easier for projects that don'e want to be exposed to all the possibilities and options in the .NET framework. In addition to this, we have made project templates that integrates into the "Add new item" and "Add new project" dialogs in Visual Studio. (My Microsoft consultant tells me that they are actually wizards, templates is strictly speaking so ...Show All

  • Visual Studio Package and Artifact Symbols

    Hi Folks I have been playing with the class designer; I think its the the horny'st and greatest bit in the Studio. It would be even greater, if it had a symbol for a container to represent Folders, Namespaces, Projects and Solutions.  Something simple, with a link to sub class diagram.  like a UML Package element. a symbol for an ARTIFACT to repesent Source Files and other documents  a symbol for an object an ...Show All

  • Software Development for Windows Vista InfoCard issues

    Not sure where to post this, so if I am in the wrong group, please let me know... Since installing e WinFX SDK where it seems most everything is working, I have been unable to get the InfoCard Control Panel applet working. The error I get is: The Digital Identity control panel applet failed to start. Error: 0x800706be Message: The remote procedure call failed. Any ideas Thanks! Chris that happened ...Show All

  • .NET Development writting xml based on xsd schema using Dataset or any other method

    Am using Visual Studio 2005 (vb.net).... I know you can validate an xml file using "XmlValidatingReader", but I want to generate xml from a dataset based on an xsd schema, this is some thing I use to do in Stylus Studio but can't figure out how to do it using vb.net so I want to generate a xml document based on an xsd schema I have got, can any one help   Many thanks jaodger Yip, use ...Show All

  • Visual C# How to extract event method name!

    Hi, Does anyone know is it possible to get method name which is placed to eventhandler. Like Button.Click += new EventHandler("but_Click"); how do I get string "but_Click" in runtime Try the following: EventHandler myDelegate = new System. EventHandler ( this .button1_Click); this .button1.Click += myDelegate; s tring method = myDelegate.GetInvocationList()[0].Method.Name; Andres. ...Show All

©2008 Software Development Network

powered by phorum