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

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

VBKeith

Member List

ensconced
Shijun
CosmoTopper777
Moussa El-tayeb
scorpion89
LeeMitch
David Griffin
Moritz Pfennig
Ramji
vinoraja
Vigilante
Jay Hickerson MS
Steve-x
Chuck B
Dedidado
Maf
Matthew Stoecker
Stano
Snarfster
fmiranda
Only Title

VBKeith's Q&A profile

  • Visual C# Count Line

    How to CountLine in notepad file Atilla Koklu wrote: How to CountLine in notepad file You could read blocks at a time and count the \r\n occurrences. That way you avoid having to load the entire file into memory all at once. ...Show All

  • Visual C# Unable to write data to HttpWebRequest...

    Hi All,          I am using HttpWebRequest in my code. My problem is that I want to post some data using HttpWebRequest, I have also written some code for this, see the part of code below,       HWReq.ContentLength = Buffer.Length;       Stream PostData = HWReq.GetRequestStream();                                            // HWReq is the HttpWebRequest object.       PostD ...Show All

  • Windows Forms Drawing a panel outside window bounds

    I am trying to update/Refresh a moving panel that is  within  a windows form that exceeds the forms bounds.  I  would like to know how to reset the bounds...or have the  panel drawn.  Its not visible at the moment.  Thank you. MyForm.Width = newWidthThatIncludesPanel; or MyForm.Height = newHeightThatIncludesPanel; If you increment the Height/Width in s ...Show All

  • Visual C# C# and Lotus Notes

    Does anyone have any suggestions for using C# to do a lookup in Lotus Notes address book Any Help would be apppreciated Thank You A quick google came up with http://www.proposion.com/site/proposion.nsf/pages/N2N , but it also says you can use ODBC to access Notes. Maybe this helps: http://builder.com.com/5100-6388-5116212.html ...Show All

  • Smart Device Development VS 2005 Standard Edition Can't connect to Mobile 5.0 device

    Every time I try to connect to my PDA ( Dell Axim x51 with Mobile 5.0 ) through VS 2005 it fails. It says "Connection Failed. Can't connect to network. Check network settings" or something to that affect. I have Active Sync 4.0. I know the connection to the PDA was made because a few messages popped up on the PDA asking if i should allow a couple of programs should be executed. I am completely new to Mobile development. Am I missing something obvious I searched the forums and didn't see any similar threads so maybe I am just the only one, :). Thanks, Pico The problem may be that you might have checked ...Show All

  • Visual FoxPro EOF() for a low level file function

    Hi there, I just ran into a problem with this code. What I want to do is to open a TEXT or binary data file and read it as a *binary* file byte by byte. What I found to my surprise was that the VFP EOF() function presumes that the file that's been opened is a TABLE! How do you go about reading bytes from a data file I am getting an error message that the alias is not found.. filename1 = "C:\Program Files\tcp_ip.txt" filehandle1 = FOPEN (filename1,0) IF filehandle1 != 1    DO WHILE NOT EOF (filename1)      FREAD (filehandle1,1)    ENDDO ENDIF Thanks. Instead of EOF() try this ...Show All

  • Windows Forms Setup

    How to create an setup for dotnet 2003 application so that it can be installed on client PC Well if you mean a VS setup&deployment project, these might help: http://www.simple-talk.com/2005/04/25/getting-started-with-setup-projects/ http://www.simple-talk.com/2005/06/07/visual-studio-setup/ http://www.simple-talk.com/2005/07/18/updates-to-setup-projects/ Clickonce is VS 2005, so I suspect you're not referring to that. ...Show All

  • Visual Basic How to show all decimal places?

    When the number is large it is displayed in a short form i.e. 1 / 10,000,000,000 is 1e-10. Is there a way to show all the decimal places i.e. 1 / 10,000,000,000 is 0.0000000001. I would want to show the short form if the number exceeds, say, 15 decimal places. Thank you. Use something like this: Dim d As Double = 1.234567890123456789 Dim s As String = d.ToString("f15") To read more about formatting strings, go here... ...Show All

  • Windows Forms Linked Scrolling of 2 TextBoxes

    I have 2 TextBoxes with content of the same height.  How do you link the scrolling so that scrolling one also scrolls the other   Best example use of this would the diff comparison feature of SourceSafe.     Thank you very much...i was trying to solve the same issue here. ...Show All

  • Visual Studio It is possible to write my own source control plugin?

    I am just wondering if it is possible to write my own source control plugin for VS. For example, It would be very nice if we have a source control plugin that bridges VS and the popular CVS or Subversion. Are the source control plugin interfaces open to developers Be sure to let us all know when you're done - we'd love to try it out. There are already a few available, by the way, but (with the exception of the commercial version, which I haven't tried), all of them are pretty poor. Have a look at http://subversion.tigris.org/links.htm for details... ...Show All

  • Windows Forms UpdateAsync() hanging

    In using the example code from MSDN for programmatic update, my code gets to the async call, but fires no events. I changed the async code for checking for an update to synchronous code and it works fine. But then the call to UpdateAsync() fires no events and downloads no bits, even though it knows that there is a new version. The synchronous Update() function works fine, though. Naturally, I want async so that I can get the progress notifications and give my user a progress update during the download. Some code... (splashScreen is a windows form that is open, non-modally, during startup. updateCheckComplete is a boolean flag that I use ...Show All

  • Windows Forms restricting Data Grid navigation

    Hi I have a datagrid with two columns.  The left column has been setup to be readonly.  Is there a way to stop the user from tabbing into it   Is there a tabstop option for a DataColumn or does anyone know a devilishly wicked way of doing it Matt You should check out:  http://www.syncfusion.com/FAQ/WinForms You'll want to do so ...Show All

  • .NET Development Problem of reading image contents from xml in XSL

    Hi I am using C# code to read the image contents from one message and i am writing that contents in to one xml file. and also that xml file is having the reference to xsl. in Xsl i coded like this to read the image contents and displaying images <xsl:element name="img"> <xsl:attribute name="src"> <xsl:value-of select="gif_image"/> </xsl:attribute> <xsl:attribute name="width"> <xsl:value-of select="150"/> </xsl:attribute> <xsl:attribute name="height"> <xsl:value-of select="150"/> </xsl:attribute> ...Show All

  • Windows Forms Splash Screen in VB 2005

    I have a Small question i used the preset splash screen that is available in VB 2005 now when i run my project it only shows the splash screen for about 1 second how would i go about controlling the time to show the splash screen before it to continue. Thanks man for the advice it really helps me ...Show All

  • Windows Forms Method '<method>' cannot handle Event '<event>' because...

    I am getting the following error where ntfHelpDesk is a NotifyIcon. <color="firebrick">Method 'ntfHelpDesk_DoubleClick' cannot handle Event 'DoubleClick' because they do not have the same signature.</color> Any help is appreciated. <quote> Now that I'm moving from ASP.Net to Windows Apps </quote> woohoo...way to be!  :)  I did the same thing about 6-9 months& ...Show All

©2008 Software Development Network