Search:

Type: Posts; User: proneal

Page 1 of 13 1 2 3 4

Search: Search took 0.09 seconds.

  1. Thread: Invoke error

    by proneal
    Replies
    4
    Views
    827

    VS 2008 Re: Invoke error

    from here, so I figured you were having threading issues..
    Sorry that is a separate object I forgot to exclude when posting.
    Take out the SyncRoot .
    Anything now?
  2. Thread: Invoke error

    by proneal
    Replies
    4
    Views
    827

    VS 2008 Re: Invoke error

    If btnStartButton.InvokeRequired Then

    SyncLock SyncRoot

    Me.btnStartButton.Invoke(New OnConnectReaderD(AddressOf OnConnectReader), New Object() {deviceHandle,...
  3. VS 2005 Re: Issue with IDE and Web Site projects

    I wasn't sure about front Page...I have had probs with it in past, but I think it was to do with ClickOnce deployments and the Server used (apache serving php), but that was a long time ago by todays...
  4. Replies
    3
    Views
    1,337

    VS 2010 Re: On mouse click / keypress

    Come back and let us know how you dealt with it and if need any more help with the next task. If you look up .Paul. -he has System Tray application in Codebank. I hope it was him .. ;)
  5. Replies
    3
    Views
    1,337

    VS 2010 Re: On mouse click / keypress

    Familiarize yourself with this article by member jmcilhinney [John].
    http://jmcilhinney.blogspot.com/2010/08/keyboard-events-in-windows-forms.html

    You would probably handle the KEYUP event,...
  6. VS 2005 Re: Issue with IDE and Web Site projects

    Wow, this would seem to be a major problem for you.
    There are any number of troubleshooting tactics to choose from.
    System restore perhaps.
    Repairing a corrupted registry...
    Uninstall gotomeeting...
  7. VS 2005 Re: Issue with IDE and Web Site projects

    My own UNprofessional opinion is that you have installed another web authoring tool or related which has defaulted your active server pages...or similar has happened?
  8. VS 2008 Re: unable to resetting the date_time variable

    It should work with it too ;)
    Just saying...
  9. Re: read data from .txt file and copy to Clipboard

    I also wanted to explain something about what you want to do and what you would actually be doing.
    IF you already have your database contents stored as string, you just skip the whole notepad...
  10. Re: read data from .txt file and copy to Clipboard

    Welcome to our forum Jessy :)
    I will give you a little code from a recent app of mine.

    Private Sub hTMLToolStripMenuItem1_Click(sender As System.Object, e As System.EventArgs) Handles...
  11. Replies
    3
    Views
    770

    Re: Download files needed for program

    This website, vbforums, has a Codebank whioch has Code for downloading files using several different -and sometimes obsolete since Framework 2- but there are recent ones by very valued members here....
  12. Replies
    3
    Views
    770

    Re: Download files needed for program

    Any good program is set up this way. So, Yes is the answer to your question.
  13. Replies
    4
    Views
    678

    VS 2010 Re: Not sure what to call it

    I'm thinking you could use Double.TryParse(Textbox.text) in Validating?
  14. Replies
    18
    Views
    1,472

    VS 2010 Re: Read textfile

    Dim HAsValue As Boolean = String.Compare(Textbox1.text.Substring(0, 1), String.Empty) = 0 ' This is true.

    so-
    If not HasValue then...
  15. Replies
    18
    Views
    1,472

    VS 2010 Re: Read textfile

    startIndex parameter of Substring is zero-based.
    If the line is empty, then exception will occur. Test with boolean to see if empty or not.
    If the boolean returns True, do your operations on it.
  16. Replies
    12
    Views
    1,211

    Re: uploading to public_html

    Hi, OP.
    Please give Chris001 his rep for his help in Resolving your Thread. Please use your Toolbox of posting to ensure resolved appears in Thread title.


    I like to see resolved because I will...
  17. Replies
    18
    Views
    1,472

    VS 2010 Re: Read textfile

    Try using SUBSTRING of the string of your textbox
    example
    Dim sList As New List(Of String)(IO.File.ReadAllLines("Path"))
    Dim i As Integer
    For i = 0 To sList.Count - 1
    ...
  18. Replies
    12
    Views
    1,211

    Re: uploading to public_html

    Dim file() As Byte = System.IO.File.ReadAllBytes(OpenFileDialog1.FileName)

    The Button click event will not know what you are referring to because openfiledialog is not used within that event. it...
  19. Replies
    3
    Views
    677

    Re: Sending Yahoo SMTP EMail

    It is true last I heard
    BUT if you have an ISP -email- account, use your credentials from -it- to send and receive emails.
  20. VS 2008 Re: Font kerning or letter spacing in richtextbox

    Have u read his article yet?

    And this one is actually one worthy of a look over too
  21. VS 2008 Re: Font kerning or letter spacing in richtextbox

    If I didn't know any better I would say the only answer for you would be here?

    Edit- you may find something here too. Had to search deeper
  22. VS 2008 Re: Font kerning or letter spacing in richtextbox

    Try ForumAccounts class. I have no idea how to solve your problem, yet.
  23. Replies
    1
    Views
    811

    VS 2010 Re: Adding video clip to form.

    Windows include the Windows Media Player and you can also add this as a control to the form. First you must add it to your Toolbox, do this with Toolbox context menu "Choose items..", browse the COM...
  24. Replies
    4
    Views
    854

    Re: Having trouble with a do loop

    Usually I would place the counter variable at end of the Do Loop, because we deal with zero based index projects. This way counter starts at 0 which gives the array -or collection/common, container,...
  25. Replies
    6
    Views
    669

    Re: Space in website structure issue

    Welcome to the forums Tony
    I'm not familiar with working on html through code as of yet but I think there may be an Links collection?
    That would basically be saying same as Links(0), do you see...
  26. Replies
    1
    Views
    557

    VS 2010 Re: Finding specific text from textfiles

    I want to help but there are some issues that need clarifying first.
    First, a file you save to that can be opened in Notepad IS a textfile. In fact, it has to be a regular text file anyways because...
  27. VS 2010 Re: How to count number of items in rtb?

    The following code snippet reads a RichTextBox contents line by line.

    Dim allLines() As String = RichTextBox1.Lines

    For lineCounter = 0 To allLines.GetUpperBound(0)
    ...
  28. VS 2008 Re: Font kerning or letter spacing in richtextbox

    Try Arial Unicode MS
  29. Re: Variable being used before it has been assigned a value

    Dim Robin() As CheckBalance =nothing

    Robin= NEW Checkbalance
    '...
    Dim RobinLen as Integer = Robin.length 'not sure if LEN(Robin) is it's equivalent
    '...
    FileOpen(1, filename, OpenMode.Random,...
  30. Replies
    3
    Views
    721

    VS 2010 Re: Where to save user data?

    ...
    Unexpected Double Post occurred.
    Apologies.
    ..
    I will make use of this post, since I forgot to add deletion method for the IsolatedStorage object created in the previous post of mine...

    -...
  31. Replies
    3
    Views
    721

    VS 2010 Re: Where to save user data?

    Specialfolders, MyDocuments and the like, and so many options to choose, BUT if you encrypt your data, such as passwords, using the IsolatedStorage Namespace -will enable you to isolate your data,...
  32. Thread: help!!!!!

    by proneal
    Replies
    6
    Views
    773

    Re: help!!!!!

    I would NEVER comply with your wishes. I have NO IDEA who you are. Why would I risk my systems functioning well with whatever you may be attempting to achieve here, only if it is just a look at a...
  33. Thread: publish VB.NET

    by proneal
    Replies
    9
    Views
    1,526

    VS 2010 Re: publish VB.NET

    Seems to me it is not packaged with your deployment.
    Do you have COPY ALWAYS invoked in it's properties?

    With that checked out and it is OKAY, then try this code instead:
    Dim swfFileLocation As...
  34. Replies
    4
    Views
    780

    Re: Creating a Folder with 99 Subfolders

    I expanded on .pauls -only because I am unfamiliar yet with Matt's unique approach.
    What I did was to check if folder exist before creating it, this way you can run this and only make the folders...
  35. Replies
    16
    Views
    1,861

    VS 2010 Re: Could this be done?

    So Form2 is the default instance as well. You did not instantiate any new form2, is this right?
  36. Thread: Help?

    by proneal
    Replies
    9
    Views
    1,058

    VS 2010 Re: Help?

    Gatorfan, let me tell you something.
    IF STATEMENT is not function. If is CONDITION.
    Let me ask you something.
    IS there an API that a programmer such as a VB.NET programmer can use from -to...
  37. Replies
    16
    Views
    1,861

    VS 2010 Re: Could this be done?

    Select Case Form2.CheckBox18.Checked
    Case True

    lines(foundIndex) = Regex.Replace(lines(foundIndex), "(?<=" & "sIntroSequence" & "=)\d+", "BGS_LOGO.BIK") 'WRITE...
  38. Replies
    4
    Views
    6,100

    Re: VB 2010 Label Question

    This is basically true although I have been known to use a blank label as a sort of placeholder for another Control that would be loaded from the program running. The Label is invisible when used...
  39. Replies
    2
    Views
    679

    VS 2008 Re: Left Windows key + Tab

    Please look at Member jmcilhinney for his Keydown/KeyPRess..blog post. Great code examples and great explanations..Worth your time to read.

    Good Luck!

    Private Sub TextBox1_PreviewKeyDown(ByVal...
  40. VS 2008 Re: how to hide process in the taskmanager of windows 7 in vb.net?

    Umm, Bali Powder for me. No alcohol. pancreas will not take another drop.
    Sorry for the ramble again.
    See?
    forget it.
    Now I got to watch every frikin word and I really really hate that.
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width