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
S

sekannak

@sekannak
About
Posts
71
Topics
38
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • ms access 2007 record selection highlighting problem
    S sekannak

    Hi, I am working Access 2007. I am using subforms as datasheet view. I am embeding this subform to another main form. In main form this subform displays like Gridview, behind this i have some text box control on the main form. when i am selecting the records from the subform, the respective records will be bounded to the textbox boxes which is on the same form(Main), The problem is clicking on the cells is perfectly working, but when i click the left side column (default) as soon as i click any cells its not working, the respective record will be the bounded to the textbox boxes but the respective selected row from the subform is not highlighting instead of highting the same row . private sub Form_current() Form_frmFundGroup.Filter = "Id = " & Me![Id] Form_frmFundGroup.FilterOn = True end sub the above code is for subform to bound the data as per the selection on the subform(gridvew) how to resolve this can u anyone give me suggestion plz...

    kannak

    Visual Basic help tutorial

  • Windows service cannot able to start
    S sekannak

    Hi, I created windows service applcation in vs 2005. And registed the application sucessfully. The problem is i cannot able to start up the serice, while doing this am facing problem , which is as follows, Note: "service on local computer started and then stopped. some services stop automatically if they have no work to da, for example , the performance log and alerts logs" So how to resolve this error from my end. Please can u clear me this problem. regards, kannak.........

    kannak

    C# help tutorial visual-studio performance

  • Export Crystal Report to Excel/pdf in asp.net 3.5
    S sekannak

    ssssssssss will check thank u Asin...

    kannak

    ASP.NET csharp asp-net tutorial

  • Export Crystal Report to Excel/pdf in asp.net 3.5
    S sekannak

    Hi, I am creating asp.net 3.5 web application. I created crysptal report. I need to export crystal report data to excel/pdf and so on. In c# 3.5 (windows based) crystal report application having build in export option. But i dont thing its not possible in asp.net 3.5. So can u please tell me how to acheive this if any code for to export is more appreciatable. regards, kannak...........

    kannak

    ASP.NET csharp asp-net tutorial

  • UnixCrypt algorithm
    S sekannak

    Hi, I am using UnixCrypt class file for encryption in my application. I have confusion to passing the parameters to the Crypt method. There are Two methods are available, UnixCrypt.Crypt("Text To be Encrypt"); UnixCrypt.Crypt(Salt character ,TextTo be encrypt); My PAssword is : encrypt8 Note : can u any one plz clearly tell me the parameter which i have to pass to the proper Crypt method. What is meant by the Salt characters. Plz let me clear my dowts. regards,

    kannak

    C# algorithms security question

  • A reference to 'mscorlib' cannot be added
    S sekannak

    Hi, I need to use password Encryption file, the file is below unix_md5_crypt Fot that i came to know, to include the the reference , am not sure. Can u please explain ...

    kannak

    C# help csharp tutorial announcement

  • A reference to 'mscorlib' cannot be added
    S sekannak

    Hi, I need to use password Encryption file, the file is below "unix_md5_crypt" I am not sure, for that i need to reference the mscorlib dll. can u explain me plz...

    kannak

    C# help csharp tutorial announcement

  • A reference to 'mscorlib' cannot be added
    S sekannak

    Hi, I am working .net 3.5 version. I am developing windows application. I need to add reference the mscorlib dll from the microsoft reference , but i cannot able to do that instead of i got this error as follows, "A reference to 'mscorlib' could not be added' this component is automatically added by the project system and cannot be referenced directly". So how to resolve this problem.. Can u please explain me... Thanks & regards, kannak......

    kannak

    C# help csharp tutorial announcement

  • datatable merging
    S sekannak

    Hi, I have a dataset with 4 datatable . tbl1 having 2 coloumns like Col1 & Col2 with 3 rows tbl2 having 2 coloumns like Col1 & Col2 with 2 rows tbl3 having 2 coloumns like Col1 & Col2 with 4 rows tbl1 col1 col2 12 10 15 20 17 23 tbl2 col1 col2 30 31 32 38 tbl3 col1 col2 58 69 41 21 14 45 78 98 So how to merge the 3 tables into a single table, the output like col1 col2 col1 col2 col1 col2 12 10 30 31 58 69 15 20 32 38 41 21 17 23 0 0 14 45 0 0 0 0 78 98 Can you anyone please give me the output...

    kannak

    ASP.NET tutorial

  • I Want Picture Box in Asp.net .not Image Control
    S sekannak

    Hi, There is a vast data controls are available in .net2.0, use such a kind of available controls to populate your image ...but there is no exact picture box control but related controls are image control, image button control, html control , so u can use this control also.... Picture box control available in VB6.0. regards, kannak,,,,

    kannak

    ASP.NET csharp asp-net

  • Link in Textarea.......
    S sekannak

    Hi, Use NavigateUrl property for the Hyperlink control. regards, kannak.....

    kannak

    ASP.NET database tutorial

  • Notifications require SQL Server 9.0 or later
    S sekannak

    Hi, I am trying to use the Sqlcachedependency in my application but am getting error... step1) Enabled notification service of the database step2) enabled notification service of the Table step3) coding in asp.net2.0 protected void Page_Load(object sender, EventArgs e) { if (Page.IsPostBack == false) { DataTable tbl1 = new DataTable(); tbl1 = (DataTable) Cache.Get("tbl"); if (tbl1 == null) { tbl1 = fnloadgrid(); lbl.Text = System.DateTime.Now.ToString(); } grd.DataSource = tbl1.DefaultView; grd.DataBind(); } } public DataTable fnloadgrid() { if (Con.State == ConnectionState.Closed) { Con.ConnectionString = Constr.ConnectionString; Con.Open(); Cmd.Connection = Con; Cmd.CommandType = CommandType.StoredProcedure; Cmd.CommandText = "Sp_Select"; Cmd.Parameters.Add("@Tabid", SqlDbType.Int).Value = 1; SqlCacheDependency Depend = new SqlCacheDependency(Cmd); Da.SelectCommand = Cmd; Da.Fill(Ds, "tbl"); tbl = Ds.Tables[0]; Cache.Insert("tbl", tbl, Depend); } return tbl; } note: while filling am getting error like as follows, Notifications require SQL Server 9.0 or later. so what is this Error ..can u clear me plz.......? Regards, kannak.......

    kannak

    ASP.NET database question csharp asp-net sharepoint

  • Sqldatacaching
    S sekannak

    Hi, Thanks for responding me...i got it how to enable the notification services and all....... regards kannak.........

    kannak

    ASP.NET csharp asp-net database sql-server sysadmin

  • Sqldatacaching
    S sekannak

    Hi, I am trying to implement the Sqldatacaching in my application...am using asp.net2.0 and sql server 2005... I dont know how to enable the notification services and all,, so can u anyone please explain me.. Thanks in Advance kannak.....

    kannak

    ASP.NET csharp asp-net database sql-server sysadmin

  • sqldepenency
    S sekannak

    Hi, I am trying to use sqldatadependency in my asp.net application, for that iam start doing First step is to enable the Database notification like as follows.. aspnet_regsql -S localhost -E -d TestDatabase -ed in microsoft sql server notification service Environment (command prompt) in Sql server 2005 .... but i got error like.. aspnet_regsql operation is not recognized internal.. I dont dont know where am going wrong path ..can u able to track this plz.. Thanks in Advance.. kannak........

    kannak

    ASP.NET asp-net database csharp sql-server sysadmin

  • document.selection - not working in firefox
    S sekannak

    Hi, Thanks u for your response, i will use this code...... regards, kannak......

    kannak

    ASP.NET question

  • document.selection - not working in firefox
    S sekannak

    Hi, I will clearly explain my requirement , Listbox and textbox in my page..listbox having 5 rows...when i select any data from the listbox , the selected data should copied and pasted to the Textbox...for i use Javascript method ...its working fine in IE but not working in Firefox..the javascript method as follows..can u please check it out why its not working in Firefox.. function insertTextFun() { if (document.selection) { document.getElementById("<%= txtExprsn.ClientID %>").focus(); var sel = document.selection.createRange(); var varname = document.getElementById("<%= lsbFunction.ClientID %>"); sel.text = varname.options[varname.selectedIndex].text; } else if (txtExprsn.selectionStart || txtExprsn.selectionStart == '0') { var startPos = txtExprsn.selectionStart; var endPos = txtExprsn.selectionEnd; txtExprsn.value = txtExprsn.value.substring(0, startPos) + lsbFunction[lsbFunction.selectedIndex] + txtExprsn.value.substring(endPos, txtExprsn.value.length); } else { txtExprsn.value += lsbFunction[lsbFunction.selectedIndex]; } Am calling this function onclick method of the listbox.. Thanks in Advance, kannak.......

    kannak

    ASP.NET question

  • document.selection - not working in firefox
    S sekannak

    Hi, I tried that link ..its working fine in IE but not working in Firefox.. my problem is also like that ...the Javascript function is working in IE but not working in FIREfox regards, kannak.........

    kannak

    ASP.NET question

  • could not access hiddenfield
    S sekannak

    Hi, It Has to work...check it out ...settings of browser stuffs and all.. I tried your same problem i got the value from server side in both IE and firefox.... regards, kannak...........

    kannak

    ASP.NET javascript help

  • document.selection - not working in firefox
    S sekannak

    Hi, This is not firing in Mozilla firefox.. if (document.selection) { alert("abc"); } what is the equalant function for Firefox can u clear me plz..... Regards, kannak

    kannak

    ASP.NET question
  • Login

  • Don't have an account? Register

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