Search:

Type: Posts; User: brenaaro

Page 1 of 10 1 2 3 4

Search: Search took 0.26 seconds.

  1. Replies
    1
    Views
    645

    Nope

    Nope
  2. Replies
    3
    Views
    422

    Does the control load in other browsers, like...

    Does the control load in other browsers, like Firefox?
  3. Replies
    1
    Views
    373

    Re: Steps for adding references??

    I assume you mean you need to reference the user control from the windows application?

    Click on the Projects menu, then click "Add Reference". You should be able to find your project in there.
  4. Replies
    7
    Views
    7,553

    I'm working on 2000 now, but if I recall...

    I'm working on 2000 now, but if I recall correctly, I think I solved the problem by adding that extra CRLF at the end of the .reg file.

    It's just that the entry wasn't getting added to the...
  5. Replies
    1
    Views
    755

    oracle table of number parameter = vb ?

    More Oracle woes..

    Ok so I have declared a type and a procedure header in a package like so:


    type SeqNums is table of number;

    procedure GetSeqNums(l_user_id in...
  6. Replies
    0
    Views
    396

    Oracle, stored proc,(...) *RESOLVED*

    I created a package in oracle as such:


    create or replace package tt.MyPack is

    -- Public type declarations
    type CCLRows is REF CURSOR RETURN CREDIT_CARD_LOG%ROWTYPE;

    -- Public...
  7. Replies
    7
    Views
    7,553

    Cool, thanks! But it doesn't seem to work for...

    Cool, thanks! But it doesn't seem to work for .ocx files (NT4)...?
  8. Replies
    1
    Views
    499

    Connections and Commands

    Hi, I am trying to figure out if something will work (using a Connection and Command) object but I don't have much experience with them. Look at this pseudo-code, can you tell me if at the end of Sub...
  9. Replies
    2
    Views
    3,182

    Synchronize two Listviews scroll

    I have two Listviews side-by-side and I want their scrolling behavior to be synchronized. I.E. When the user drags the vertical scroll bar up or down on one list view, I would like the other listview...
  10. Replies
    0
    Views
    1,322

    SSH and SFTP through Winsock: Help!

    I have to upload a file to a site using SFTP (through SSH) but I have NO real idea how SSH and SFTP work. Here's what I do know though:

    - I know the host, port, username and password
    - I'll...
  11. Replies
    0
    Views
    598

    SFTP and SSH through Winsock: Help!

    I have to upload a file to a site using SFTP (through SSH) but I have NO real idea how SSH and SFTP work. Here's what I do know though:

    - I know the host, port, username and password
    - I'll...
  12. Replies
    16
    Views
    1,684

    Thanks for all the info guys. A lot of what you...

    Thanks for all the info guys. A lot of what you said makes sense about how having more than one flag set would create problems when trying to build a response message. Well not real "problems" per...
  13. Replies
    16
    Views
    1,684

    Thanks for the replies, I'll give a bit more...

    Thanks for the replies, I'll give a bit more detail.

    It seems that ktrmrtz's answer is closest to what I need, but in what conditions would that round-off become an issue? I will only be using...
  14. Replies
    16
    Views
    1,684

    power of 2 and binary numbers...

    In VB, I'm going to have a set of flag constants that are powers of 2 (1,2,4,8,16,32,64, etc) so that my flag variable (a long integer) can have many combinations of those flags (using 'Or' to build...
  15. Thread: ProgressBar

    by brenaaro
    Replies
    3
    Views
    489

    That's probably because the function you are...

    That's probably because the function you are calling is not run asynchronously (I think that' the right word). This means the function does not report back it's current progress while it is running....
  16. Replies
    7
    Views
    7,553

    techyspecy: You can add those verbs to the...

    techyspecy:

    You can add those verbs to the context menus for .OCXs by adding it in the View->Folder Options->File Types definitions.

    Just point it to regsvr32.exe and add a /u parameter for the...
  17. Replies
    0
    Views
    410

    Find apps using activeX DLL

    Is there any way to find out which running applications are currently referencing a certain ActiveX DLL? Even if the app is not currently using an object from that DLL?
  18. I'm interested in seeing what you've come up with...

    I'm interested in seeing what you've come up with as well. I really enjoyed playing around with sockets in vb6 and am anxious to get into that in .net. If you can share what you've got I'd appreciate...
  19. Replies
    5
    Views
    809

    'something like this? ...

    'something like this?


    ListView1.ListItems(2).Selected = True
  20. Replies
    0
    Views
    464

    SendKeys to menus in WindowsXP?

    My program uses SendKeys() to interact with another application's menu's (mostly Edit->Select All, Edit->Copy, and a couple other non-standard ones).

    This is the code that I use...

    SendKeys...
  21. Replies
    1
    Views
    517

    SendKeys to menus in WindowsXP

    My program uses SendKeys() to interact with another application's menu's (mostly Edit->Select All, Edit->Copy, and a couple other non-standard ones).

    This is the code that I use...

    SendKeys...
  22. Replies
    4
    Views
    558

    Err sorry, of the ListView in the _ItemClick()...

    Err sorry, of the ListView in the _ItemClick() event...
  23. Replies
    4
    Views
    558

    Try calling the .StartLabelEdit method of the...

    Try calling the .StartLabelEdit method of the node in the _NodeClick() event.
  24. Thread: Enum Problem

    by brenaaro
    Replies
    3
    Views
    440

    Unfortunately, I am sure. This question has been...

    Unfortunately, I am sure. This question has been asked a couple of times before and there is just no way for VB to display the "name" of the enum instead of the value. :(
  25. Thread: Enum Problem

    by brenaaro
    Replies
    3
    Views
    440

    I'm afraid there is no way to do it. What you...

    I'm afraid there is no way to do it.

    What you could do though is create an array of strings (containing the names Musah, Sadna, etc) and then have the index of each name be equivalent to it's...
  26. Replies
    2
    Views
    438

    I believe a String type can hold 2^32...

    I believe a String type can hold 2^32 (4,294,967,296 characters).
    Maybe you are trying to place a string into a Text field of a database (which may be limited to 255 characters). If you want to...
  27. Replies
    5
    Views
    536

    You could try If Form2.Visible Then ...

    You could try


    If Form2.Visible Then
    MsgBox "The Form is Loaded"
    End If

    BUT! This is not perfect because using

    Form2.Hide
  28. Replies
    12
    Views
    1,252

    Here's a pretty basic example..but you'll have to...

    Here's a pretty basic example..but you'll have to fix it up a bit

    Private Sub CheckTMPFiles()
    Dim sFileName As String
    Dim header1 As Byte
    Dim header2 As Byte
    Dim magic_word As...
  29. Replies
    5
    Views
    6,202

    Danke!

    Danke!
  30. Replies
    5
    Views
    6,202

    What does 'Genau mein Ding' mean?

    Does anyone know what 'Genau Mein Ding' means? I know it's german but I don't know what the translation is..I saw it on the back of a car once.
  31. ..? Winsock(1).Connect sRemoteHost(1)'make...

    ..?

    Winsock(1).Connect sRemoteHost(1)'make sure you set your remot port property, or pass it to the Connect method
    '... Make sure you connect
    Winsock(1).SendData sSend(1)
  32. Option Explicit Private lngDirection As Long ...

    Option Explicit
    Private lngDirection As Long

    Private Sub Form_KeyPress(KeyAscii As Integer)
    'Store the key pressed
    lngDirection = KeyAscii

    End Sub

    Private Sub Timer1_Timer()
  33. I always use the PathFileExists API Declare...

    I always use the PathFileExists API


    Declare Function PathFileExists Lib "shlwapi.dll" Alias "PathFileExistsA" (ByVal pszPath As String) As Long
  34. Replies
    9
    Views
    615

    When you post code, include it in {vbcode} tags...

    When you post code, include it in {vbcode} tags (but use [] instead of {} )

    Here is a quick example of what you are looking for

    Private Sub cmdping_Click()
    Dim i As Integer ...
  35. Replies
    8
    Views
    577

    A Private function can only be called from inside...

    A Private function can only be called from inside that module (or form). A Public function can be called from anywhere in the program. Other than that they are pretty much the same.
  36. Replies
    2
    Views
    398

    Well for the first part just do Me.Hide to hide...

    Well for the first part just do Me.Hide to hide your Form from the taskbar. As to the second part, it depends how you are placing the icon in the SysTray..I use the DCSystray control which has...
  37. Replies
    7
    Views
    1,058

    mxnmx I like your signature ;)

    mxnmx I like your signature ;)
  38. Replies
    3
    Views
    662

    Where and how do you declare ItemModDamage1?

    Where and how do you declare ItemModDamage1?
  39. Replies
    8
    Views
    459

    One word: DateSerial 'Some thing like...

    One word: DateSerial



    'Some thing like this.

    Dim iYear As Integer
    Dim iMonth As Integer
    Dim iDay As Integer
    Dim dDate As Date
  40. Replies
    3
    Views
    547

    I *think* you can just Shell() it ?

    I *think* you can just Shell() it ?
Results 1 to 40 of 393
Page 1 of 10 1 2 3 4



Click Here to Expand Forum to Full Width