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

Search:

Type: Posts; User: jggtz

Page 1 of 5 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    1
    Views
    136

    Re: Field Display Problem

    You could use a RecordSelectionFormula in your rpt
    Let's say that your parameter is named @quarter, then the formula could be like this:


    ( {@quarter}=1 And {Tablex.Month}>=1 And...
  2. Thread: VB6 Console Mode

    by jggtz
    Replies
    4
    Views
    227

    Re: VB6 Console Mode

    I didn't tested... but you could give it a try
    http://www.nirsoft.net/vb/console_application_visual_basic.html
  3. Thread: Need Help!

    by jggtz
    Replies
    3
    Views
    173

    Re: Need Help!

    Do You know how to resolve them manually ?
  4. Re: Its Urgent please solve my create table query in vb6

    You should use the connection


    cn.Execute ("create table " & text1.text & " (id int)")
  5. Replies
    6
    Views
    331

    Re: Homework Help!! Please!!

    Also
    She should post in VB.Net forum
  6. Re: Word AddIn that opens an existing word document

    Do as David says:


    If Dir("H:\SNH\" & Name, vbArchive) Then
    objWord.Documents.Open("H:\SNH\" + Name, , , True)
    Else
    MsgBox "File Not Found"
    End If
  7. Replies
    1
    Views
    216

    Re: Three group with two details.

    If it's possible it would be better if you could generate the data in the desired format by modifying the application
  8. Replies
    1
    Views
    206

    Re: Count Records-Fields

    One way :

    Right click over field to count
    Select Insert
    Select Summary
    Display an Insert Sumamry box
    Select "Count" in "Calculate this Summary"
    Select "Summary Location" ---> here choose the...
  9. Replies
    4
    Views
    267

    Re: Choose parameter from months

    Parameter fields...
  10. Replies
    6
    Views
    501

    Re: fill a database with numbers

    I never used Data Control but try next


    For a = 1 to 97
    For b = a + 1 to 98
    For c = b + 1 to 99
    For d = c + 1 to 100
    numbs.recordset.addnew
    numbs.recordset!Num1 =...
  11. Thread: Group By,sum

    by jggtz
    Replies
    10
    Views
    381

    Re: Group By,sum

    Insert a new formula field, name it MyTotal or whatever you like


    WhilePrintingRecords;
    numberVar totIncomes;
    numberVar totSpends;
    numberVar totStore;
    numberVar tottot;
    totot:= totIncomes -...
  12. Replies
    4
    Views
    267

    Re: Choose parameter from months

    You could use the Month function "Parameter field = Month({table.datefield})"
  13. Thread: Group By,sum

    by jggtz
    Replies
    10
    Views
    381

    Re: Group By,sum

    Also, you can use only 1 formula field instead of 3, as :
    #1


    WhilePrintingRecords;
    numberVar totIncomes;
    numberVar totSpends;
    numberVar totStore;

    If {Emp016.PelProm} = "1" Then
  14. Thread: Group By,sum

    by jggtz
    Replies
    10
    Views
    381

    Re: Group By,sum

    (Sorry, I gave you only the half of the solution)
    Yes
    You can insert each variable at report Footer Section with another formula field as :
    #4


    WhilePrintingRecords;
    numberVar totIncomes;...
  15. Thread: Group By,sum

    by jggtz
    Replies
    10
    Views
    381

    Re: Group By,sum

    "insert them in Detail Section & suppress them "
    It means that you must insert the 3 formula fields in the details section of the report
    and mark them as "suppress"
    Right click on each formula,...
  16. Thread: Group By,sum

    by jggtz
    Replies
    10
    Views
    381

    Re: Group By,sum

    Create 3 new formula fields
    name it as you like
    insert them in Detail Section & suppress them

    #1


    WhilePrintingRecords;
    numberVar totIncomes;
    If {Emp016.PelProm} = "1" Then
  17. Thread: Field not known

    by jggtz
    Replies
    1
    Views
    277

    Re: Field not known

    Have you verified database?
  18. Replies
    14
    Views
    545

    Re: ListView Added Item

    This a small listview example
    Let's start with it
    Study it
    Modify it...
    add textboxes Qty, Description, Price & Total
    add columns to listview
    Repost when done

    Say your Country
  19. Replies
    14
    Views
    545

    Re: ListView Added Item

    DID YOU REPLACE ALL YOUR CODE POSTED IN #1 FOR THE CODE POSTED IN #4 ?

    The code in post #4 only add to listview without accumulate
    So
    Do not say... post your actual code
  20. Replies
    14
    Views
    545

    Re: ListView Added Item

    Then use code in post #4 instead of your code in post #1
  21. Replies
    14
    Views
    545

    Re: ListView Added Item

    Dim Itm As MSComctlLib.ListItem
    Dim X As Integer
    Dim Dbl1 As Double
    Dim Dbl2 As Double
    Dim Aux1 As String

    Aux1 = ""
    For X = 1 To ListView1.ListItems.Count
    If...
  22. Replies
    14
    Views
    545

    Re: ListView Added Item

    If you want to just add to listview control every scanned item, then replace all your posted code by the next:


    Dim itm As MSComctlLib.ListItem

    Set itm = ListView1.ListItems.Add(, ,...
  23. Replies
    14
    Views
    545

    Re: ListView Added Item

    That's what you asked for in your previous post and that's what your code does
  24. Re: ListView Problem without saving in DB Acces Using VB 6.0

    To check if the code is already in the listview you should iterate all the listview's rows
  25. Re: Read from one tree and overwrite another tree with the values

    I don't think so... this guy has almost 2 months with the same problem in this and other forums
Results 1 to 25 of 120
Page 1 of 5 1 2 3 4



HTML5 Development Center

Click Here to Expand Forum to Full Width