Search:

Type: Posts; User: rpool

Page 1 of 13 1 2 3 4

Search: Search took 0.05 seconds.

  1. Replies
    0
    Views
    416

    how to report this styles?

    I have question.

    Use access2000.mdb and CRXIR2.

    my database:
    country
    us
    uk
    japan
    eur
  2. Replies
    3
    Views
    435

    mouseclick or tab buttom , same event?

    I have question
    I have two textbox, Text1 (tabindex 1) and Text2 (tabindex 2)

    I want to type something string in text1. and use mouse click or use "Tab" buttom Text2(Textbox)
    automatic copy...
  3. Replies
    7
    Views
    2,175

    which windows 7/8/10 still support VB6

    I have question.

    I still use Windows XP and VB6 to develop my application. all is perfect match for me.

    sound windows 10 coming soon, if future need changed to windows 7/8/10, which windows...
  4. Replies
    2
    Views
    2,331

    VB6 Listview unicode

    I have problem.


    Still used VB6 Listview to output ,

    But that "access2000.mdb" file that filed use Unicode to store.

    Is it Listview can support unicode? Found 3rd listview.ocx is fine, ...
  5. Re: begin simple Set formula, VBA Excel2003

    I'm sorry, it is...


    (1) is it if need 2 value (A1,B1) to run this sub/function, that code write this?

    Private Function need2valueAdd(celA As Range, celB As Range) As Integer
    need2valueAdd =...
  6. Re: begin simple Set formula, VBA Excel2003

    thanks, if need
    A1,B1,C1
    abcd, 123, =sampleDD(A1,B1)
    is it correct?


    In Module1:

    Private Function sampleDD(celA As Range, celB As Range) As Integer
    sampleDD = Len(celA.Text) +...
  7. Re: begin simple Set formula, VBA Excel2003

    I'm sorry, I not clear my question.
    I want to doing:
    A1, B1
    hello, =Len(A1) *2 , result(b1)=10

    this, (B1)Set formula, is fine,

    but if I need use Alt+11, that VBA,
    how to write this code,...
  8. [RESOLVED] begin simple Set formula, VBA Excel2003

    I have question, can you give me one sample, how to make VBA?, Set formula? Excel 2003

    Yes, I know if need:

    A1, A2
    "abcd1234", 16 , =Len(A1) * 2

    if need Set formula (Alt+11) that,,, how to...
  9. Replies
    5
    Views
    1,494

    Re: how to mix unicodetext

    http://msdn.microsoft.com/en-us/library/hwfw5c59%28v=vs.84%29.aspx


    thanks, I have new question,
    if that text file, mix (ANSI, Unicode, UTF-8) encode, first I not sure which text file is use...
  10. Replies
    5
    Views
    1,494

    Re: how to mix unicodetext

    thanks, but is look that output is not text?

    BTW, some basic question.

    use Notepad typing some string....

    save as ASCII. text file, yes it is a TEXT file , but
    save as Unicode, that TEXT...
  11. Replies
    5
    Views
    1,494

    how to mix unicode, UTF-8, ANSI, text

    I have a problem.
    Here I want to join Unicodetextfile(1).txt, Unicodetextfile(2).txt, Unicodetextfile(3).txt ....file(99)'s.


    foreach unicodetextfile around 2MB.

    I use simple method
    cmd, ...
  12. Thread: API get pixel

    by rpool
    Replies
    23
    Views
    11,658

    Re: API get pixel

    I am sorry, not clearly my question,
    yes, I need get that bitmap.picture.dimensions (result: need use "pixel" value)
    but where to start ?
    please!


    EDIT: Width / 26.45 and Height/26.45
    but...
  13. Thread: API get pixel

    by rpool
    Replies
    23
    Views
    11,658

    Re: API get pixel

    I found MSDN to get more about gdi32/getpixel
    http://msdn.microsoft.com/en-us/library/system.drawing.bitmap.getpixel%28v=vs.80%29.aspx?cs-save-lang=1&cs-lang=vb

    but I not undetstand how to start,...
  14. Thread: API get pixel

    by rpool
    Replies
    23
    Views
    11,658

    API get pixel

    I have question, is it windows is provide some API can easy and quick to get (bmp/picture) that Pixel?

    I want to get that pixel around 200-300 bmp file(s), any advice please!
  15. Thread: get XML value

    by rpool
    Replies
    6
    Views
    1,448

    Re: get XML value

    thanks your simple sample, but would you mind to tell me
    method1 and method2, output: get that value. but difference?



    method:1
    Dim objAttrib As IXMLDOMAttribute
    Set objAttrib =...
  16. Thread: get XML value

    by rpool
    Replies
    6
    Views
    1,448

    Re: get XML value

    I'm sorry, i not clearly my question.
    I want to get XML value, but it is my first to touch get XML value.
    is it use that INI method or simply left/right/mid/replace that general() ?

    found some...
  17. Thread: get XML value

    by rpool
    Replies
    6
    Views
    1,448

    get XML value

    I want to modify XML, which path is simply get/modify that value?
    is it read Text file method, or use that XML v4.0 that Dim xmlDoc As New DOMDocument ?

    and if get/modify that value, how to get...
  18. Replies
    14
    Views
    1,527

    Re: how to join bitmap and set pos

    thanks, here I find not undetstand, you "PicBox" is it mean "PB"?
    because I not found


    Dim PicBox As...
  19. Replies
    14
    Views
    1,527

    Re: how to join bitmap and set pos

    thanks, is look fine. but I not undetstand why used


    Dim PB As PictureBox
    Set PB = Me.Controls.Add("VB.PictureBox", "PB")


    EDIT: PB is not true Object(Picture1)? PB is temporary...
  20. Replies
    14
    Views
    1,527

    Re: how to join bitmap and set pos

    so you want to save the image inside the picturebox? YES
    And you are using SavePicture() Function? YES
    Then you need to load it? YES

    but is it SavePicture() can't save that picture1.?

    EDIT: ...
  21. Replies
    14
    Views
    1,527

    Re: how to join bitmap and set pos

    thanks, but that (output.bmp) file, is a correct size. but empty, no picture(that message)?
    I not undetstand is it not used "SavePicture"?

    please.!



    ...
    ...
    Me.Controls.Remove "PB"
  22. Replies
    14
    Views
    1,527

    Re: how to join bitmap and set pos

    Edit: Update my problem, you can look savepicture, the pic (X) is not autoredraw/autoresize?
    any advice how to correct save .picture, because in Form1, that final picture that .Height/.Width set.
  23. Replies
    14
    Views
    1,527

    Re: how to join bitmap and set pos

    thanks your advice, now, why that output .bmp file (Join picture box) can't auto .AutoSize .AutoRedraw
    what wrong please!





    Option Explicit
  24. Replies
    14
    Views
    1,527

    how to join bitmap and set pos

    I have question, I want to join bitmap file
    picture1 = pic1 'upper pos
    picture2 = pic2 'lower pos
    picture3 = join

    but here I not understand how to set picture3 pos, and how to handle...
  25. Replies
    0
    Views
    693

    get packets status. (send/received)

    I have question.

    I want to get packets value. (send/received), mean
    list1.additem dwOutOctets '20
    list1.additem dwInOctets '0
    but use this api (dwOutOctets, dwInOctets) , but that value is...
  26. Replies
    5
    Views
    1,369

    Re: Access 2000 mdb string over 255 chars

    thanks, I used MS Access to changed. but .mdb file size from 700MB increase 810MB? not sure what happen...
    .mdb total around 700,000 records.
  27. Replies
    5
    Views
    1,369

    Re: Access 2000 mdb string over 255 chars

    thanks, it look good advice,

    is it correct? open Microsoft Access, changed filed (string-255) -> field (meno), save. Done?
    but:

    (1) is it .mdb file size will large?
    (2) "meno" not found...
  28. Replies
    5
    Views
    1,369

    Access 2000 mdb string over 255 chars

    I have question,

    i'm use Access 2000 .mdb file, everything fields set: 255 string,
    but In Case If over 255 string, it Is a problem,

    any idea To store over 255 string?

    is it microsoft...
  29. Replies
    8
    Views
    1,319

    Re: array lbound ubound

    thanks, this is first known use "error_handle" to get result,
    can you tell me more any other example, used "error_handle" to get result?
  30. Replies
    8
    Views
    1,319

    Re: array lbound ubound

    thanks, I was changed. but I Not understand "Visual Basic for Applications arrays can have up to 60000"
    For 1 To 60000, Is it need? If normal around <20 dimensions, Set 99 Is it enough?

    any...
  31. Replies
    8
    Views
    1,319

    Re: [RESOLVED] array lbound ubound

    Thanks, but I Not undetstand how many dimension's (myArr)



    Private Sub Command1_Click()
    Dim myArrA(0 To 99) As String
    End Sub

    I want To result this "myArrA" total 1 Dimension.
  32. Thread: Form1.Hwnd

    by rpool
    Replies
    3
    Views
    1,096

    Form1.Hwnd

    I not understand, what is Me.hwnd

    In Form1
    MsgBox Form1.Hwnd
    MsgBox Me.Hwnd


    In Module
    Msgbox Form1.hwnd
    but can't use Me.hwnd?
  33. Replies
    8
    Views
    1,319

    array lbound ubound

    I have question,

    I known how to check myArr(x)
    Lbound(myArr)and Uboubd(myArr), result: 0, 2 "mean 0 To 2"


    but I want to check array(y) mean that "0 To 1", any method, please

    please!
  34. Replies
    20
    Views
    2,398

    what mean this ":" symbol

    I have question, what mean this ":" symbol?

    any advice and how to use please!




    Dim oMenu As mcPopupMenu: Set oMenu = New mcPopupMenu
    Dim oSubmenu1 As mcPopupMenu: Set...
  35. Thread: CreatePopupMenu

    by rpool
    Replies
    4
    Views
    1,545

    Re: CreatePopupMenu

    thanks, would you mind upload your project, please!
  36. Thread: CreatePopupMenu

    by rpool
    Replies
    4
    Views
    1,545

    CreatePopupMenu

    I have question,

    I want to make CreatePopupMenu,

    when Click _Command1, show Menu() as same as RED circle,
    but I want to doing GREEN circle, any suggest how to do it.
    ...
  37. Replies
    1
    Views
    490

    repert string, but not work?

    I have question, I want To repert string (5 times).


    Text1: (before)
    apple
    boy
    cat
  38. Thread: report word

    by rpool
    Replies
    1
    Views
    503

    Re: report word

    Yeh: I found use
    For i = 1 To CLng(rptnum)


    thanks!
  39. Thread: report word

    by rpool
    Replies
    1
    Views
    503

    report word

    I have problem, I want to repert string,
    but


    Text1.Text = String(5, text1.text & ">")


    not work?

    Text1.Text = "Text1"
  40. Replies
    1
    Views
    1,192

    Re: how to handle F2 to F12 function key case?

    Yeh: I found before add:

    Private Sub Form_Load()
    Form1.KeyPreview = True

    End Sub


    thanks!
Results 1 to 40 of 496
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width