Hi, Iam currently converting a exsisting VB6 application to C#. I want include CHM help file in it. How to achieve it in C#. Are there any native methods available in C#. Plz help me out.
david boon
Posts
-
How to include CHMHelpFile in C# -
date functions in asp.netHi, In my application,there are two textboxes where the user enters two dates. I have tp print all the dates between these two entered dates by the user.Can anybody help?
-
Uploading to Server Hard Diskhi, In my asp.net application, i want to upload files to my server i.e to my server hard disk and not to application folder. Also i need to browse my server directories,make directories,delete directories. Pl suggest me a technology to be followed for the above scenario. How far would ftp be useful in this case.
-
Upload files to sever hard diskhi, In my asp.net application, i want to upload files to my server i.e to my server hard disk and not to application folder. Also i need to browse my server directories,make directories,delete directories. Pl suggest me a technology to be followed for the above scenario. How far would ftp be useful in this case.
-
search a stringHi, iam new to xml.I have a xml document where i have to search for a string or keyword and display it in a datagrid.Plz help me Regards, david Boon.
-
Search a StringHi, iam new to xml.I have a xml document where i have to search for a string or keyword and display it in a datagrid.Plz help me Regards, david Boon.
-
RSS FeedHi all, Iam developing a website in which i need rss feeds from other sites.Seeing those feeds my home page details are changed.How can i manipulate rss from other sites?how to achieve above functionality?As iam new to rss feed plz help me out with relavant code or articles Regards, David Boon
-
MultiLingualHi all, iam currently developing a website. in the home page,client needs a option to view the site both in 'English' or 'tamil'. how to achoeve it. Should i have to develop separate pages for different languages? Plz help me out with some examples Regards, Boon
-
Plz help mehi, i want design a windows application where i'll give a word document as input. from that document i have to separate only the email ids and store it in a separate file. how to start? anybody give me a clue or a skeleton of this task David Boon
-
Plz help mehi, i want design a windows application where i'll give a word document as input. from that document i have to separate only the email ids and store it in a separate file. how to start? anybody give me a clue or a skeleton of this task David Boon
-
textbox in gridi have tried still not working
-
textbox in gridhi, the code is written in button click event. iam not getting any error. the value is null and no action takes place
-
textbox in gridhi, i have a txtbox in grid where user gives the input.i have to store the text into database. but iam unable to get the text. this is code iam using: Dim TxtBox As TextBox = CType(DataGrid1.Items(count).FindControl("TxtTimings"), System.Web.UI.WebControls.TextBox) Dim Timing As String = TxtBox.Text Response.Write(timing) please help Thanks and Regards, David Boon.
-
search engine optimizationhi, i have my site ready for deployment. i want my site to come in first 20 results of google search engine. is it search engine optimization? plz help me out regards, Boon
-
dynamic buttonhi, in my page load iam creating a row consisting of text box,drp down and button. on clicking the button a similar row should be created. how to fire the event of dynamically created button? code is there but not working. plz help me out Regards, Boon
-
repeaterhi, label is at position 4. type cas error is occured. specific type cast not allowed
-
repeaterhi, i have a repeater control with checl boxes and labels. i am able check if check box is checked or not but iam unable to get the value in label. my code is Dim lb1 As String lb1 = (CType(Repeater1.Items(0).Controls(2), System.Web.UI.WebControls.Label)).Text plz help me
-
web config errorhi, i tried but its showing error in we.config file.my web.config is
-
web config errorhi, when i run my asp.net application the following error comes. "Unable to start debugging on web server.Server side error occured on sending debug http request" plz help me out Regards, David Boon
-
Dropdownhi, i have a drop down list where i bind data from database. on selected index changed iam displaying a datagrid. everthing works fine but when click dropdown eachtime i find that same data is adding on to the dropdownlist. what to do? plz help meout. code is: Private Sub ddlbatchid_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ddlbatchid.SelectedIndexChanged str9 = Me.ddlbatchid.SelectedValue conn.ConnectionString = "server=127.userid=root;password=proagnes;database=erpl" conn.Open() cmd.CommandText = "SELECT * FROM courses WHERE batchid='" & str9 & "'" cmd.Connection = conn da.SelectCommand = cmd da.Fill(ds, "courses") Dim dtCourses As DataTable = ds.Tables("courses") Repeater1.DataSource = dtCourses Repeater1.DataBind() btnsubmit.Visible = True conn.Close()