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

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

TedCullen

Member List

dragoncells
GregRoberts
Richard Hough
Chee Kiang
Brumlemann
Henry_Yang
Tom Waters
snowmt
AndyMills
EnterBS
Ron L
johnconstantine
Jamie Thomson
Rups11
Amitt
Binu Jeesman
Mike!
FKopan
Kiwi Ranger
Matt Jones
Only Title

TedCullen's Q&A profile

  • Visual C++ OTP: Microsoft Visual C ++ Runtime Library

    I get this error when I am trying to enter a chat room I'm sorry, but these forums are for people who are writing their own programs. You're getting that error because the software that runs the chat room is written in C++, or it causes IE to crash, and IE is written in C++. You need to talk to the people providing the chat room. This question is off topic here. ...Show All

  • Visual Studio 2008 (Pre-release) Multiple ServiceContracts implementation problem

    Dear All, I’m very new to WCF, so after couple of days of reading and coding I tried to write my second service. I want to deveplope services with a couple of contracts. In all samples, that I've seen, all contracts implemented in the single class. Then this class used in the one ServiceHost instance. But if I going to handle a thousand differrent contracts Should I do it in a singe service-behavior class It looks bad. Show me right way, please. Also, can I instance more than one ServiceHost object in a service Thousands of contracts This sounds quite excessive. It must be that you also have many logical services ...Show All

  • SQL Server Copy SQL server 2000 database structure

    Hello, Is there some solution to copy database using VB.NET 2003 code with all constraints ,specifications and relationships Thnx in adv you may script the database store it in a file. then use the "shell" command to run sqlcmd using the script you generated or you may wan't to progaram using the sql SMO. ...Show All

  • SQL Server New User - Unable to connect

    Hello, Im new to SQL Server so please forgive me if I seem a tad ignorant. Any help is much appreciated. I have just installed SQL Server 2005 CTP on my machine at home in order to learn more about it. The istallation completed successfully on my home pc under XP Pro w SP2. I use the machine with Administration priveliges. There is also a local account on the machine I could use, but I never do. No password entry is required. When I launch Management Studio it gives me the option to connect to a server and lists myself as the only option. When I select this account (the same one that has administration privelidges) it attempts to connects but times out. I receive an error message saying the server actively refused the conne ...Show All

  • Gadgets How to add Vritual Earth API in the Live.com Gadget?

    Hi, Is there any way to add Vritual Earth API to Live.com Gadget It seems failure if writing "<script src="http://dev.virtualearth.net/mapcontrol/v4/mapcontrol.js"></script> " in the gadget content. Thanks Hi, The reference of VE API have been solved, but there is still a problem. Gadget seems different from the normal web page. How could I use "new VEMap('elementID')" to load a map in the Gadget Thanks, ...Show All

  • Visual C# Is there any way to implement an application that close other running application???

    help me if there is any way to implement an application that close other running application... thanks in advance.. I think you did not understand me well MY application should to close other applications ... this is the situation .. In my server there are not less than 120 to 150 application running at the same time .. so everyday I try to keep the high performance by restart the server twice aday .. and because this huge number of applications .. it takes 2 hours aday just restarting the server because first close each application and restart and then run all applications again... so I have emplement a runner application and this helped me so much ... but unfortunatelly I do not kn ...Show All

  • .NET Development Application blocks with console applications.

    Can somebody tell me if I Can use Microsoft Logging Application Block with console applications. If yes, then how becoz I am new to console applications. Regards, Hi, Thanks a lot. It helped me a lot. Just want to know one more thing. I have an application and want to log the exception to the EventLog and display user friendly msg to the user. For that I have used both Exception Handling and Logging Application block. How should I use them through my code. Let say if I have 3 forms then how to handle it ...Show All

  • SQL Server SQL Server Management Studio and DTS

    I lose use of many keyboard keys in 2005 SSMS (enter, backspace, tab etc) after loading a DTS package in the backwards compatible DTS 2000 Package Designer.  I can get use of the keys back only by closing and re-opening SSMS or closing the DTS package. This is true for machines that have been upgraded from 2000 tools to 2005 tools and also true for machines that have never had 2000 tools installed on them. I have tried all the normal things such as uninstall/reinstall and service pack installations to no avail. Is anyone else experiencing this problem   I haven't seen that issue reported elsewhere. Could you please file a defect report at http://connect.micro ...Show All

  • SQL Server Can't get Instanses of the Report Server through WMI using Non-Administrators access

    I'm trying to conncet to Report Server with Non-Administrator user through WMI in compliance with this document: http://msdn2.microsoft.com/en-us/library/ms365170.aspx When I try to get Instances from MSReportServer_Instance class I get an exception: <Null> The data nessesary to complete this operation is not yet avaible. An error occurred while attempting to retrive the list of objects. In my C# project i have an exception: System.Runtime.InteropServices.COMException (0x8000000A) at System.Runtime.InteropServices.Marshal.ThrowExceptionForHRInternal(Int32 errorCode, IntPtr errorInfo) at System.Management.ManagementObjectCollection.ManagementObjectEnumerator.MoveNext() But, when I give the account Domain Administrat ...Show All

  • Windows Forms DataGridView Events

    Hi there! I'm showing a datagridview after it populates from various comboboxes & text fields. My question is this. I would like it to repopulate its corresponding fields when a user scrolls, arrows or clicks through it. This way they can edit that particular record if they want to. I can't figure out which event this is in the datagridview. I've tried many of them and although some of the sort of work, they don't work at 100%. Any ideas Thanks! The following table showing default mouse actions might help you to write the desired actions in the appropriate event handlers. This is from MSDN. Mouse action Description Left mouse button down Makes the clicked cell the ...Show All

  • SQL Server how to get a variable value return back from a child package ?

    I have a parent package (i.e. P) and a child package (C). I was able to easily pass a variable value from P to C. And C did computations and get a result (i.e. integer) and stored this integer to a variable (x). Now I want the value of "x" to be passed back to P and store in P's variable (say Px). Anyone knows how to Thanks Steve Jamie I have another question. I have created a Connection Manager (i.e. sourceConnectionManager ), the connection string of which is determined at the runtime. The connection string is assembled from a parent variable using Expression property of this "sourceConnectionManager". Althought I have manaully set the DelayValidation property of "sourceConnectionMan ...Show All

  • Visual C# Implementing Single Sign On??

    Hi.. What does single sign on refers to How to implement single sign on functionality using c# Musafir wrote: Thank you for your reply. Now i am able to understand what to do . I will post comment, after trying out. Thanks a ton Did you tried out ...Show All

  • Software Development for Windows Vista performance issue with multiple threads?

    I'm making 3 threads that each instantiate a WF that only has one activity (prints "Hello World" to the console) and I run alll of this in a loop about 3 times. It's taking roughly 2 seconds for each loop. Any idea what could be taking so long My code looks something like this Thread[] t = new Thread[iterationCount]; for (int i = 0; i < iterationCount; i++) { t = new Thread(new ThreadStart(new ThreadClass().RunWorkflow)); } DateTime startTime = DateTime.Now; for (int i = 0; i < iterationCount; i++) { t .Start(); } Program.mEvent.WaitOne(); TimeSpan timeElapsed = DateTime.Now - startTime; ...Show All

  • Visual Basic JIT Debugger Error message caused by filelistbox

    I have been working on a program and testing it on another computer that has the .Net framework installed. My program works fine on my computer with .Net installed. However, when I run it on the other computer (with only the framework installed) I get a random error: MyApp.exe - Common Language Runtime Debugging Services Application has generated an exception that could not be handled. Process id=0xf3c (3900), Thread id=0xf64 (3940). [The numbers in this error line are different everytime] When I hit cancel to debug it displays MyApp.exe - No debugger found. Registered HIT debugger is not available. An attempt to launch a JIT debugger with the following command resuled in an error code of 0x2 (2). Please check co ...Show All

  • Microsoft ISV Community Center Forums Disable Shift Key Before Startup

    I was wondering if there was a procedure or function call before the startup for Access 2003. Reason: I would like to disable the shift key if the current user that is logged into windows is not in a table that has windows usernames stored in it. Is this possible to do or must I lead in a different direction. I have been looking everywhere for an answer and nothing like this has arised. Note: I cannot just have two copies (one for me and one for users). ...Show All

©2008 Software Development Network