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

Software Development Network >> Jeff.H.'s Q&A profile

Jeff.H.

Member List

Michiel de Bruijn
Bilbob
S_Gibson
djshades2004
Eltial
BigRedDog
cam_church
Harlow Burgess
MartinClayton
Brian Cross
Davey4725
peacefrog
PeterZ
vc80crtdll
toooooooona
robbyduffy
reshadi
Idgaf
raidersiowa
AdriaanDavel
Only Title

Jeff.H.'s Q&A profile

  • Visual Basic Serial communications garbled

    I have a problem with an application that was written in VB 6.0. I wrote an application in VB 6.0 about two years ago and it has been running fine until recently. At some of our cutomers locations the serial communications is being sent gets garbled, but it recieves fine. If the the computer is reset and the application is run, it runs ok for a couple of days and then the problem reoccurs. Any ideas on what it could be These forums are for VB.NET and there are better places to find answers for older versions of VB. The serial communication methods and controls are totally different in VB.Net Maybe the ...Show All

  • .NET Development Audio recording in asp.net

    I need to implement voice recording in my web application when the user is speaking through an external device connected through the USB port. The user should be able to record,pause,play and so on from the controls on the device. Can anybody help me with this. I probably should be building a windows control for this and should be able to put it on the aspx page. But I want a start on this. I am coding in vb.net. Any help is appreciated.     You are unlikely to get an answer to your question on this forum. The people that watch this forum deal with networking, not audio recording. Unfortunately, I don't know which forum ...Show All

  • Visual Studio Directions/Sys Reqs/Pre Reqs needed: VS2005 beta 1 going to VS2005 beta 2

    Help Please...I obviously missed something along the way.  I had VS2005 Beta 1 installed (whidbey) and when the beta 1 testing period expired I removed it and got VS2005 Team beta 2.         My OS is Windows 2000 professional (single machine) and there seemed to be no problems with beta1 (whidbey) but then I get beta 2 and all of a sudden I need Win2003 server and sharepoint services....    What did I miss in the transition between beta 1 release and beta 2. Any directions, links to info, would be greatly appreciated. Thanks All...... That was the first Issue ...Show All

  • Visual C# Check and verify that a smtp-server is up and running?

    Hey there. I have an application in C#, that is depending on the fact that a smtp-server is valid and running. Is there any way of checking if a given smtp-server is "alive" SmtpClient smtpclient = New SmtpClient(<server>); /Kristian You can try to handshake with the Smtp server, it the handshake could be done everything is running normally. Take a look at the Smtp protocol how to implement an handshake or take a look at the following article that demostrates how to then email with C#. It implements all commands and you can just pickout the handshake process: Sending email with c# u ...Show All

  • Windows Forms ClickOnce installing in Documents and Settings\{user}\Local Settings\Apps\...

    How do I get this to install in programs/{appname} with ClickOnce You can't. Or at least the application can't. This FAQ says the administrator can change the location of the ClickOnce store. I've never looked into how to do that. http://www.windowsforms.net/FAQs/default.aspx PageID=1&CategoryID=24&tabindex=2 Mike ...Show All

  • .NET Development Creating ASP Webpages / VS2003.Net

    I have Visual Studio.Net 2003 installed on my main development machine. I do not have IIS installed on this PC because I have a second PC running Windows XP Pro with IIS enabled on it and I wish to use this to host my ASP.Net development projects. I am finding it difficult to get Visual Studio.Net to create the project on the other PC. I have shared the folder wwwroot for full access on my LAN previously for my PHP development. I have had Visual Studio create the project but gave me some warning about been unable to configure the application root and saying it's probably something about WinNT/2000 mixed environments [It's wrong - Both PC's a ...Show All

  • Visual Basic Virtual PC 2004

    I currently use WS 2003 for my operating system.  I am preparing to purchase a new AMD 64 bit  computer and am interested in suggestions for setting it up for both 32 and 64 bit operation.  Is the "Virtual PC 2004" technology a good way to for my 32 and 64 bit operating systems. Thanks, Fred Virtual PC does not support 64 bit Windows. But you can create two partitions on your hard drive, install a 32 bit OS on one and a 64 bit OS on the other. If you really need to, that is, because most 32 bit applications run just fine on 64 bit Windows. ...Show All

  • Windows Forms Treeview Bug

    It is not possible to make a single node bold without the end of the node text being clipped.  The work around this problem, I tried setting all nodes to bold and then setting all but one to regular.  The problem now is that the selection box when selecting a non-bold node is too big! This is quite a major problem as it means . ...Show All

  • Visual Studio Express Editions first c# errors

    Here is my code and i cannot compile it. i cannot understand why public static void Main() { // single dimentional array int [] numbers = new int [5]; // multidimentional array string [,] names = new string [5,4]; //array of arrays byte [][] scores = new byte [5][]; //create jagged array for ( int i=0;i<scores.length; i++){ scores = new byte [i+3]; } // print each row for ( int i=0;i<scores.length; i++){ console.writeline( "length of row {0} is {1}" ,i,scores .Length); } Errors that i get on compiling Error 1 'System.Array' does not c ...Show All

  • SQL Server Why can't query analyzer be made to work for SQL 2005?

    I know my investigation is pretty light but it appears that DMO works fine against SQL 2005 (we use the same code to generate script against a SQL 2005 server that we do for a sql 2000 server). Why prevent query analyzer from being able to use the same DMO so that it works on SQL 2005. I really miss the simple ways of using query analyzer that I have become accustomed to and would love to be able to keep it in my toolbox foruse with both databases. Also why (when using query analyzer search, one of the best features that I miss) does it prompt you to install the stored procedure and then not work anyway sp_msobjectsearch . ...Show All

  • Visual FoxPro Form Feed Character

    Hello Experts: I am using FPUTS to write text to a file. At the end of each page I need to insert Form Feed Character. How can I do this I normally work them from memory but any decent ASCII table would show it. Here's one I found through Google: http://www.lookuptables.com/ ...Show All

  • Visual C# MessageBox

    I kno I have posted this before, but I didnt get the response I was looking for. I have a messagebox, and when it pops up, I want every part of the computer to be inaccessable until the user presses ok in the messagebox. Can someone tell me how to do this I'm faily new to c#, but from what I've learned you can only make your application inaccessable with a messagebox not the entire computer. Thats what managed code is all about, so that your code doesnt interfere with other applictions. Look into unmanaged code. ...Show All

  • Smart Device Development DMA transport update patch no longer downloadable

    The DMA transport update patch is no longer available from microsoft's site. It says that this download is no longer available. Pls let me know if their is a workaround for this as without this the emulator for VS2005 beta 2 (eVC4.0 SP3 already installed on machine before installing VS2005 beta2) does not connect to VS2005. Please upgrade to released version of VS 2005. Beta is long gone and not supported. Please make sure to remove Beta properly before installing RTM. Closing as beta is no longer supported. ...Show All

  • Windows Forms The process cannot access the file because it is being used by another process

    I am very puzzled by a piece of new code that i am developing. Here is the exception: The Exception is: The process cannot access the file 'G:\Code\aVb2005\samples\Menubars\MenuBars\bin\Debug\development.dbs' because it is being used by another process. Source: "mscorlib" Stack:   at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath)    at System.IO.FileStream.Init(String path, FileMode mode, FileAccess access, Int32 rights, Boolean useRights, FileShare share, Int32 bufferSize, FileOptions options, SECURITY_ATTRIBUTES secAttrs, String msgPath, Boolean bFromProxy)    at System.IO.FileStream..cto ...Show All

  • Windows Forms WebBrowser Creates Handles without end

    Hi! When I connect with the webBrowser to a Website where one or two javascripts counts time down and I look a the Task-Manager the number of handles increases evry second by three or four.. After an hour the number of handles is about 15000!!! Whats wrong with that, and how can I stop it Its definitely the WebBrowser Control and the WebPage, because if I don't navigate to that side the effect doesn't occour... Please help! Greets, Alex Tough to say. Depends on the control you are using. Please post this in the windows forms http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=8&SiteID=1 ...Show All

©2008 Software Development Network