User Profile

Collapse

Profile Sidebar

Collapse
CabaasSalwe
CabaasSalwe
Last Activity: May 19 '13, 05:28 AM
Joined: Jan 30 '13
Location: Telecomunication Compans
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • CabaasSalwe
    replied to Auto increment student number
    Try this.

    Code:
    Dim sql as string
    ------------------- your Connection
    Sql="Select Count(STDID) as ID from STUDENTTable"
    dim cmd as Sqlcommand
    cmd.connection= your Connection
    cmd.commandtype=commandText
    cmd.commandtext=SQL
    Dim RDR as SQlDatareader
    RDR=cmd.executeRearder
    If RDR.read then
    Label1.text=RDR.Items("ID")+1
    end if
    See more | Go to post

    Leave a comment:


  • Report Viewer Does not Update when passing parameters

    I have One Data Set Bends in Reportviewr, My dataset Have two Paramers in Report loud data will Displys in Normaly put the problem is when i pass the paremetrs in new values reportviewer the previouse data in reportviewer does not make any changes .

    Here is my Code i use:

    Code:
    Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load 
            mysession() 
            Label4.Visible
    ...
    See more | Go to post

  • How to Encrypt Specific Data Field in SQL 2000 Select Query

    i have Table colled User it cantains Password Field,
    Normaly in Salect Query for this Table, Will retrive All
    data Fields in this Table and Password Field all so Displed,

    My qeustion is How to encrypt Password Field in Fake Data
    ex(********) durring Select Query!

    like this..

    Id: UserName:Passwo d
    1 CBS *******
    2 VCB *******

    Thanks
    See more | Go to post

  • Use Sql Importing/Export functions
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...