User Profile

Collapse

Profile Sidebar

Collapse
adsaca
adsaca
Last Activity: Apr 29 '09, 07:11 AM
Joined: Aug 22 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Report Footer Doesnt Display any (Crystal Report Help)

    there basic sections in Crystal report namely


    Report Header

    Page Header

    Group Header

    Details

    Group Footer

    Page Footer

    Report Footer


    I can display data to these sections except for one.
    I can't see anything that i drag in the Report Footer.
    It is not hidden neither suppressed but i just cant see anything in there even...
    See more | Go to post

  • adsaca
    started a topic Crystal report help

    Crystal report help

    Hi to all

    i am newbie in constructing layouts in crystal report.

    i just really needed a help to this.

    i have details section in left side of the page
    Code:
    Subject A                   |_______|________|________ |
    Subject B                   |_______|_________________|
    Subject C                   |_______|________|________ |
    Subject D                   |_______|_________________|
    ...
    See more | Go to post
    Last edited by adsaca; Apr 24 '09, 02:35 AM. Reason: wrong preview

  • Thanks

    dude, im using VB 2008 that's why your code doesn't work the way i want it. anyway, thanks for your response.
    i already figured the solution to my problem

    Code:
    For ctr=0 To myCheckedListBox.Items.Count-1
       myCheckedListBox.Items.Item(ctr)(1).ToString
     Next
    where ctr is the row and 1,constant,refe rs to the column

    tnx!
    See more | Go to post

    Leave a comment:


  • How to get all items in the checkedlistbox

    hi, here's my code in checkelistbox which was already filled in upon loading of the form

    Code:
    myCheckedListBox.Items.Add("A")
    myCheckedListBox.Items.Add("B")
    myCheckedListBox.Items.Add("C")
    myCheckedListBox.Items.Add("D")
    so now, i want to get all the items from myCheckedListBo x.

    please help me figure out this matter.

    ...
    See more | Go to post

  • Update joined table in datagridview

    database: MySQL
    i use connector

    i have two tables with the following contents:

    tbl_user_info
    • user_id(Primary Key)
    • fname
    • lname

    tbl_account
    • account_id(Prim ary Key)
    • user_id(Foreign Key)
    • username
    • password

    NOW, i want this two tables to be displayed in the datagridview

    so i used this codes:...
    See more | Go to post

    Leave a comment:


  • adsaca
    started a topic Update joined table in datagridview

    Update joined table in datagridview

    database: MySQL
    i use connector

    i have two tables with the following contents:

    tbl_user_info
    • user_id(Primary Key)
    • fname
    • lname

    tbl_account
    • account_id(Prim ary Key)
    • user_id(Foreign Key)
    • username
    • password

    NOW, i want this two tables to be displayed in the datagridview

    so i used this codes:
    Code:
    sql = "SELECT * FROM tbl_user_info"
    ...
    See more | Go to post

  • adsaca
    replied to transparent button in vb.net
    tnx for the reply

    regards,
    arjel
    See more | Go to post

    Leave a comment:


  • i've already found a solution to my problem, and here's what i did.

    Code:
    myAdapter.Update(myData , "table_user")
    See more | Go to post

    Leave a comment:


  • update database when datagridview changes

    here's my code in filling a datagridview,wh ich i retrieve from database mysql,

    Code:
            dim sql as String
            sql = "SELECT * FROM table_user"
            Dim myData As New DataTable
    
            comm.Connection = conn
            conn.Open()
    
           ' comm.CommandType = CommandType.Text
            comm.CommandText = sql
            myAdapter.SelectCommand = comm
            myAdapter.Fill(myData)
    ...
    See more | Go to post

  • Fill datagridview using in vb.net with mysql

    Im new to this field, so please help me do this.

    i just want to know on how to fill a datagridview. with the database MySQL, how could i fill it using a DataSet.

    tnx,
    arjel
    See more | Go to post

  • adsaca
    started a topic transparent button in vb.net

    transparent button in vb.net

    How to make a transparent button in vb.net(windows application)

    any help pls,

    tnx,
    arjel
    See more | Go to post
No activity results to display
Show More
Working...