Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
P

poonams

@poonams
About
Posts
18
Topics
11
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Problem with Listview
    P poonams

    hi all thanks for previous reply. I have another qurey.I serched lot for this ,but did't get proper solution. Actully in my application m using vb.net2003 and access.On one form I have used tabcontrol with 2 tabpages.On 1st tabpage there is list view.I wt i want is ,when i click on any item the text of that item should display on textbox of another tabpages.To get text value of item i wrote several code like [code] Dim item As ListViewItem Dim column As Integer MessageBox.Show(item.SubItems(0).Text) or MsgBox(LstRecord.SelectedItems(1).Text) or MsgBox(LstRecord.SelectedItems(1).SubItems(2).Text) or l1.Text = LstRecord.SelectedItems(3).Text.ToString or MsgBox(e.Item.ToString) [/code] it fails every time.Plz help me.

    poonam

    Visual Basic help csharp

  • save images into access
    P poonams

    hi can any one tell me how to store & retrive images from Access.

    poonam

    Visual Basic tutorial

  • My break point not working properly
    P poonams

    hi nilesh plz tell me hw i know application running in debug or release mode.& hw i solve the problem. thanks for reply

    poonam

    Visual Basic csharp debugging help

  • My break point not working properly
    P poonams

    hi all thnaks for previous reply One more thing I want to ask u guys.it must be silly que.Actually I am working in vb.net2003 in my one application breakpoits works properly.but in another application ,when i debug application one quemark appear on break pt.& it does not work at all.I do't know wt happend.Can any one help me. thanks in advance

    poonam

    Visual Basic csharp debugging help

  • problem in importing table into Excel
    P poonams

    hi In my application i want to import table from Access to Excel.I have include Microsoft Web Browser to display the excel sheet .When i am running the application.It display the sheet.But One error is pop up"The file can not access,it being used by another process" Can anyone give the sol.here is my code [code] Try Dim excel As New Excel.ApplicationClass Dim wBook As Excel.Workbook Dim wSheet As Excel.Worksheet wBook = excel.Workbooks.Add() wSheet = wBook.ActiveSheet() filltemp() Cmd.CommandType = CommandType.Text 'Cmd.CommandText = "Select * from SalRpt_temp" Cmd.CommandText = "SELECT a.srno as Srno,a.ename as 'Name Of Employee',a.pdays as 'Present Day',a.desig as Designation ,a.bs as Basic,a.dp as DP,a.total as Total,a.hra as HRA,a.cla as CLA,a.ta as TA,a.npa as NPA,a.other as'Other Allowance',a.tal as 'Total Allowance',a.net as 'Net Claim',a.pt as 'PTax',a.it as 'Income Tax',a.sal as 'SalAdv',a.pf as PF,a.lic as LIC,a.bank as 'Bank Recov',a.tdeduct as 'Total Deduction',a.netsal as 'Net Salary' FROM SalRpt_temp a" Cmd.Connection = con adp.SelectCommand = Cmd adp.Fill(ds) Dim dt As System.Data.DataTable = ds.Tables(0) Dim dc As System.Data.DataColumn Dim dr As System.Data.DataRow Dim colIndex As Integer = 0 Dim rowIndex As Integer = 1 For Each dc In dt.Columns colIndex = colIndex + 1 excel.Cells(1, colIndex) = dc.ColumnName Next For Each dr In dt.Rows rowIndex = rowIndex + 1 colIndex = 0 For Each dc In dt.Columns colIndex = colIndex + 1 excel.Cells(rowIndex + 1, colIndex) = dr(dc.ColumnName) Next Next 'AxWebBrowser1.Navigate("G:\Salary Package\salary.xls") wSheet.Columns.AutoFit() Dim strFileName As String = "G:\Salary Package\salary.xls" AxWebBrowser1.Navigate(strFileName) Dim blnFileOpen As Boolean = False Try Dim fileTemp As System.IO.FileStream = System.IO.File.OpenWrite(strFileName) fileTemp.Close() Catch ex As Exception blnFileOpen = False End Try If System.IO.File.Exists(strFileName) Then

    Visual Basic help csharp career

  • Crystal Report Deployment
    P poonams

    hi the error was solved.But I have new problm.When I am deploying the project on client machine all things work good.Only crystal report has a problem.It gives error "Load Report Failed".I wrote the code on CRV [code] crv.ReportSource = "..\Reports\enq.rpt" [/code] hw can i solve this type of prblm.

    poonam

    Visual Basic csharp visual-studio sysadmin help tutorial

  • Crystal Report Deployment
    P poonams

    hi all I am using vs.net 2003 with access.I Usng <b>Crystal Reports </b>in my project.I made my setup but i don't know which additional files I have to add for crystal repots.Can anyone helpme.When I am Installing app to client machine it get error "KeycodeV32.dll not registerd".Is the probelm is due to setup ??? Plz give me full details how to include crystal reports in setup. Its urgent. thanks in advance

    poonam

    Visual Basic csharp visual-studio sysadmin help tutorial

  • hi all
    P poonams

    i want to import excel sheet on a form?

    poonam

    Visual Basic question

  • Plz help me
    P poonams

    hi all i have to autogenerate invoice no which should be alphnumeric. Had any one idea about how to autogenerate IDs

    poonam

    Visual Basic help tutorial

  • how to get index value of menuitem
    P poonams

    [code] Dim mShowMenuItem As System.Windows.Forms.MenuItem mShowMenuItem = DirectCast(sender, System.Windows.Forms.MenuItem) mShowMenuItem.MenuItems.Clear() Dim n, i As Integer Dim a, b As String s = "Select srno from cash" com = New OleDbCommand(s, con) con.Open() dr = com.ExecuteReader While dr.Read n = dr(0) End While con.Close() For i = 1 To n s = "Select account from cash" com = New OleDbCommand(s, con) con.Open() dr = com.ExecuteReader While dr.Read() a = dr(0) Dim mSubSubMenuItem As System.Windows.Forms.MenuItem mSubSubMenuItem = New System.Windows.Forms.MenuItem mSubSubMenuItem.Index = i mSubSubMenuItem.Text = a mSubSubMenuItem.Enabled = True mSubSubMenuItem.Visible = True AddHandler mSubSubMenuItem.Click, AddressOf MenuClickHandler mShowMenuItem.MenuItems.Add(mSubSubMenuItem) i = i + 1 End While con.Close() Next this will generate menus Public Sub MenuClickHandler(ByVal Sender As Object, ByVal e As System.EventArgs) 'Don't know wt to write here End Sub

    poonam

    Visual Basic database help tutorial question

  • how to get index value of menuitem
    P poonams

    Hi Richard Hw can i set tag value,Becoz my menus are generating at run time.Thats why i have created event handler.If i don't know which menu is clicked runtime then hw i can show the reports.I need a code which will store index value of a menu which is clicked. by the way thanks for reply

    poonam

    Visual Basic database help tutorial question

  • how to get index value of menuitem
    P poonams

    hi all, anyone help me? i have generated menus at run time.Now i want to disply reports on each menu.But i can't get index value of menu.I have created one click event for the menu but how i can identify the index of menu which is clicked.plz help me.

    poonam

    Visual Basic database help tutorial question

  • hw to get index
    P poonams

    hi all i have some lines of code which generarte menu at run time.now i want to pass the index value of menu to another function.hw to do so plz help me.... [code] For i = 1 To n s = "Select account from cash" com = New OleDbCommand(s, con) con.Open() dr = com.ExecuteReader While dr.Read() a = dr(0) b = a Dim mSubSubMenuItem As System.Windows.Forms.MenuItem mSubSubMenuItem = New System.Windows.Forms.MenuItem mSubSubMenuItem.Index = i mSubSubMenuItem.Text = b mSubSubMenuItem.Enabled = True mSubSubMenuItem.Visible = True AddHandler mSubSubMenuItem.Click, AddressOf MenuClickHandler mShowMenuItem.MenuItems.Add(mSubSubMenuItem) i = i + 1 End While [/code] i want to pass the value of i to MenuClickHandler

    poonam

    Visual Basic database com help

  • Creating Dynamic menu from database in vb.Net
    P poonams

    the below code generating a single menu.it was not working properly.I don't know hw to proceed??? [code] For i = 1 To n s = "Select account from cash" com = New OleDbCommand(s, con) con.Open() dr = com.ExecuteReader While dr.Read() a = dr(0) b = a 'End While 'con.Close() 'For i = 1 To n Dim mShowMenuItem As MenuItem mShowMenuItem = DirectCast(sender, MenuItem) mShowMenuItem.MenuItems.Clear() Dim mSubSubMenuItem As MenuItem ' This second sub menu item causes a problem: mSubSubMenuItem = New MenuItem mSubSubMenuItem.Index = i mSubSubMenuItem.Text = b mSubSubMenuItem.Enabled = True mSubSubMenuItem.Visible = True AddHandler mSubSubMenuItem.Click, AddressOf MenuClickHandler mShowMenuItem.MenuItems.Add(mSubSubMenuItem) i = i + 1 End While con.Close() Next

    poonam

    Visual Basic csharp database help

  • Crystal reports in vb.net 2003
    P poonams

    hi all Can anyone tell me ,hw to create setup of application which has cryastal reports.By using simple setup method .application is running fine but crystal report can't executing.wt is reason.is there any other method to bind crystal report with our application.

    poonam

    Visual Basic csharp workspace

  • Creating Dynamic menu from database in vb.Net
    P poonams

    'Counting Values of Database s = "Select srno from cash" com = New OleDbCommand(s, con) con.Open() dr = com.ExecuteReader While dr.Read n = dr(0) End While con.Close() 'Selecting Account Type s = "Select account from cash" com = New OleDbCommand(s, con) con.Open() dr = com.ExecuteReader While dr.Read() a = dr(0) End While con.Close() For i = 1 To n Dim mShowMenuItem As MenuItem mShowMenuItem = DirectCast(sender, MenuItem) mShowMenuItem.MenuItems.Clear() Dim mSubSubMenuItem3 As New MenuItem mSubSubMenuItem3 = New MenuItem mSubSubMenuItem3.Index = i mSubSubMenuItem3.Text = a mSubSubMenuItem3.Enabled = True mSubSubMenuItem3.Visible = True AddHandler mSubSubMenuItem3.Click, AddressOf MenuClickHandler mShowMenuItem.MenuItems.Add(mSubSubMenuItem3) Next

    poonam

    Visual Basic csharp database help

  • Creating Dynamic menu from database in vb.Net
    P poonams

    thanx for ur reply.But I don't know how to start.Can u explain it by coding.plz it very urgent.plz help me

    poonam

    Visual Basic csharp database help

  • Creating Dynamic menu from database in vb.Net
    P poonams

    I have some problem .I want to create the menu at run time.User will enter some value into database by another form.the value should appear as new menu.My backend is MS access & front end is VB.net2003 after that,if user click on the menu it should disply the corrosponding report. plz reply

    poonam

    Visual Basic csharp database help
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups