CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: nexusm

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. Replies
    1
    Views
    5,135

    Drag document for open

    Hey all,
    I want to replace then classical way to open a file (MSWordDoc)
    DriveListBox, DirListBox, ListBox, with a drag action.
    When I drag the file over my application I need to find/parse the...
  2. Replies
    1
    Views
    761

    xml file format, help

    Hi, all.
    I have created for a client for a part of his business a software which automatically generates an invoice / invoices to his clients (nothing out of usual).
    The accountant of my client is...
  3. Replies
    4
    Views
    8,175

    Re: Question about Ado shape

    Forget IDE generated code, try using only code. Read and learn to use the controls only code, is the healthiest solution.
  4. Thread: Error compile

    by nexusm
    Replies
    7
    Views
    2,601

    Re: Error compile

    I think your error is in Combo1_Change event
    TRI and TSEL is not declared as variable, but in Form Load event you populate the Combo control directly using strings ("THREE" and "TSEL")

    try to fix...
  5. Replies
    8
    Views
    12,491

    Re: VB6 IDE freezes on breakpoint

    or ...
    you're in a loop that has no exit conditions and there are no lines of code "DoEvents".
    an example would be this (querying a database)
    Do While Not rs.EOF = True
    do something
    Loop
    here...
  6. Replies
    1
    Views
    1,080

    Re: test establish ssh connection

    Try copying a file test.txt (empty) using File System Object and capture the error.
    Here is a sample code:

    Private Function Server_Test()
    Dim fs As New FileSystemObject
    On Error GoTo errH

    '...
  7. Replies
    0
    Views
    1,216

    help for SharpLibZip in vb6

    Hi all,

    What are the correct steps to use SharpLibZip a VB6 project?
    The first hurdle is that I can make a reference in the project to him.
    Furthermore we did not go.
    I already installed NET...
  8. Replies
    4
    Views
    1,109

    Re: encryption "crash-test"

    I do not want to test source code.
    I want to test the encrypted file
  9. Replies
    4
    Views
    1,109

    encryption "crash-test"

    Hi all,

    I created a data encryption algorithm own.
    Does anyone know how i can test the reliability?
    (note that this algorithm is not based on any known concept, or so I think) :)

    Thx for any...
  10. Replies
    3
    Views
    1,214

    Re: About copy files

    I understand, I'm not happy but I understand.
    Thx
  11. Replies
    3
    Views
    1,214

    About copy files

    Hi all,
    how to prohibit copying a database.
    users asked me that nobody can copy database.
    the database it's msaccess format (.mdb)
    thanks for any suggestion
  12. Replies
    1
    Views
    1,054

    convert .fla files into HTML5

    I'm looking for a person able to convert .fla files into HTML5, in order to run on Safari under MacOS and Chrome with Android.
    The fee per file is 40$.
    Other details regarding the payments will be...
  13. Replies
    0
    Views
    1,065

    convert fla. files for Safari and Chrome

    I'm looking for a person able to convert .fla files into HTML5, in order to run on Safari under MacOS and Chrome with Android.
    The fee per file is 40$.
    Other details regarding the payments will be...
  14. Replies
    1
    Views
    716

    FindWindows & SendKeys

    details about situation:
    my job is to write some data in 2 app's.
    first app is a standalone app(company app) which is installed in my pc.
    second app is a online web app(goverment app)
    the data...
  15. Replies
    2
    Views
    640

    Re: Controls positions

    Yeah, thanks a lot, that is it.
  16. Replies
    2
    Views
    640

    Controls positions

    Hi all,

    how can I find if a control is on the Form or is created in a Frame or other container.
    I need that to know x,y coordonates.
    For example,
    Command1 Button is puted directly on the Form...
  17. Replies
    5
    Views
    959

    Re: Multi file transfer

    Each time when you decide to use an external service try to think '... what you want or what you need in the future...'.
    In time, I see, to many WEB services which appear and disappear, so ... I say...
  18. Replies
    5
    Views
    959

    Re: Multi file transfer

    Or, ...
    1. create an FTP address
    2. give others (in any way) a small app. witch ceck daily any file change on FTP
    3. if any change is find it, then download this file(s).
    If you don't have, or if...
  19. Replies
    4
    Views
    1,322

    Re: Help me in adding Entries in Excel using VBA

    Public Col%

    Private Sub Command_Click()
    ...
    Col=Col+1
    wdat.Cells(1, Col).Value = Text1.Text
    wdat.Cells(2, Col).Value = Text2.Text
    wdat.Cells(3, Col).Value = Text3.Text
    ......
  20. Replies
    3
    Views
    1,060

    Re: language in MsgBox

    i try to use this solution
    i put in each form a Timer (named in all forms "tmes") witch call a function "fTmes"
    in a Module i try to use some API function and i create few function.
    this is the...
  21. Replies
    3
    Views
    1,060

    language in MsgBox

    hi all,

    how is possible to change language for msgbox (e.g. button caption) "Yes" in "Oui" or "Ja".
    other solution like create an dedicated form and manage all messages.
    thanks for any links,...
  22. Replies
    1
    Views
    828

    save excel file issue

    hi all,
    i use this code to fill an excel file
    ....
    Dim xlApp As Excel.Application
    Dim wbxl As Excel.Workbook
    Dim wDAT As Excel.Worksheet
    Dim wCEL As Excel.Range
    Set xlApp =...
  23. Thread: mci command

    by nexusm
    Replies
    2
    Views
    778

    Re: mci command

    thanks WizBang.

    my mistake it was when i put the lenght file command before play.
    just after "play" command is possible to know the file lenght and after that is possible to fallow the "status"....
  24. Thread: mci command

    by nexusm
    Replies
    2
    Views
    778

    mci command

    how can i know wend the file (movie) is end.
    i need that to close mci interface
  25. Replies
    13
    Views
    1,865

    Re: to form always in the form of a program

    see you app modified in attach file
Results 1 to 25 of 35
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured