Search:

Type: Posts; User: Ruxpin

Page 1 of 3 1 2 3

Search: Search took 0.08 seconds.

  1. Replies
    1
    Views
    628

    XP Style Controls

    Im looking for COM controls that will give me an XP Style interface. Like the Toolbars, menus, status bars etc.

    I have seen the components offered by infragistics. Does anyone know of any other...
  2. Replies
    2
    Views
    347

    Application Icon

    I have a project which contains mostly classes and bas modules. I have 1 form in the project, but it is a generic form that is used in several projects. Is there anyway I can set the Icon used for...
  3. Replies
    7
    Views
    798

    For me personally I generally base my...

    For me personally I generally base my applications around the Microsoft look and feel. Whether we like it or not, they kinda set the standard with there OS, associated applications, office suite...
  4. Replies
    2
    Views
    412

    If you have a button on your form that is for...

    If you have a button on your form that is for close or cancel. You can set the Cancel Property to True. Generally or a form with an Ok and Cancel button. The Ok button has Default set to True, and...
  5. Thread: System Design

    by Ruxpin
    Replies
    2
    Views
    396

    System Design

    I am looking for a good book that can help me with system design. Some projects get quite big and involved, and finding a good way to diagram these before programming would help greatly. Can anyone...
  6. Replies
    4
    Views
    426

    VB saves these settings in the .vbw file. There...

    VB saves these settings in the .vbw file. There is one for every project. It store what modules/classes were opened last, and what the state of them were. if you dont want them to come up...
  7. Replies
    7
    Views
    540

    What I gave was an example, the figures arent...

    What I gave was an example, the figures arent actual figure, I was just trying to make the point that for some reason, after minimizing and restore a window, the memory shown by task manager had...
  8. Replies
    7
    Views
    540

    Only similar thing I have seen , is that if I...

    Only similar thing I have seen , is that if I look in task manager at my app, and it says its taking up 10meg (for example) then I minimize and restore the main form, task manager then says its...
  9. Thread: Help Files

    by Ruxpin
    Replies
    3
    Views
    549

    Yeah that would be good if you could. As you can...

    Yeah that would be good if you could. As you can imagine, i dont want to have to go thru the process of updating the manual and help file seperately whenever features are added. Thanks a lot
  10. Thread: Help Files

    by Ruxpin
    Replies
    3
    Views
    549

    Help Files

    I understand the basics of help files, but what I am looking for is something that will make the translation easier. We current have manuals which is in MS Word. Is there anyway or any program,...
  11. Replies
    7
    Views
    1,177

    I was looking for this the other day, and found a...

    I was looking for this the other day, and found a really good site with optimised code. Definately worth checking out.

    http://www.xbeat.net/vbspeed/
  12. Replies
    8
    Views
    987

    I assume you want Form2 to be on top of Form1,...

    I assume you want Form2 to be on top of Form1, but still have Form1 being able to process the code. Try this



    Declare Function SetWindowLong Lib "user32.dll" Alias "SetWindowLongA" (ByVal hwnd...
  13. Replies
    28
    Views
    1,310

    Besides doing it thru code, isnt there a way you...

    Besides doing it thru code, isnt there a way you can tell PC's that when they startup, they sync there times with the time on the main server?
  14. Replies
    3
    Views
    570

    The problem is probably with the CDbl statement. ...

    The problem is probably with the CDbl statement. If the Text in the combo box isnt numeric i.e. alpha or blank, then the CDbl will fail with a type mismatch. Either check that there are no alpha...
  15. Replies
    5
    Views
    683

    I notice there is no error handling in the...

    I notice there is no error handling in the routine. Is it possible that the function calling codeResult has error handling in it, and inside your loop it is erroring on one of the last statements,...
  16. Replies
    5
    Views
    768

    Are you sure the visible property of the form is...

    Are you sure the visible property of the form is set to true?
  17. Replies
    5
    Views
    409

    Err 126= Application-defined or object-defined...

    Err 126= Application-defined or object-defined error

    Not really a very helpful message. Have you tried just doing a simple application with the winsock control, that does simple sends and...
  18. Thread: Reusing combos

    by Ruxpin
    Replies
    9
    Views
    876

    One of the slowest operations is updating UI, if...

    One of the slowest operations is updating UI, if you are adding that many items in a row, maybe you can use an API to disable the control refresh, add the items, then enable the refresh again. In...
  19. Thread: Memory

    by Ruxpin
    Replies
    3
    Views
    415

    I've always wondered about VB and memory...

    I've always wondered about VB and memory management. i.e. What VB loads, when it loads it, if 2 exe's both reference the same dll, do they share parts of the same dll, and only have different data...
  20. Replies
    3
    Views
    413

    I usually prefer to use TypeOf rather then...

    I usually prefer to use TypeOf rather then TypeName.



    Private Sub Command1_Click()
    ResetTextBoxes Me
    End Sub

    Public Sub ResetTextBoxes(ByRef Object As Form)
  21. Replies
    1
    Views
    643

    Maybe rather then doing it by company name, you...

    Maybe rather then doing it by company name, you add another property to your object that is like CalculationType, then you have a select case in the Calculate method. That way you are not hard...
  22. Thread: Form Question

    by Ruxpin
    Replies
    5
    Views
    533

    best thing is when you new up an instance is to...

    best thing is when you new up an instance is to add it to a collection. The you have somewhere to retrieve them from.




    dim frmInstance as form1

    set frmInstance = new form1
    colForms.add...
  23. Replies
    12
    Views
    732

    Try this one.. Private Declare Function...

    Try this one..




    Private Declare Function SHBrowseForFolder Lib "shell32" (lpbi As BrowseInfo) As Long
    Private Declare Function SHGetPathFromIDList Lib "shell32" (ByVal pidList As Long, ByVal...
  24. Replies
    4
    Views
    868

    Yeah regclean is usually the best. For activex...

    Yeah regclean is usually the best. For activex exe's you dont use regsvr32, just do a start run and add the command line arguements /regserver or /unregserver, to register or unregister the exe.
    ...
  25. Replies
    3
    Views
    480

    Problem I have is when I do multiple sends of...

    Problem I have is when I do multiple sends of data from the winsock server to a client in quick succession, sometimes on the client receive in, parts of the data are lost. When I do a GetData on the...
  26. Replies
    0
    Views
    367

    With the outlook object model, there is a delete...

    With the outlook object model, there is a delete event on a folder. I am watching the inbox, and the event gets fired correctly. The problem I have is that outlook doesnt supply with me which item...
  27. Replies
    2
    Views
    345

    I'd also be quite interested in the answer :-)

    I'd also be quite interested in the answer :-)
  28. Thread: InstallShield

    by Ruxpin
    Replies
    5
    Views
    632

    Easiest way to find out if something needs...

    Easiest way to find out if something needs registering is to try and register it manually.

    regsvr32.exe something.dll
  29. Replies
    7
    Views
    565

    Not sure exactly what you are after.

    Not sure exactly what you are after.
  30. Replies
    4
    Views
    1,627

    Thanks Matthew, thats just what I was after :-)

    Thanks Matthew, thats just what I was after :-)
  31. Replies
    4
    Views
    1,627

    I want to have a thumbnail view of images, and...

    I want to have a thumbnail view of images, and then when they click on the image it opens a seperate window with the larger image in it. From examples I have seen with javascript, it can open an...
  32. Replies
    2
    Views
    424

    What you can do is make a dll with a class marked...

    What you can do is make a dll with a class marked as GlobalMultiuse. That way you dont have to dim up anything. Just include the reference in your project and you can call all the functions...
  33. Replies
    5
    Views
    637

    I guess if you arent gonna show the form modally,...

    I guess if you arent gonna show the form modally, then you can try this. Set the form you want on top, to have the parent of the one underneath it. Worked for me.



    Declare Function...
  34. Replies
    4
    Views
    523

    Sounds like each time you are trying to put the...

    Sounds like each time you are trying to put the new socket in a listen state.

    1 socket should be assigned as a listening socket.
    another socket (array) handles assigned connections.


    ...
  35. Replies
    3
    Views
    771

    So you dont get the dialog box popping up ...

    So you dont get the dialog box popping up



    Shell("regsvr32 /s mydll.dll")
  36. Thread: yay...winsock:(

    by Ruxpin
    Replies
    4
    Views
    476

    Every time you do a load on the winsock control,...

    Every time you do a load on the winsock control, it loads another winsock control with the same name. This increase the number of winsock controls in that array. The lbound tells you what is starts...
  37. Replies
    13
    Views
    915

    The aim is to keep forms as self contained as...

    The aim is to keep forms as self contained as possible. If I want a form to 'return' information, I treat the form as a function. So I create a method on the Form call .Display

    The user can...
  38. Replies
    4
    Views
    643

    Tried all that. The winsock OCX, works fine if...

    Tried all that. The winsock OCX, works fine if its included and used as a component, but not as a reference.
  39. Thread: Images

    by Ruxpin
    Replies
    1
    Views
    392

    Not really a VB question, more of an OCX...

    Not really a VB question, more of an OCX question. Im looking for a good ocx for displaying images, and has buit in transistions features. Anyone come across any good ones?
  40. Replies
    1
    Views
    490

    Im trying to write my own POP3/SMTP component,...

    Im trying to write my own POP3/SMTP component, just wondering if anyone know of some good source code for parsing the contents of a received message. i.e. Pulling out subject, to, from, priority,...
Results 1 to 40 of 87
Page 1 of 3 1 2 3



Click Here to Expand Forum to Full Width