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

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

SDKCodeMonkey

Member List

mcvilbar
epsilon_ro
PrashG
sathyank
Al Christoph
Andy Burrow
S10n
pardgr8
Ntc
smilertoo
dkcycovery
Dan Puiu
Gomez9999
ppv
Tryston02
Vasanths R
Dat23
Damian Tran
Roger_Melb
ozhonetech
Only Title

SDKCodeMonkey's Q&A profile

  • Visual Studio Team System Merge Changeset Question/Suggestion

    Recently I have been having to merge changesets between 2 branches in our source control using Team Explorer (VS2005), and have been encountering some difficulties in doing it. Now I realise that I might not be using the correct method, but I haven't found another yet :) And apologies if this has already been addressed, I did have a search through the forums for another thread on this topic, but might have missed it. Anyway, what we generally do in our release cycle, is once we have branched off a release, we continue working in our main branch, and periodically merge over some of our changes to the release branch (bug fixes etc). Using Team Explorer, we right click on the tree view, and choose Merge. We then select 'Merge ...Show All

  • Visual Studio Express Editions Quick problem.

    Well this is what im trying to do, im trying to create a kind of members form, where you type someones name in one box and there email in the other, then you hit save and it saves it as a .txt file, and when i re open this file it shows it in a rich text box above, But i just cant do the coding for the part where you put the names in the 2 boxes, then when you save it saves them names, and when i re-open the txt file the names show in my rich text box. ive coded the save button and the open button so they're ok. Hi im not that advanced really but I have some code I kinda got working, it needs modifying abit to make it work correctly but the basic workings is there, im sure a more advanced develop ...Show All

  • Visual Basic overload and override

    This is a general guestion. I think I understand overload and override when used separately. Use Overload when base class and derived class methods have same name, different arg lists. Override when same name, same arg list. Can someone explain the meaning of Overload Overrides used together. MS uses the combination quite a bit and I don't understand it well enough to know if I should be using the two together in cases where I have been using one or the other separately. It is overiding the base class method and providing and overloaded signature to that method. Override is applicable in base/derived class situations (and would be required for methid which MustOverride has been specified ). overload is often not actually requi ...Show All

  • Smart Device Development Transparent images inC#.NET Compact Framework

    hi, I'm want do put some images with transparencys in a Pocket PC 2003. I had tried everthing, png, green background, gif, etc... And I steel cann't make the images appear propely... Can anyone help me ! Hi Alex, I have downloaded the sample apps from the link you provided, but in the UPnPFinder project I get a COM Exception generated on the following line of code that sits in the SearchForDevices() method... object oInst = Activator.CreateInstance(tFinder); I get the following message: COM object with CLSID '{E2085F28-FEB7-404A-B8E7-E659BDEAAA02}' cannot be created due to the following error: Class not registered. How can I get around this, as I ain't too familar with COM (I am running this in VS2005 ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. C# directinput Forcefeedback error

    Hi. I have just bought the new logitech G25 wheel. Im download the aug2006 direct SDK for my VS2005. When I start the C# example FFconst it's not working. I get the error message "No force feedback device is found". The C++ sample works fine. Will this problem in C# be fixed to the next release Best regards Henrik Is there any way around this problem in C# I would really like to use the forcefeedback function in my C# program. Must I write C++ function calls to handle the force feedback Best regard Henrik ...Show All

  • Visual C++ Help with multiThread errors

    Hello, I am trying to create two threads such that Thread-1 runs every 20milliseconds and Thread-2 runs all the time. Thread-2 is basically preempted or suspended till Thread-1 completes operation and again gets resumes operation. I am new to using threads, but based on some sample code I have managed to create threads. But I don't know how to schedule them in the above fashion. Its necessary that the Thread-1 runs absolutely every 20ms. I was trying to use the Sleep function but it somehow doesn't give deterministic Sleep times. Could anyone suggest how I can schedule the threads in the above fashion. Thank you, Suraj. FirstOfAll for Scheduling you can rely on WindowsAPI s to make the Thread 1 Highest Pr ...Show All

  • .NET Development Code was changed,but program run the code befor changing.

    I changed a row of code in my program.The old row is: String connectString="server=10.13.100.22;database=hdreccpdb_3in1;UID=sa;PWD="password" The code after changing is : String connectString="server=10.2.2.252;database=hdreccpdb_3in1;UID=sa;PWD="password" But after execute the new row,I found that the value of connectString is the value befor changing.It seems that the the .net don't know I changed this row of code. Hi, i have had the same issue and the only way i have been able to get the new code working is by shutting down the IDE and stating it back up . i am not sure why we need to do this. is there a seeting to this effect (have not found anything as ...Show All

  • Visual Basic INSTALLED NEW MACHINE, NEW OS, NEW SQL SERVER, NEW IIS, NEW VS - STILL SAME PROBLEM

    OS: WINDOWS XP Pro V2002, SP2 SQL SErver 2000 Developer Edition w/service packs .NET SDK Installed Visual Studio 2003 7.1.3088 Framework 1.1 vers 1.1.4322 MDAC 2.8 DATA LINK DIALOG WINDOW APPEARS and only lists OLE DB data providers. I am out of ideas and have searched long and hard. I cannot upgrade to 2005 at this point and framework 2.0 jdonahue1971, Have you tried to run some programs that use the ADO.NET components such as SqlConnection, SqlCommand, DataSet The ADO.NET 2.0 runs in .NET Framework 2.0 with the compatiblity to the .NET 1.1. So if your classes related to the SQL Server database have no problems, you can also use the ADO.NET 2.0 normally after the upgrade. I suggest you to connect t ...Show All

  • Visual C++ Setting Up OpenGL

    Hello! After struggling for way to many hours, I give up. I can't find a way to set up an OpenGL project in Visual C++ Express Edition. I'm following an OpenGL book, but it's pretty useless if you can't compile anything. I've tried going to Project->Properties->Configuration Properties->Linker->Input and added opengl32.lib & glu32.lib. But it doesn't help. This is the only code I use #define WIN32_LEAN_AND_MEAN #define WIN32_EXTRA_LEAN #include <windows.h> #include <gl/gl.h> #include <gl/glu.h> int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow) { return 0; } And the build errors are: ------ Build started: Project: OpenGL, Configuration: Debu ...Show All

  • Visual Studio Team System TSD1030

    I'm getting: Error TSD1030: [Unknown] .: The name of the object could not be determined It's referrring to a couple of keys that I deleted from my project. I've tried deleting references to these from the vbproj file but to no effect. How can I prevent this error Mamo, Sounds like your design time database could be out of synch with your project. Try deleting the design time database and the associated project .DAT file and then rebuild your project.. BTW, the associated .DAT file will be named whatever your project name is with .DAT appended. Amos. ...Show All

  • Visual Studio 2008 (Pre-release) Need help turning off security on my WCF Service and client

    I am getting a security error when I run my program. I am using WSHttpBinding in both my client and service, but can not access the service on a remote client with my client, but it works great on the host machine. (IP's are not real in the examples below) Below is the error I am getting: Unhandled Exception: System.ServiceModel.Security.MessageSecurityException: An u nsecured or incorrectly secured fault was received from the other party. See the inner FaultException for the fault code and detail. ---> System.ServiceModel.Fa ultException: An error occurred when verifying security for the message. --- End of inner exception stack trace --- ---- Below is my HelloSe ...Show All

  • Visual Basic Textbox Caret Line, Col

    I'm trying to find the Line and Column of the caret. When I searched these forums earlier, I found a this Function: Have you considered using a Richtextbox which has numerous methods and properties for getting characters, selection, insertion point and even a method "ScrollToCaret". Trying to find a particular position or character is much easier with a Richtextbox! ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Experience?

    Well, I have done a little C++ but no C# and I'm wondering if it would help having a certain amount of experience. So can you guys tell me how much experience you had programming and if I would need to learn some C# first. If you have a good book or site that can help that would be great too. Hopefully I'll be able to start programming an XNA game right away with what I already know. Hello! Please don't jump into it with out learning the language fully as you will just make thing's more difficult, C# does have simularity's to C++ but you can not put aside knowledge or for that matter experiance. There is no quick fix as latter on it will catch up on you and you will have a half (if that) finished g ...Show All

  • SQL Server SQL Server 2005 - How to create multiple password policies for SQL authenticated IDs?

    We have a need to have separate password policies for different groups of logins. For example: Those IDs that have greater privileges should be rquired to have more complex passwords that expire more frequently than IDs with lesser privileges. It appears to me that SQL Server pulls the password policy from the default Active Directory domain group. Is there a way to create/utilize multiple policies for SQL Server authenticated IDs Thanks for your assistance. Currently, Windows only supports one domain policy. You may want to ask on a Windows forum to see if there are any planned changes in this area. For your reference, the password policy in SQL Server enforces the Windows password policy, leve ...Show All

  • Visual Basic Need help:click event for button control not woking with IE6

    Hi blogs, I'm developing a web application that contain a registration form. In that the click event for button(asp.net) control not fire in IE6. but it's working well in firefox browser. I'm sure that wrote the server code into repect button event hadler. but i do not know why the submit is not working. help me to solve this problem. thanx in advance. sethu_abi, If a control is bound to a field, the Click event does not fire. However, either the PropertyChange or the CustomPropertyChange event typically fires because data is changing in the underlying field. The following table summarizes whether or not the Click event will fire under various circumstances. PropertyChange or CustomProperty ...Show All

©2008 Software Development Network