Software Development Network Logo
  • VS Team System
  • SQL Server
  • Visual J#
  • Visual FoxPro
  • Windows Vista
  • Microsoft ISV
  • Visual C#
  • Windows Forms
  • VS Express Editions
  • Windows Live
  • Visual Studio
  • Visual C++
  • Game Technologies
  • Architecture
  • Visual Basic

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

klahking

Member List

p1edmond
krinpit
RajaGanapathy
MilleniumHandAndShrimp
JohnLi
Ti L H
Babak_Izadi
jasontehpirate
Mark Gilbert
PASN
Carlos_SS
CM De Vries
Ömer KAYA
hande
John1234566
bzoli
basementjack
Halofreak1991
Beltira
haleyweb2005
Only Title

klahking's Q&A profile

  • Game Technologies: DirectX, XNA, XACT, etc. Is it reasonable to build cos/sin/acos/asin func textures? (HLSL)

    I'm just wondering if it is reasonable to build function textures for the cos/sin/acos/asin in a HLSL shader. Or is it quicker to use the respective HLSL functions Nico All depends on task - sometimes it's reasonable to save memory and waste a little CPU cycles, sometimes CPU cycles are more precious and memory are not a problem. ...Show All

  • .NET Development SOAP exception raw soap dump

    Hi, Can anyone tell me where I can find a raw SOAP dump of what a SOAP Exception response looks like. As well for SOAP1.1 as SOAP1.2 thanks. Try this: catch (System.Web.Services.Protocols.SoapException ex) { ex.Detail.FirstChild.InnerXml - contains the xml of the message. If you use WSE3 you can WSE3 settings ->Diagnostics->Enable Message Trace, and you'll get the out put and input of your SOAP messages. Hope this will help you. ...Show All

  • Visual C++ Registry editing

    I'm having trouble creating the code for a button to change a couple of registry keys. I've searched google for hours and hours now, but all the code I can find about registry editing doesn't work in my version (2005 beta 1). I can't even get the code from MSDN to work So my question is simple (I hope): Let's say I want that button to change the value from Username in the map HKEY_CURRENT_USER\Software\Blasoft\3dgame\ to Savarage, how would i do that Thnx! This works for me: Registry::SetValue(keyName, "Username" , "Scamp" ); Registry::SetValue(keyName, "Password" , gcnew array <Byte>{ 0x ...Show All

  • .NET Development Remoting Configuration in VS2005

    Hi there, I'm trying to configure the remoting services and channels of an application using the app.config file in VS2005. It keeps giving me an error telling me that it... Could not find schema information for the element 'application' as well an error for every other child element under the <system.runtime.remoting> element. Here is the start of the configuration.... < configuration > <!-- Configiration of the Remoting system --> < system.runtime.remoting > < application > < channels > < channel ref = " tcp " port = " 6565 " & ...Show All

  • Visual Basic Using and deploying DLL files without having to register it under Windows : is it possible ?

    Hello everybody. I'm a new member of this forum and I ealready have an imoprtant question. I wanna know if it's possible to create and deploy under Visual Studio 6.0 (VB6) or .NET (7.0 or 7.1) library files (dll) that I could use without registering it.... The goal is to be able to run any application using this library whatever the access rights to the register base of Windows... Thank you for your supports !!! Thank you Ken for your answer. I thought the vb.net dll were automatically registered while their building under MS VS7.1. The further matter on this subject is that I can't add a reference to these vb.net dll ...Show All

  • SQL Server MBSA "Identity"

    My Windows login is a domain administrator. I run MBSA and ask it to scan only my computer. I have removed Builtin\administrators from the sysadmin role in my SQL Server 2000 installation. The login is still there. MBSA is still able to get into my SQL Server and report that there is a guest user in Northwind and Pubs. It does not, however, report on the logins with weak passwords, which it did when Builtin\Administrators was a member of sysadmins. This leads me to believe that it does use the BuiltIn\Adminstrators login to access the SQL Server. Is this correct Thanks, Sharon MBSA connects with the user c ...Show All

  • .NET Development problems casting an object in a listdictionary

    hi i'm having problems with a listdictionary i have the following code ListDictionary OnScreenDictionary; //instantiation of the LD, adding objects to it, etc foreach(object o in OnScreenDictionary) {     DrawingObject DO = (DrawingObject)o;     //do some work with DO }   now, i'm getting an invalid cast exception but the object is a DrawingObject so the casting should be ok, but it isn't is there an in between cast that i have to do here to retreive my DrawingObject thks, already figured it out myself when i saw the object being a dictionaryentry on the debug ...Show All

  • Software Development for Windows Vista Workflow Foundation in Framework 1.1

    Hi, I'm a newbe 2 WFM so just enjoy my ignorance. We are still using Studio 2003 for our Web Applications - is there any way to use WMF with Framework 1.1 From all info I'm getting now, it seems like WMF is something for framework 2.2, no examples for vs2003. Thanks in advance. GotIt PS Have I posed this question in wrong forum Please correct me. Sorry dude, it’s not possible I think. You'll need Framework 2.0 and WinFX. Windows Workflow Extensions for Visual Studio are for Visual Studio 2005 (RTM) only. Even Express Editions can't use them. HTH. ...Show All

  • Windows Forms Form Resize

    I design my software in 800, 600 form size.   My client's computers have their resolutions set differently based on the operator's preference.  Is there an easy way to make my windows forms resolution independent   That way no matter what size the forms are expanded to, the controls inside will automatically resize.  Thanks in advance for any help! ...Show All

  • .NET Development how to get LAN Information - turnOn- turnOff time

    hello i want to get turn-on & turnoff time all the pcs connected to my lan i have IPs for all the connected nodes but dont know how to fetch information from the IPs... in future i want to get as many as information for each node so plzz let me know the right way .. i try WMI but its always says AccessDeny i dont have username password for all the nodes .. but i think i can connect to all the nodes from ip address & get information i need .. is dere any implementation of the Network monitoring system using WMI in .NET & is it open source as well .. i m using .NET Framework 1.1 |& xp SP2   a ...Show All

  • Visual Basic Little bit of help, would appreciate it thanks.

    Hello all, I am currently in School for a Network Admin Degree, but i am also taking up .Net developing. I am currently doing Visual Basic.NET. My assignment is to make a form that goes to another form and in the second form there are 3 fields ( UserID, First Name, and Date) then there are 2 buttons; Validate and Exit. The purpose of this form is when you click validate for the form to validate that the 3 fields have the correct information in them and if not display an error showing so. I have succesfully done about 95% of the form, missing one element, how to validate the FirstName textbox field. I have Date and ID down pack. Here is what ...Show All

  • Visual Basic setting start folder

    In VB6 compiled programs you could set the "start in" option in the shortcut. But I VB2005 I can not see how to do this The problem is differnt user's might have differnt folders for there data Jack thanks this is what i wanted easy now Dim value As String = My .Computer.FileSystem.SpecialDirectories.MyDocuments ChDir(value) Once the program is open when you go to load a file it always opens my documents first Thanks for all your help ...Show All

  • Visual Studio Team System Procedure for using Build Server with Multiple Branches

    I have question in regards to properly using the Build Server with multiple branches of an application.  As an example lets say I have a simple solution (called TEST) with a web 'project' and a class library.  When I first setup my build type, I set it up to build the TEST solution.  I run the build and it creates build number: 20051008.1.    I then "Branch" my solution in Version Control to keep a build history.  So I create Branch20051008.1 in Version Control. So now I have 2 branches - the main line - TEST solution, and the branched build version Branch20051008.1.  Through testing a couple days ...Show All

  • Visual C++ AssemblyInfo.cpp

       when I'm creating a new Console Application, My VisualStudio.net does not load the AssemblyInfo.cpp file.  What should I do   It loads all of the necessary header files but not assemblyinfo.cpp.  Or can anyone tell me how co create one. No repro here also. One comment. Win32 Console Application does not create assembly info. CLR Console Application wizard does generate assemblyinfo.cpp. Try this on another computer. Thanks, Nikola VC++ ...Show All

  • .NET Development Parameterized queries

    When using a parameterized query such as: SELECT LocationID, StreetNum, StreetName, rowguid FROM tblLocations WHERE (StreetNum = @StreetNum) AND (StreetName LIKE @StreetName) Is there a way to automatically add % to the beginning and ending of the parameter I've tried the following command: SELECT LocationID, StreetNum, StreetName, rowguid FROM tblLocations WHERE (StreetNum = @StreetNum) AND (StreetName LIKE '%' + @StreetName + '%') But I get a FormatException. I don't want the user to have to type % in the parameter field. Any suggestions Thanks, Lee I have split this post into a separate thread, and ...Show All

©2008 Software Development Network