Search:

Type: Posts; User: Birth

Page 1 of 3 1 2 3

Search: Search took 0.04 seconds.

  1. Replies
    1
    Views
    482

    What Files For Access 2.0

    I'm building an Install for a VB6 application. Everything else like 3rd party
    controls work well on my test machine but when I put a line to open the DB,
    I get "ActiveX component can't create...
  2. Replies
    6
    Views
    1,718

    Re: [RESOLVED] Deployment "Package"

    Thank you very much Witis!

    This really in lights me. I'm putting you on my testament.

    Bert
  3. Replies
    6
    Views
    1,718

    Re: [RESOLVED] Deployment "Package"

    Hi,

    I've looked at Inno but find it confusing, or more of a mountain of research to make this work. But that's me.

    I was using Wise in the old days but it seems that ComponentSource doesn't...
  4. Replies
    5
    Views
    1,072

    Re: Need Installer Yesterday (Wise)

    I just found this:
    Isn’t that a rock in the road…

    http://www.componentsource.com/products/wise-installation-studio/index-cad.html
  5. Replies
    5
    Views
    1,072

    Re: Need Installer Yesterday (Wise)

    Ya, I installed that Inno thing but I wasn't sure what to do in there.

    I have a hell of a lot to install, 25 years of work;
    SOAP, Acrobat Reader and others... should be part of the process....
  6. Replies
    5
    Views
    1,072

    Need Installer Yesterday (Wise)

    Had a look at the Wise Installer but couldn't find much about it.

    Even the price is obscure. And also where to buy!? I think it's going for 450$.

    Does anyone use it for Windows 7 64b?

    I...
  7. Re: Visible, LostFocus, GetFocus And Other Events

    Both controls are on the same form and custom controls from VB Tools. But I think I've had this problem before with normal VB controls also.

    I guess I'm going to have to use some kind of API call.
  8. Visible, LostFocus, GetFocus And Other Events

    When control_A gets the focus, I set control_B.visible = True (a calculator).
    When control_A loses the focus, I set control_B.Visible = False.

    Simple.

    But if I click on control_B,...
  9. Re: Sending Email Body With ShellExecute [resolved]

    Thanks a lot!

    Hey, that's a good one. I remember % but not from what :confused:

    It works with %0A. %0D creates page breaks.

    I'm so happy I could dance!
  10. Re: Sending Email Body With ShellExecute

    I tried sending it like this "A" & "<br>" & "B" and it prints the <br> or <p>...

    I even set Outlook for plain text and no go!

    It seems to be at the ShellExecute level and if it is, it's :down:.
  11. Sending Email Body With ShellExecute [resolved]

    When I use this:

    Sub OpenEmailProgram(sDest As String, sSubject As String, sBody$, Optional sCC As String, Optional sBCC As String)

    ShellExecute 0, vbNullString, "mailto:" & sDest &...
  12. Re: New Fields Empty? or (When the impossible happens!)

    No, just calling that little fixmode.exe (now renamed addmode.exe, more accurate of what it's doing).

    After my last post I've added a MsgBox after the ShellExecute (or Shell) and it is now...
  13. Re: New Fields Empty? or (When the impossible happens!)

    Funny, I just tried this:

    TB_Mode.MoveFirst
    While Not TB_Mode.EOF
    TB_Mode.Edit
    TB_Mode.Update
    Debug.Print TB_Mode("Date1F")
    TB_Mode.MoveNext
    ...
  14. Re: New Fields Empty? or (When the impossible happens!)

    This is the code that is used to fill the Table.
    It is called using ShellExecute.

    Declarations
    DefInt A-Z

    Public DB As Database
    Public TB As Table

    Type ModeType
  15. Re: New Fields Empty? or (When the impossible happens!)

    This is the code that is used to fill the Table.
    It is called using ShellExecute.


    10 Set DB = OpenDatabase(App.Path & "\medwin.mdb")

    25 Set TB = DB.OpenTable("Mode")

    27 Open App.Path &...
  16. Re: New Fields Empty? or (When the impossible happens!)

    30 TB_Mode.MoveLast
    35 TB_Mode.MoveFirst

    40 NBmode = TB_Mode.RecordCount

    50 ReDim ModeNumero1$(1 To NBmode)
    60 ReDim ModeValeur1!(1 To NBmode)
    70 ReDim ModeSigne1$(1...
  17. New Fields Empty? or (When the impossible happens!) [RESOLVED kinda]

    I've created some new fields in my Access DB using this method:

    20 TB_Mode.Close
    Set TB_Mode = Nothing

    30 Set FLD = DB.TableDefs("Mode").CreateField("Date1D",...
  18. Replies
    4
    Views
    1,244

    Re: Some wild calculations to get a pourcentage

    Well hello there!

    After all those years I needed that calculation again and I think that it is time
    to thank you for your help and the attention you took to answer me.

    It works very well.
    ...
  19. Replies
    7
    Views
    1,010

    Re: Dynamic form Sizing

    Yep, I tryed this one before but the Left property of the ListView Control can not be read for some reason.

    All I want is the CommandButton not to be resized.
  20. Replies
    7
    Views
    1,010

    Re: Dynamic form Sizing

    Hi,

    I've seen this code all over the forum and it works great.




    Private Type CtrlProportions
    HeightProportions As Single
    WidthProportions As Single
  21. Thread: Search Gadget

    by Birth
    Replies
    2
    Views
    509

    Re: Search Gadget

    Well, ok for the help windows. I didn't know we could CTRL-F in there. Nice tip!

    But there are some other windows where CTRL-F doesn't work. Like poker chats for example.
  22. Thread: Search Gadget

    by Birth
    Replies
    2
    Views
    509

    Search Gadget

    I'd like to be able to do a search in any window.

    For example, I right click on a Help window, a menu appears with a Search option and I click Search, enter the text to search for and voila!

    A...
  23. Replies
    32
    Views
    81,655

    Re: Simple example on how to skin a form

    thamizhinpan, the pink border around your pic is because of antialiasing generated by your graph editor. Try to turn this off or remove the pink pixel by pixel.
  24. Replies
    6
    Views
    525

    Re: Can't Close Application in w98 & ME

    Yes. I've added the declarations in the original message.

    More info:
    This programs form does not have the bar on the top:
    ClipControl, ControlBox, MaxButton, MinButton are set to False
    The...
  25. Replies
    6
    Views
    525

    Re: Can't Close Application in w98 & ME

    Sorry, I misspelled Seconde while transferring the code here. I forgot the last 2 'Seconde' to 'Seconds'.

    I did the corrections in the original message.
  26. Replies
    6
    Views
    525

    Can't Close Application in w98 & ME

    This works in XP but not in Windows 98 and ME.


    Private Declare Function FindWindow Lib "User32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long
    Private...
  27. Re: Timout - Inet Control Again (For the Gurus).

    Sorry but I don't know what objDoc2 is and what WebBrowser1 as to do
    with anything. I'm using the Microsoft Inet Control for FTP and HTTP.
  28. Timout - Inet Control Again (For the Gurus).

    I hope someone can help me with this...

    I'm using the Inet control to do auto updates via Internet for my program. It works great *most* of the time. I can transfer 15 files if I want and the...
  29. Replies
    11
    Views
    8,372

    Re: Another Auto-Downloader

    Hello,

    I'm using pretty much the same code as the in "autod.rar" except that instead of using HTTP I want to use FTP because I need to put the files being downloaded by the users in a private...
  30. Replies
    2
    Views
    304

    Re: Line Numbers and Execution Speed

    I actually started the thread there and change my mind and put it here :sick:

    I wasn't sure...
  31. Replies
    2
    Views
    304

    Line Numbers and Execution Speed

    Hi there!

    I was wondering if adding more and more Line Numbers to trap errors can affect performance speed of the executable. I'm pretty sure that just adding an On Error Goto must affect...
  32. Replies
    6
    Views
    3,425

    Re: Inet, OpenURL & Progress bar [resolved]

    Ok,

    So, I've addedDo Until Inet1.StillExecuting = False: DoEvents: Loop
    write afterInet1.Execute RemoteFileToGet, "GET " & Chr(34) & App.Path & "\yay.exe" & Chr(34)and the code now waits for...
  33. Replies
    6
    Views
    3,425

    Re: Inet, OpenURL & Progress bar

    It's funny because that is the code I was talking about in my first post

    It has everything I need except for the fact that it doesn't 'wait' while the downloading happens. Maybe I misted...
  34. Replies
    6
    Views
    3,425

    Inet, OpenURL & Progress bar [resolved]

    Hello,

    Is there a way to check the download progress using OpenURL? I checked all over and couldn't find anything.

    I know it can easily be done with the Execute Method but the problem here is...
  35. Replies
    2
    Views
    354

    Re: Number of lines in a project?

    Thanks for the tip!

    It's a great tool and I am now reading through some 100 posts about it :eek2:
  36. Replies
    2
    Views
    354

    Number of lines in a project?

    Hello everybody!

    Does anybody know how to calculate the actual (without blanks) number of lines in a project?

    It would also be nice to know about how many Subs, Functions and comments there is....
  37. Replies
    13
    Views
    774

    Re: Go Back in Browser

    I just did and same problem.

    I tried my other machine and it's ok. So the problem is definitely on my main computer, I'm convinced now.

    Any other ideas or tricks in your bag?
  38. Replies
    13
    Views
    774

    Re: Go Back in Browser

    Only here so fare, except for the sites where they deliberately stop the Back button. And I use Back in Google all the time.

    It worked fine for a little while last night. I just tried it and it...
  39. Replies
    13
    Views
    774

    Re: Go Back in Browser

    Nop, that didn't work.

    Maybe it's my popup blocker because it does not do that all the time and it seems that I'm the only one with the problem.

    Anywayz, I disengaged the Google Popup thingy...
  40. Replies
    13
    Views
    774

    Go Back in Browser

    What's up with the Back option (In a Browser) when we click to go back to the previews page?

    Most of the time, I have to click 3 times to get back to the previous page. I use that a lot when...
Results 1 to 40 of 111
Page 1 of 3 1 2 3



Click Here to Expand Forum to Full Width