Search:

Type: Posts; User: kylekocak

Page 1 of 2 1 2

Search: Search took 0.05 seconds.

  1. Replies
    1
    Views
    458

    PrintData is freezing up program

    Set RS = DBS.OpenRecordset("Threshing List", dbOpenDynaset)
    RS.FindFirst ("[Barcode] = '" & Me.Text0 & "'")

    If Me.Label9.Caption = "Number:" Then

    RS.Edit
    RS("Number") = Me.Text8
    ...
  2. Replies
    2
    Views
    380

    Re: Validation Rule

    btw....i tried this in the validation rule box:


    (???##??<900000) AND (???##??>799999)
  3. Replies
    2
    Views
    380

    Validation Rule

    i have got a database that is supposed to enter a combination of numbers and letters (i.e. ING07NP800001)... the ING07NP stays the same..the only thing that changes in the last 6 digits. I want to...
  4. Replies
    22
    Views
    1,279

    Re: Filling excel column with data...

    bump


    :frustrated:

    so is there ANY simple way to just fill a column one cell at a time every time a button is clicked......
  5. Replies
    3
    Views
    867

    colliding graphics

    If Ball.VisibleClipBounds.Bottom = Bar.VisibleClipBounds.Top Then
    tracker = 500
    tracker2 = 500
    End If


    shouldn't this take care of two objects colliding?? when...
  6. Replies
    13
    Views
    1,909

    Re: moving the ball in PONG

    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick, MyBase.Move
    Ball = Me.CreateGraphics
    Ball.Clear(Me.BackColor)
    If y...
  7. Replies
    13
    Views
    1,909

    Re: moving the ball in PONG

    Dim movepix As Integer
    Dim negmovepix As Integer
    Dim go As Boolean
    go = False
    movepix = 5
    negmovepix = -5
    Ball = Me.CreateGraphics
    ...
  8. Replies
    13
    Views
    1,909

    Re: moving the ball in PONG

    well, what is the best way to manipulate their location...re-draw them every Timer1_Tick()?
  9. Replies
    5
    Views
    501

    Re: copy linked database??

    It's just Access.....The i want to copy a table with about 165,000 entried.....and no, the database is not in use
  10. Replies
    13
    Views
    1,909

    Re: moving the ball in PONG

    that's kinda of a general problem i have been running in to....... the .height() and .width() are not members of the System.Drawing.Graphics class.....
  11. Replies
    13
    Views
    1,909

    moving the ball in PONG

    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick, MyBase.Move
    Dim movepix As Integer
    movepix = 5
    Ball =...
  12. Replies
    5
    Views
    501

    copy linked database??

    how do you copy a linked database...i need to make a hard copy on the hard drive....I click export and it gives me an error
  13. Replies
    3
    Views
    904

    Re: moving a drawing

    well....what i am saying is that there ISN'T anything under the graphics class that i can see that will allow me to do this...

    Ball.FillEllipse(Brushes.Yellow, 100, 120, 20, 20)
    ...
  14. Replies
    3
    Views
    904

    moving a drawing

    i am just wondering how you move around objects declared as

    Dim example As System.Drawings.Graphics



    example.left
    example.top
  15. Replies
    3
    Views
    504

    Re: Keypress Method

    i've never heard of the KeyPreview method.....but more importantly....i want to used the method for the following:

    ,
    .
    a
    d
  16. Replies
    3
    Views
    504

    Keypress Method

    Private Sub Form1_Keypress(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Me.KeyPress

    End Sub

    So i want to create a method for when a certain key is pressed, a certain...
  17. Replies
    1
    Views
    613

    Error loading graphics

    Me.Width = 400
    Me.Height = 350

    Bar = Me.CreateGraphics
    Ball = Me.CreateGraphics
    Ball.FillEllipse(Brushes.Yellow, 100, 120, 20, 20)
    ...
  18. Replies
    22
    Views
    1,279

    Re: Filling excel column with data...

    hmm...that looks like it copies what is in cell(i)....and pastes it to another cell....correct?
  19. Replies
    22
    Views
    1,279

    Re: Filling excel column with data...

    throws out a "COM Exception Error"
  20. Replies
    22
    Views
    1,279

    Re: Filling excel column with data...

    Dim column As Excel.Range = currentsheet.Range("J1", "J1")
    Dim current As Excel.Range
    Dim last As Excel.Range = currentsheet.UsedRange
    Dim counter As Integer =...
  21. Replies
    22
    Views
    1,279

    Re: Filling excel column with data...

    that helps....now for the task of writing the data to the excel column...

    i'm lost on how to write this part....i've tried multiple codes....my more recent attempt is to search the column j until...
  22. Replies
    22
    Views
    1,279

    Re: Filling excel column with data...

    ok, i am struggling because of my lack-of/non-existent experience....

    i am trying to think of an alternate strategy here because i can can't anything to work..

    i am thinking maybe everytime the...
  23. Replies
    22
    Views
    1,279

    Re: Filling excel column with data...

    Public Sub TextBox7_LostFocus(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox7.LostFocus
    OpenFileDialog1.ShowDialog()
    OpenFileName =...
  24. Replies
    22
    Views
    1,279

    Re: Filling excel column with data...

    Well, my thinking is, that the user types in whatever number they need in TextBox7 and hits tab...which processes the data in TextBox7 into an excel cell, and then leaves Textbox7 highlighted for a...
  25. Replies
    22
    Views
    1,279

    Re: Filling excel column with data...

    sorry, i had yours in my code, i just typed it wrong here....

    Public Sub TextBox7_TabIndexchanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox7.TabIndexChanged
    ...
  26. Replies
    22
    Views
    1,279

    Re: Filling excel column with data...

    it keeps throwing out a "COM exception Unhandled" error at me

    "Exception from HRESULT: 0x800A03EC"


    tempdata = currentsheet.Cells.Range(1, 10)
  27. Replies
    22
    Views
    1,279

    Filling excel column with data...

    Dim moApp As Excel.Application
    moApp = DirectCast(CreateObject("Excel.Application"), Excel.Application)
    moApp.Visible = False
    Dim Workbook As Excel.Workbook =...
  28. Replies
    11
    Views
    1,211

    Re: Display Text on multiple forms

    bump
  29. Replies
    11
    Views
    1,211

    Re: Display Text on multiple forms

    ok...i probably look like an idiot thus far.... but i got to here before errors i dont understand bogged me down...

    in my module:
    Function sendmsg(ByVal msg As String)
    For Each...
  30. Replies
    11
    Views
    1,211

    Re: Display Text on multiple forms

    Public Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click
    If ListBox1.Items.Count = 0 Then
    MessageBox.Show("No Users to Chat...
  31. Replies
    11
    Views
    1,211

    Re: Display Text on multiple forms

    interesting propositions....i shall program tom. and get back to you guys. thx for the feedback
  32. Replies
    11
    Views
    1,211

    Display Text on multiple forms

    so i created say 5 instances of Form2, each with its own index in an ArrayList...i am lost on how to display text eneterd in Form1 in all instances of Form2...code below was what i have came up with...
  33. Replies
    2
    Views
    630

    Re: Adding item to ArrayList

    the new edclaration must have been it, i dont understand that, but thats what it was..........btw, i had it declared in a module with public access
  34. Replies
    2
    Views
    630

    Adding item to ArrayList

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Dim kyle As Integer = 0
    Dim i As New Form2
    Dim temp As String =...
  35. Replies
    9
    Views
    711

    Re: Displaying new form when button clicked

    dim temp As New Form2

    then use a for loop to display x number of forms?
  36. Replies
    9
    Views
    711

    Re: Displaying new form when button clicked

    you got the right thinking blakk majik.....i got a good idea of how to do this....i think that for every time the user clicks the buttons, i can use a for...next loop to create a new instance of a...
  37. Replies
    9
    Views
    711

    Re: Displaying new form when button clicked

    well, i got that....but, i want to simultaneously have MULTUPLE forms open at the same time....so do i have to manually create them?? or is it possible to have a loop create them?
  38. Replies
    9
    Views
    711

    Re: Displaying new form when button clicked

    i dont need a clear button....i need some insight on how to open up a form everytime Button1 is clicked...i want all the newly opened form to have textbox1, textbox2 and button1.....
  39. Replies
    9
    Views
    711

    Displaying new form when button clicked

    Everytime the user clicks a certain button i want the program to open up new form with the same layout just different variables....there is potenial for alot of forms, so i am wondering....do i ave...
  40. Replies
    16
    Views
    907

    Re: printin array into excel column

    yea...i got her hammered out now :) it was the wrong version..
Results 1 to 40 of 66
Page 1 of 2 1 2



Click Here to Expand Forum to Full Width