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

Search:

Type: Posts; User: aldowsary

Page 1 of 2 1 2

Search: Search took 0.04 seconds.

  1. Replies
    9
    Views
    1,045

    Re: List all Data Types

    Exactly I want like what MZTools give in its Comboboxes when you try to add a Procedure.

    'dglienna' I don't know if you want to clarify the idea or you want told me to use this Tool.

    Any way I...
  2. Replies
    9
    Views
    1,045

    Re: List all Data Types

    I think VBP file is not enough. Also what about the projects that didn't saved yet!
  3. Replies
    9
    Views
    1,045

    Re: List all Data Types

    Thanks for replying guys, but i think nobody understand what i want exactly.

    Actually, I'm developing an Add-in and for a specific reasons i need to list all Data Types, Classes, and controls in a...
  4. Replies
    9
    Views
    1,045

    List all Data Types

    Hi Everybody,

    I want to ask how can I list all standard Data Types, Classes, Collections, and Controls which are loaded currently in a VB IDE session.

    For clarification, consider for example...
  5. Replies
    6
    Views
    926

    Re: Message Box When Open VB

    Thanks guys for help and special thank for HanneSThEGreaT, because I did exactly what you said.

    Unselecting "Load behavior: Load on Startup" for the "Visual Component Manager 6.0" solve the...
  6. Replies
    6
    Views
    926

    Message Box When Open VB

    Hi Everybody,

    Recently when I opened Visual Basic IDE a Message Box appears to me. This message box said:

    Subscript out of range.

    What is the reason for this message box? And what I can do...
  7. Replies
    4
    Views
    792

    Re: Allowed No. of Sessions for User

    Thanks WoF, but I'm sorry I couldn't understand your idea. Could you please demonestrate more?
  8. Replies
    4
    Views
    792

    Allowed No. of Sessions for User

    Hi Every body,

    I have an application programmed with VB 6.0 and I make this application in shared folder so that the others can run it through the network. The application has a list of specified...
  9. Replies
    2
    Views
    774

    Re: Remote Execution

    hi all,
    Is my question so difficult or not clear?
  10. Replies
    2
    Views
    774

    Remote Execution

    I have an application that located on a Server & users can run it from Clients PCs. There is a command in this application that execute a BAT file as following:
    Shell "C:\App\PutFiles.bat",...
  11. Replies
    3
    Views
    2,574

    DataReport Width

    Hi,
    Always I encountered the msgbox error Report width is larger than the paper width with DataReport. What is the proper width that I should made to avoid this error?
  12. Replies
    4
    Views
    1,979

    Re: ShortCut Creation While installing

    There are 2 ways.
    1st - Using third party application to create the Setup Package. Like Inno Setup for example. Search for this software & download it.

    2nd - Updating the Setup1.vbp to create...
  13. Replies
    4
    Views
    985

    Re: Blocking Program

    Actually there is no error occured. It is a Security Warning Message only.

    See the attachement file.
  14. Replies
    4
    Views
    985

    Blocking Program

    Hi Every body,
    I have an application programmed with VB 6.0 and I make this application in shared folder so that the others can run it through the network. I noted any Client have Windows XP get a...
  15. Re: VB in Access 2003 - Calculation Question

    Just invoke the statement
    txtPercent = txtPromo / txtPurchs on the Change Event of 2 TextBoxes (txtPromo & txtPurchs).
    Your code should contains the 2 subroutines below:


    Private Sub...
  16. Thread: File Format

    by aldowsary
    Replies
    2
    Views
    762

    Re: File Format

    See the attachment, I hope it is useful.
  17. Replies
    5
    Views
    759

    Re: I need help with this SQL statement

    Hi,
    The name of the column Database Name contains a space. You have to surround the coulmn's name by Square brackets [] to avoid the syntax error.

    So your SQL statement should be like the...
  18. Re: adding text to label in access form using vba

    Just set the Caption of your Label to the value that you want.

    Label1.Caption = strText
  19. Re: setting text properties in word tables in vb

    Could you please post your complete SUB?
  20. Re: setting text properties in word tables in vb

    Try the following:

    oTable.Cell(i%,2).Select
    Selection.HomeKey Unit:=wdLine
    Selection.MoveRight Unit:=wdWord, Count:=1, Extend:=wdExtend
    Selection.Font.Bold = True
    Note the above code assume...
  21. Re: Sharing an Exe file or Installing it in every clients which is better?

    I have the same situation. I make an EXE file & put it in a specific shared folder.
    In the beginning I faced a problem when the Application runs from the Client’s PC. The problem appeared when...
  22. Re: Lunch EXE or BAT file from VB6 application?

    Shell(pathname [,windowstyle])
    This function starts another application & returns a value representing the program's task ID if successful, otherwise it returns zero. The pathname argument is the...
  23. Replies
    6
    Views
    774

    Re: how do find currnet directory?

    App.Path will give you the application's path. Note that if your application was located directly on a Drive, like C:\ the return value of App.Path will give you C:\. On other hand, if your...
  24. Replies
    2
    Views
    4,603

    Re: MS Windows Common Controls 6.0 (SP4)

    Thanks WizBang, your solution was perfect and affective.
  25. Replies
    4
    Views
    771

    Re: DataReport Problem

    Actually, it isn't clear if you set the DataSource property of the DataReport. In general, the DataSource property of the DataReport must be set using code or properties window before showing it. See...
Results 1 to 25 of 26
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured