Search:

Type: Posts; User: zeezee

Page 1 of 13 1 2 3 4

Search: Search took 0.09 seconds.

  1. Replies
    6
    Views
    3,824

    Re: How to Print MSHFlexgrid data

    Check These
    http://forums.devx.com/showthread.php?t=142502
    http://www.vb-helper.com/howto_print_flexgrid.html

    http://www.vbforums.com/showthread.php?t=526906...
  2. Replies
    2
    Views
    1,084

    Re: vb6 Convert vbDate to Day string...

    try like this


    Format(Date, "MM-DDD-YYYY")

    or

    Format(Date, "MM-DDDD-YYYY")

    :wave:
  3. Replies
    5
    Views
    785

    Re: trouble with counter freezing

    Welcome to the Forums :wave:

    This is .Net right?
    so you are in the wrong section.
    Anyway something like this would help you


    cmdPurge.Refresh()
    Application.DoEvents()
  4. Replies
    4
    Views
    606

    Re: Height and width of a window

    Welcome to the Forums :wave:

    Change your Form's border property to - Fixed Dialog (3)
    And Set MinButton property to True


    :wave:
  5. Replies
    1
    Views
    602

    Re: Changing sort order in Listview

    I use this code which is great and fast.
    Only thing is you need to specify the column data type in its tag property
    Cant remember where I found it though :(

    Try and see
    :wave:
  6. Replies
    11
    Views
    7,517

    Re: Visual Studio 6 Installation

    when you want to backup , create a CD image.
    And run it in a image recorder (Nero has one) or Virtual drive/CD
    that way it would simulate a CD drive and you wont have any problems.
    This happened...
  7. Replies
    8
    Views
    900

    Re: RFA For My Network

    I think it would be difficult if you have dynamic IP.
    You need to have a static IP or domain name to do that.
    Think , how would you find your home server from your office (or any other place) via...
  8. Replies
    8
    Views
    900

    Re: RFA For My Network

    there are services like GoToMyPC

    And you can use like VNC, PCAnywhere or Even Windows Remote Dektop, IF you have a static IP.

    Check This too
    http://www.vbforums.com/showthread.php?t=393847
    ...
  9. Replies
    8
    Views
    900

    Re: RFA For My Network

    Your single sentence is so confusing :eek:

    Can you tell what you want in a simple sentence(s) , please?

    Also answer these too.

    1. Is your Home computer connected to Internet always ?
    2. If...
  10. Replies
    3
    Views
    866

    Re: Sending data to Flash with VB

    Dont know exactly why, but one possibility is there.
    Winsock sometimes send data in parts. (I think usually this happens with large data). So flash cant understand this properly and display in two...
  11. Replies
    5
    Views
    849

    Re: Building a LAN-Based Game using Winsock

    This depends on the scale of your game.
    If its simple, then its ok to assume this (I think :D)

    Whats important is , before everything , you need to have a Game.
    Thats what I would do.
    Then you...
  12. Replies
    1
    Views
    12,161

    Re: [vb6] clear cmd object parameter

    Are you talking about ADODB command object?
    If so try like this


    Dim cmd As New ADODB.Command
    Dim param As New ADODB.Parameter
    Dim i As Integer

    param.Name = "test"
    ...
  13. Replies
    5
    Views
    499

    Re: Anyone For A ListBox Table!!

    There are good third party ones for what you say.
    (though I dont really understand what you need :eek:)
    The Far point one I have scene and its pretty good.
    And may be searching the PSC might...
  14. Replies
    3
    Views
    866

    Re: Sending data to Flash with VB

    what is the data in dat ?
    If there is a new line or cr o r lf, flash might split it up.
    (dont know how flash handles it)

    :wave:
  15. Replies
    5
    Views
    849

    Re: Building a LAN-Based Game using Winsock

    My Task List

    1. Think of a Game
    2. Build The Logic For the Game
    3. Build The Game
    4. Play The Game :D
    5. Make Sure My Game is 100% OK
    6. Make it Multi Player - ie : The Network Game

    so...
  16. Replies
    5
    Views
    650

    Re: need some help with this project

    Welcome to the Forums
    :wave:

    Hmm, if the book says Bounded Controls, not sure if thats a good book :D

    Anyway, whats the VB version you got there?
    If its Enterprise Edition, then you can...
  17. Replies
    2
    Views
    758

    Re: I've download the source code but ...

    What do you mean by Not Working?

    BTW, nice control ;)

    :wave:
  18. Replies
    4
    Views
    538

    Re: validation of a text box

    @ tjroamer
    If you have noticed, the Validate event does the same. ;)
    Only thing is its the proper place for it and it supports the Cancel parameter which cancel the focus change.


    @adam786
    Why...
  19. Re: If a program crashes for no apparant reason - how to tell what caused it?

    Have you got all the updates and service Packs installed?
    And in the event log, may be your app name is not there, but something related to it (a dll or service used by your app) could be there.
    I...
  20. Re: Visual basic 6 - Inet control help...

    oh. The Service Packs :D
    I have SP 5, may be thats why it works.
    Anyway, If your problem is solved, please mark the thread resolved too ;)

    :wave:
  21. Replies
    11
    Views
    1,363

    Re: filesystemobject

    CopyFiile is a Sub, not a function. Os it doesnt return anything. SO you cant assign the return value to corp (its not declared too).
    Try Like This


    Dim a As New FileSystemObject
    ...
  22. Re: If a program crashes for no apparant reason - how to tell what caused it?

    Yes. Check the System Event Log

    in XP, go to
    Control Panel -> Administrative Tools -> Event Viewer.
    Try the Category Application.

    Might have something there.


    :wave:
  23. Re: Visual basic 6 - Inet control help...

    I tried the code and works fine.
    Why do you say you dont get the full HTML?
    Have you turned on MultiLine to True in the Text Box?

    :wave:

    EDIT : Attached the HTML code got from that link.
  24. Replies
    4
    Views
    894

    Re: kindly check the syntax..

    Whats this ?


    '" & Company_Projects.pro_no & "'"

    is Company_Projects a class or class object?


    :wave:
  25. Re: Help making a program that captures windows/programs into itself!

    SendMessage lngHWND, WM_CLOSE, 0, 0 '''I GET AN ERROR HERE'''

    you should get an error here . You havent declared SendMessage


    Private Declare Function SendMessage Lib "user32" Alias _
    ...
  26. Replies
    14
    Views
    1,266

    Re: sql involving three tables

    Certainly, Check our own DB FAQs.

    http://www.vbforums.com/showthread.php?t=337051#ado

    http://www.vbforums.com/showthread.php?t=337051#bound
    http://www.vbforums.com/showthread.php?t=337051
    ...
  27. Replies
    4
    Views
    538

    Re: validation of a text box

    try like this

    Private Sub Text1_Validate(Cancel As Boolean)
    If Len(Text1.Text) > 10 Then
    MsgBox "text box 1 length out of range"
    Cancel = True
    End If
    End Sub

    EDIT:
  28. Thread: F8

    by zeezee
    Replies
    5
    Views
    681

    Re: F8

    could you please check this code for me

    Yeah we Can.
    But unfortunately you have used the [INVISIBLE] tags, so we cant see the code.
    Please post the code with [CODE] tags.
    Thanks

    :wave:
  29. Replies
    14
    Views
    1,266

    Re: sql involving three tables

    I dont know about the ADODC, but a SQL with INNER JOIN could get you the information.

    eg:
    SELECT * FROM Company_Project INNER JOIN Project_Info ON Company_Project.pro_no = Project_Info. pro_no...
  30. Re: Changing the forecolor of sub colums of a listview?

    A little search ? ;)

    http://www.vbforums.com/showthread.php?t=375716
    http://www.vbforums.com/archive/index.php/t-244823.html

    :wave:
  31. Re: [Access 2003] Dynamic LinkChildFields LinkMasterFields for Subforms

    Sorry for taking time to Resolve this. I had to test this extensively.

    SO this is the solution.
    Removed the LinkMaster and LinkChild Fields, used Manual Filtering.

    I tried to give the Dynamic...
  32. Re: [Access 2003] Dynamic LinkChildFields LinkMasterFields for Subforms

    brellis1 Thanks a lot. It seems to work. :thumb:
    I think this is what happens when we use the LinkChild and LinkMaster also (automatic filtering).

    Thanks Again.
    I will resolve this after few...
  33. Re: [Access 2003] Dynamic LinkChildFields LinkMasterFields for Subforms

    Hmm.
    I guess no body has any tips :(

    Then the choice will be to disable filtering in Access 2003.
    Is there a way to detect Application Version (Access Version) in VBA?

    :wave:

    EDIT:
    This...
  34. [RESOLVED] [Access 2003] Dynamic LinkChildFields LinkMasterFields for Subforms

    Hi Guys n Gals, :wave:

    I got a little question.
    I'm using a subform with LinkChildFields, LinkMasterFields option.
    Well this worked fine when I developed it with Access 2007, I used my combos to...
  35. Replies
    1
    Views
    505

    Re: searching text using regex

    Welcome to the Forums :wave:
    Try this project. This is a project i created to test Reg EXps. it might do what you need.


    :wave:
  36. Re: [RESOLVED] Convert excel to html with PublishObjects

    Glad you solved the problem. :)

    And if you don't mind sharing your solution, please post that also.
    It might help someone with the problem next time ;)

    :wave:
  37. Re: [RESOLVED] Hiding file extentions in a file list box

    I assume you are using the code I gave in Post #9.

    This should be the code


    Open File2.Path & "\" & File2.List(List1.ListIndex) For Input As #2
    Input #2, hname, hoff, heff, hdef, hhfa, hpic...
  38. Re: How do I output data from my database table to a textbox? + screenshot

    Actually Rhino, He/She was given the link in the other thread

    http://www.vbforums.com/showthread.php?t=521269

    Dont know why asking again :(

    :wave:
  39. Replies
    37
    Views
    2,042

    Re: Help, Unable to add Records into Database

    no it isn't.
    to use the MAX thing, you need another RecordSet, ie another query.

    its better to have a function for that
    eg:



    Private Function GetMaxCustID() As String
    Dim RstMaxID...
  40. Replies
    37
    Views
    2,042

    Re: Help, Unable to add Records into Database

    It is correct.
    However, IF your PK is Numeric (integer) and its incremental or auto number, there is an easier way (provided no customers are deleted also)


    SELECT MAX(Cust_ID) FROM Customer
    ...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width