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

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

jhoney

Member List

prami
october
Fraze
Michael Rockwell
dekurver
Zartaj
paxa
n3sachde
blogster
NikonC
Andrew Sims
Mayank Prajapati
Woody UK
ulu
hvac-r_tech
SBurden
Arunka
davidhite
Martyn Lovell
bilescu2
Only Title

jhoney's Q&A profile

  • SQL Server Configure Report Server with SQL Server Express with Advanced Services.

    I'm having a world of trouble with the Reporting Services Server. The install went fine. I went in to configure the Report Server and when creating the Report Server and the Report Manager virtual directories I get the following error: "The virtual directory could not be created. The previously set virtual directory will still be used." The problem with this is that I have not previously set a virtual directory. When clicking on the link I get the additional error information: "System.IO.FileNotFoundException: at System.Runtime.InteropServices.Marshal.ThrowExceptionForHRInternal(Int32 errorCode, IntPtr errorInfo) at System. ...Show All

  • Smart Device Development Mobile (Pocket PC) and MaskedTextBox

    I have been trying to get the maskedtextbox to work on a pocket pc application but am unable to get it to work.  I have searched MSDN and found documentation that states it workes on the pocket pc platform. Any help would be appreciated. Thanks, Glenn W. Johnson The .NET Compact Framework v1 or v2 doesn't contain a MaskedTextBox control, unless you create a custom control yourself. There is a third-party example here:- http://www.mooseworkssoftware.com/GUI.htm Peter ...Show All

  • SQL Server Troubles returning values with SQL Statement -

    Hi, I just want to know the following. Is it posible to write a SQL statement that searches all values in a table where the e.g: "Jobid = 1" and sort the result set according to the "CategoryID" then if you want to display the values, you can populate them according to the "CategoryID" and then also write the result set to a "text file", and catagorize everything according to the "categoryID" in the following format Category Number: 8 Description: Site Date Labour Hours Rate Subtotal 10/05/2005 Artisan 20 ...Show All

  • Visual Studio 2008 (Pre-release) Chunking and Streaming Custom Channel samples

    Are the Chunking and Streaming Custom Channel samples still available on the new http://wcf.netfx3.com/ site Now we uploaded this sample,you can download this sample from here http://wcf.netfx3.com/files/folders/protocol_channels/entry3545.aspx -Thank you Madhu ...Show All

  • Windows Forms How do I get a Winforms application embedded in an html page to bind to 1.1 Framework

    I have a winforms application that is embedded in an html page with an object tag [1].   Our application works correctly under 1.1, but not 2.0 (we get some interesting security exceptions around statics, so I would like to force it to run on the 1.1 Framework. I added the requiredRuntime element to the startup section of the webclient.dll.config file [2] and expected that it would be started against 1.1 Framework.   However it still gets launched with the 2.0 framework. Other details: 1) The IIS logs show the webclient.dll.config being downloaded. 2) We have a pair of applications launched over the web (via an href[3]) – wit ...Show All

  • Visual Studio Express Editions Need a C# EDITOR control

    Hello I need a c# html editor controls. can any one suggest a free one. i have got one that is realy good ,i am able to do a lot of things using that .But its realy costly. But i think i realy need some thing smilar to that only. you can also check that on C# HTML Editor control Please mail me at go4kpo@gmail.com thanks Shya   There are several around, but for good ones you are going to have to pay for them. I would do some searching on the open source sites to see what you can find. Try www.codeproject.com , and www.planet-source-code.com for starters. ...Show All

  • .NET Development .NET Runtime

    I have an application that I distributed to a windows 2000 server machine with only the .net runtime on it.  The application would not even start.  I created a quick form program with a label where the text was just "Hi".  Built the installation, installed it on the server and it wouldn't start.  I downloaded the .NET SDK to the windows 2k machine, installed it and the aplications ran fine.  What am I missing in the installation build that would cause this to happen I agree that it general installing the SDK shouldn't affect whether your app runs or not.  I don't know exactly w ...Show All

  • Visual Studio Team System When to use which requirement type

    Does anyone know of a good resource for defining the different types of requirements (scenario, functional, QOS, etc.) Hi Randy I was waiting for your blog entry on the explanation of various Requirement types. You said you will post it - have you post it already If yes, then please provide me the link. If no, then when you are planning to do that, please let us know. If you know some other references that can help me on this issue, please let me know. Thanks, Mamun ...Show All

  • Visual Studio Express Editions Are the Express Editions Free ?

    Hi I was downloading the express editions of Visual Web Developer and VC++. Are the express editions free for use If so, then what does the registration process do Thanks Refer to this link.... ...Show All

  • SQL Server how to clean all messages of a queue ?

        How to clean all messages of a queue     Online books says it can be done as below:         RECEIVE * FROM ExpenseQueue      But it only delete a row every time,and I found all the three statement only delete a row:         RECEIVE * FROM ExpenseQueue          RECEIVE TOP(1) * FROM ExpenseQueue          RECEIVE TOP(n) * FROM ExpenseQueue  That would clean up one end of the conversations in the queue.  Keep in mind ...Show All

  • Windows Forms global mouse hooks in .net

    Suppose a process notepad.exe has started. I like to know how to detect a period of inactivity of a user for that process, for instance how long the user has not entered anything into notepad.Maybe System.Diagnostics can solve this problem but i did not find much information on the websites.Hope to gather some advice here. Thanks a lot G_Zola, Have you found a solution to your issue I'm don't believe the current APIs in System.Diagnostics will be able to help. It sounds as though you are interested in UI interaction - from the user - and not simply repainting, notepad idle processing, or OS interaction wit ...Show All

  • .NET Development Extracting data from xml file

    Hi, This is the first time I've had to use xml files in VS C++ .NET and to be honest it's starting to get on my nerves :). I read the various information on msdn but I just can't find what I'm looking for. I have an xml file which looks a bit like this: <RaceResults> <Practice1> <Driver> <Name>drivername</Name> <someinfo>blabla</someinfo> </Driver> </Practice1> <Warmup> <Driver> <Name>drivername</Name> <someinfo>blabla</someinfo> </Driver> </Warmup> <Race> <Driver> <Name>dri ...Show All

  • Visual C++ Problem including <windows.h>

    Hi there. I've got two systems - a desktop and a laptop, both running VC2003. I start a new Windows Form project on the laptop ,add a button and include a call to System::Windows::Forms::MessageBox::Show( S"hello" ); and then place #include <windows.h> at the top of the page, I get these errors: i:\temp\test34\Form1.h(86): error C2039: 'MessageBoxA' : is not a member of 'System::Windows::Forms' i:\temp\test34\Form1.h(86): error C2660: 'System::Windows::Forms::Control::Show' : function does not take 1 arguments If I do the exact same thing on the desktop, it compiles OK. If I copy the laptop project to the ...Show All

  • .NET Development What is remoting?

    Please suggest a book or some example   Vikram wrote: Hi, While I agree with Hussein and Nicholas, I would still recommend you read the blog of Matt Tavis where he has some recommendations regarding the usage of .NET Remoting. http://blogs.msdn.com/mattavis/default.aspx Regards, Vikram http://dotnetupdate.blogspot.com/    It should also be noted that remoting is not going to be enhanced beyond 2.0, and that EnterpriseServices has been noted as being the easiest in terms of upgrading to Indigo.  For all intents and purposes, Remoting is now a dead end.         & ...Show All

  • SQL Server SQL Server 2005 SP1 installation hangs at authentication verification

    After the installer has asked for authentication mode and has started verifying the authentication it simply hangs. I've let it sit there for an hour before taking the installer forcibly down but nothing seems to be happening except for two osql.exe processes showing up in the task manager. I've tried both windows authentication and SQL server authentication but the outcome is always the same. At the same time I'm, however, able to login to the database engine and all services with management studio using both authentication modes. The last few lines in HotFix.log are as follows: 05/09/2006 09:49:09.999 Authenticating user ...Show All

©2008 Software Development Network