Search:

Type: Posts; User: alMubarmij

Page 1 of 2 1 2

Search: Search took 0.04 seconds.

  1. Re: [SQL] - Adding Row/Serial Number to Any Database Query

    Can it work with Access 2003 or SQL Server 2000 ?
  2. Re: How to create or reorder a DataReport Text and Values in Runtime with VB6 ?

    The Microsoft sample project:

    How To Dynamically Populate a Data Report in Visual Basic
  3. Replies
    2
    Views
    1,934

    Re: crystal report and vb 6.0?

    Dim CN As New ADODB.Connection
    Dim rss As New Recordset
    Dim vcryapp New CRAXDDRT.Application
    Dim vrpt As New CRAXDDRT.Report

    cn = "ADO connection string with oledb provider for...
  4. Replies
    8
    Views
    6,852

    Re: MySQL .bas Module

    Ok, Can you correct and improve it ?
  5. Re: Arabic Numbers display on one machine but not another

    To view Arabic numbers (٠ - ١- ٢ - ٣ - ٤ - ٥ - ٦ - ٧ - ٨ - ٩) correctly use this font:
    SC_OUHOD.ttf
    or:
    AYM FREEDOM S_N.ttf

    Which attached with this post.
    These two fonts will force Arabic...
  6. Replies
    8
    Views
    6,852

    Re: MySQL .bas Module

    Ok CVMichael, Can you correct and improve it ?
  7. Re: [RESOLVED] Scroll down a MSFlexGrid with Mouse Wheel

    Can I use it with DataGrid control ?
  8. Replies
    3
    Views
    2,287

    Re: Dynamic Data Reports

    It's need a subscription.
    Can you copy it here ?
  9. Replies
    3
    Views
    1,046

    Re: To Use Datareport Directly

    I think he must use:
    frmMain.txtName.Text
    instead of:
    frmMain!txtName.Text
  10. Replies
    6
    Views
    3,206

    Re: [RESOLVED] Data Report or Crystal Report

    DataRepot is more simpler and easier than CrystalReport.
    But CrystalReport has more functions.
  11. Replies
    4
    Views
    702

    Re: Smart report generation-possible?

    Good questions, but it's hard to answer.
  12. Re: How can I open DataReport with Rezooming

    I am waiting...
  13. Re: How to create or reorder a DataReport Text and Values in Runtime with VB6 ?

    Anyone has any idea for this ?
  14. Replies
    3
    Views
    1,295

    Re: Send Values to an Rpt from a ListView

    http://vbforums.com/showthread.php?t=586628
  15. Replies
    9
    Views
    5,599

    Re: How to open a DataReport by ListView ?

    Thank you.
    But I need to get the first value (first column) from selected row in ListView, it's an ID number.
    I got it with DataGrid by: DataGrid.Columns(0).Value
    I just want to apply the same way...
  16. Replies
    9
    Views
    5,599

    Re: How to open a DataReport by ListView ?

    I am looking for someting like this:

    http://www.vbforums.com/showthread.php?t=532391
  17. Replies
    9
    Views
    5,599

    Re: How to open a DataReport by ListView ?

    Yes, thank you.
    But I need to return a value from ListView to open DataReport by it.

    I use this code with DataGrid for same purpose:


    '==============================
    Private Sub...
  18. Re: How to create or reorder a DataReport Text and Values in Runtime with VB6 ?

    Helpful links:

    http://support.microsoft.com/kb/240019?ln=en-me

    http://www.codeproject.com/KB/miscctrl/Invoice__Designer.aspx
  19. Re: How to create or reorder a DataReport Text and Values in Runtime with VB6 ?

    Thank you, but that need more details not in .Left and .Top properties.
    I am looking for a complete example for this idea.
  20. Re: How to create or reorder a DataReport Text and Values in Runtime with VB6 ?

    Yes, I mean dynamically genereted report as user checked values.

    But yes .. controls in DataReport must be exist before (in design mode).
    So, you just need to show and reorder them (in runtime)...
  21. How to create or reorder a DataReport Text and Values in Runtime with VB6 ?

    I want to create a costumized DataReport results as user chioce.
    I want to made it by CheckBoxes.
    When user check some of them they (Checked Values) will appeare on the report, otherwise they will...
  22. Replies
    8
    Views
    21,822

    Re: How to memory management in VB 6

    How can I use it inside my program ?
  23. Re: [RESOLVED] Advice on developing for WS monitors

    No, that information is not true.

    I say it again:
  24. Replies
    9
    Views
    5,599

    Re: How to open a DataReport by ListView ?

    I still wait.
  25. Re: Double Click problem with datagrid

    I tried it like this:
    MsgBox DataGrid.Rows(0).Cells(0).Value
    But I got an error message.
    I saw there is no "Rows" property for DataGrid control.
  26. Replies
    9
    Views
    5,599

    Re: How to open a DataReport by ListView ?

    I am waiting a solution.
  27. Re: How to add more 2 columns to DataGrid ?

    Thank you, it's working.
  28. Re: How to add more 2 columns to DataGrid ?

    The main problem now that "DataField" property does not work:

    DataGrid1.Columns(0).DataField = "Field1"
    DataGrid1.Columns(1).DataField = "Field2"
    DataGrid1.Columns(2).DataField = "Field3"...
  29. Re: How to add more 2 columns to DataGrid ?

    This code will work correctly:

    DataGrid1.ColumnHeaders = True

    For i = 0 To 4
    DataGrid1.Columns.Add(i)
    Next

    DataGrid1.Columns(0).Caption = "Header-1"
    DataGrid1.Columns(1).Caption =...
  30. Re: How to add more 2 columns to DataGrid ?

    I used it like the following code:
    DataGrid1.Columns.Add 5
    DataGrid1.Columns(0).Caption = "111"
    DataGrid1.Columns(1).Caption = "222"
    DataGrid1.Columns(2).Caption = "333"...
  31. [RESOLVED] How to add more 2 columns to DataGrid ?

    DataGrid came by default with two columns only (0, 1)
    So, how can I add more than 2 columns to a DataGrid ?
  32. Re: [RESOLVED] [02/03] Print ListView Conetents on Crystal Report

    ٍSorry, I came to this topic by search.
    And yes, I use VB6.
  33. Re: [RESOLVED] [02/03] Print ListView Conetents on Crystal Report

    Is there a way to do same thing with DataReport ?
  34. Re: Generate Crystal Report from List View (or other source)

    Is there a way to do same thing with DataReport ?
  35. Replies
    9
    Views
    5,599

    How to open a DataReport by ListView ?

    How can I open a DataReport by clicking on ListView Item which loaded from a Recordset ?
  36. Replies
    3
    Views
    1,295

    Re: Send Values to an Rpt from a ListView

    Can I do a same way to display a DataReport by clicking on ListView Item ?
  37. Re: How to use a Textbox to Search a MSFlexgrid

    I tried the cade as this:



    Dim DB As ADODB.Connection
    Dim RS As ADODB.Recordset


    Private Sub Form_Load()
  38. Opening a DataReport with a custom size

    How can I open a DataReport with a custom size of report page ?
  39. How can I open DataReport with Rezooming

    I want to control zoom function in a DataReport in runtime to open a customized zoom view.

    How can I do this ?
  40. Replies
    8
    Views
    21,822

    Re: How to memory management in VB 6

    I have a problem for my client/server database application.
    It's need restarting Windows every two or three days to resolve "Out of memory" error message on the server.

    Is there any soution for...
Results 1 to 40 of 57
Page 1 of 2 1 2



Click Here to Expand Forum to Full Width