Search:

Type: Posts; User: georgesutfin

Page 1 of 13 1 2 3 4

Search: Search took 0.08 seconds.

  1. Replies
    18
    Views
    469

    VS 2019 Re: Process faster in nested for loops

    I have too many questions to pose a useful example. So I will just suggest the main idea. What about a binary sort they are fast
  2. VS 2010 Re: Interchangeable lines of code not working

    for my purposes only the backcolor matters
  3. VS 2010 Re: Interchangeable lines of code not working

    Option Strict On
    Option Explicit On
    Public Class Form1
    Dim A(3), B(3) As TextBox
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

    ...
  4. VS 2010 Re: Interchangeable lines of code not working

    Thank you so much!
  5. VS 2010 [RESOLVED] Interchangeable lines of code not working

    I have some very complex code that uses the backcolor of textboxes. At one point I used the following loop to copy an array of textbox to another array of textbox
    For w = 0 To 3...
  6. VS 2010 Re: how to drag and drop a textbox .backcolor

    Thank You both so much. Love having working code to learn from.
  7. VS 2010 [RESOLVED] how to drag and drop a textbox .backcolor

    Hello
    I have the following code that drags and drops a textbox.text. It works the way I want it to. The problem is I want to drag and drop the textbox.backcolor and am at a loss for how to do it.
    ...
  8. Replies
    4
    Views
    977

    VS 2010 Re: do you use tortoise with vb.net

    No I have no reason for choosing a subversion.
    Please tell me more about Git. I know nothing about it at all.
    Thanks
    George
  9. Replies
    4
    Views
    977

    VS 2010 do you use tortoise with vb.net

    Hello
    I am trying to work through the tutorial for tortoise but and having problems.
    I was able to download the program
    I have created a Repository and Created a folder structure.

    Now we have...
  10. VS 2010 Re: form1 becomes non responsive

    Thank You all for your input!
    I have been unable to recreate the problem! I made no changes to the code and did not reload the program. Yesterday my computer sounded like it was drawing a lot of...
  11. VS 2010 Re: form1 becomes non responsive

    My code for playing baccarat is 925 lines long what part do you want to see? All of it?
  12. VS 2010 [RESOLVED] form1 becomes non responsive

    Hello
    I am running 100 shoes of baccarat, I have the ability to set the seed for the rng thus I am able to repeat a given group of 100. Sometimes everything goes as it should. Other times at...
  13. VS 2010 [RESOLVED] how to redim and set values of an array all at once

    Hello
    I would like to redim an array and assign its values.
    I have not found anything on the web.
    Here is what I have.

    Dim pattern() As String = {"bPPPPb", "PbbbbP", "bPPPb", "PbbbP", "bPPb",...
  14. Replies
    9
    Views
    1,097

    Re: Making the Paint routine fire?

    I would try form1_show instead of form1_load
    I would also try putting application create a form in its own sub.
    I have had trouble putting things in the form.load.
  15. Replies
    7
    Views
    1,368

    VS 2010 Re: email exe file

    Thank all of you for your input. I am going to follow up on google drive it looks like you can send an exe file. I am going to mark this as resolved.
    Thanks agaom
    George
  16. Replies
    7
    Views
    1,368

    VS 2010 Re: email exe file

    already tried both of those
  17. Replies
    7
    Views
    1,368

    VS 2010 Re: email exe file

    I have been trying to use the website maketecheasy for help. basicaly you embed an exe file in a photo and then email. I am unable to extract the exe after emailing it to myself
  18. Replies
    7
    Views
    1,368

    VS 2010 [RESOLVED] email exe file

    Hello
    How can I email a vb.exe file from chrome using 7 professional?
    I have googled and been unable to make it work'
    George
  19. VS 2010 [RESOLVED] need help understanding one line of code that does a replacement of text

    I am replacing a particular piece of text with a "$". It is the only "$" in the program
    The value for r is 6 and the number of "$" is 11. How can this happen?

    For py = 1 To 9
    target =...
  20. Replies
    8
    Views
    1,383

    VS 2010 Re: syntax needed

    Hello
    I have three arrays that I manipulate in the same way.
    I do this by calling a sub 3 times passing the name of the array one at a time from a second sub

    Code:
    Private Sub rowscol(ByVal...
  21. Replies
    8
    Views
    1,383

    VS 2010 Re: syntax needed

    The suggested reference does not seem to help me. It is the use of empty parentheses and braces that I need help with.
    Dim tmparray(,)(,) As Button = {rows, cols}
    rows (,)= {Button1, Button2,...
  22. Replies
    8
    Views
    1,383

    VS 2010 [RESOLVED] syntax needed

    Hello

    Could someone provide the syntax to make this work?

    Public Class Form1
    Private rows(,) As Button
    Private cols(,) As Button

    Private Sub rowscol()
    Dim...
  23. VS 2010 [RESOLVED] iterate thru variables by name

    Hello
    I have three arrays that I manipulate in the same way.
    I do this by calling a sub 3 times passing the name of the array one at a time from a second sub


    Private Sub rowscol(ByVal...
  24. VS 2010 Re: Help with writing txt file

    You are correct!
    Thank you
    George
  25. VS 2010 Re: Help with writing txt file

    Thank you for the quick answer. I don't mean to argue but, I am writing to the txt file in the resources.
  26. VS 2010 [RESOLVED] Help with writing txt file

    Hello
    I have a program that has a txt file in it's resources
    In this program, I create another entry and write it to the file.
    Then I use the information that I used to write to the file in the...
  27. Replies
    2
    Views
    925

    VS 2010 Re: help with array.copy

    Thank You
    Your explanation was very helpful
    George
  28. Replies
    2
    Views
    925

    VS 2010 [RESOLVED] help with array.copy

    Hello
    What I am trying to do is: save the original array, modify the original array, restore the original array.
    Private Sub tenthround()
    Dim storebutton(80) As Button
    Dim...
  29. Replies
    6
    Views
    1,207

    VS 2010 Re: [RESOLVED] endofstream

    delaney thank you I didn't know that
  30. Replies
    6
    Views
    1,207

    VS 2010 Re: [RESOLVED] endofstream

    Thank you! It makes sense now.
    optionbase1 your post WAS helpful.
    I was reading streamreader incorrectly
  31. Replies
    6
    Views
    1,207

    VS 2010 Re: endofstream

    I am sorry I did not find the link useful (it is in c# but I ran it through a converter) the tutorial was written in vb.net 2010. I've imported system and system.io (did not help) Consider me to be...
  32. Replies
    6
    Views
    1,207

    VS 2010 [RESOLVED] endofstream

    Hello
    I am working through a tutorial written in vb.net 2010 . I am using 2010 professional. The tutorial calls for the use of .endofstream , I get an error message (Error 1 'endofstream' is not a...
  33. Replies
    4
    Views
    1,026

    VS 2010 Re: position cursor

    you were right there was recursion(unwanted)
    thanks
    george
  34. Replies
    4
    Views
    1,026

    VS 2010 Re: position cursor

    i've tried
    Cursor.Position = New Point(Cursor.Position.X + 50, Cursor.Position.Y + 50)
    but it locks the computer up because there is no mouse cursor
  35. Replies
    4
    Views
    1,026

    VS 2010 position cursor

    Hello
    I've been trying to locate cursor at a given position on my form. googling has not helped so far.
    if you could point me in the right direction or provide a code example I would be grateful....
  36. Replies
    8
    Views
    1,208

    VS 2010 Re: [RESOLVED] there is no end if why

    Thanks for the explanation
    George
  37. Replies
    8
    Views
    1,208

    VS 2010 [RESOLVED] there is no end if why

    Public Function getkeystate(ByVal key1 As Integer) As Boolean
    Dim s As Short
    s = getasynckeystate(key1)
    If s = 0 Then Return False
    Return True
    End Function...
  38. Replies
    8
    Views
    1,608

    VS 2010 Re: drag and drop

    .paul thank you for the working example.
  39. Replies
    8
    Views
    1,608

    VS 2010 Re: drag and drop

    thank you .paul
    I have a better understanding now.

    Public Class Form1
    Private Sub textBox1_mousedown(ByVal sender As Object, ByVal e As System.Windows.Forms. MouseEventArgs) Handles...
  40. Replies
    8
    Views
    1,608

    VS 2010 [RESOLVED] drag and drop

    Hello
    I am trying to learn about drag and drop. I found a got to work dragging text from a textbox1 to a drop in a listbox1.
    I am now trying to drag the backcolor of textbox1 and drop it in...
Results 1 to 40 of 486
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width