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
J

John L Ponratnam

@John L Ponratnam
About
Posts
65
Topics
48
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Linked Server
    J John L Ponratnam

    Is there any way to link two server other than using OPENQUERY.

    Database sysadmin

  • Log in problem in SQL Server Management Studio 2008
    J John L Ponratnam

    I could connect the database to different server thro' network, but last few days it fails to connect. It populates the Error message Failed to retrieve data for this request (Microsoft.SqlServer.Management.Sdk.Sfc.EnumeratorCore) To my suprises I could connect the SQL Profiler. If there is network problem it wouldn't connect profiler. I think there is no problem in Network. Could anyone help me out.

    Regards, John.L.Ponratnam

    Database help database sysadmin sql-server

  • Authenticating Active Directory
    J John L Ponratnam

    I have a login form which will connect the Active Directory to check the user; but the output that i get is alway not couldn't connect. When the it debugs in the Searcher.FindOne(); I get this error. Boolean Success = false; DirectoryEntry Entry = new DirectoryEntry("LDAP://" + Domain, UserName, Password); DirectorySearcher Searcher = new DirectorySearcher(Entry); Searcher.SearchRoot = Entry; Searcher.Filter = "(&(objectClass=user)(sAMAccountName=" + UserName + "))"; Searcher.PropertiesToLoad.Add("cn"); Searcher.SearchScope = SearchScope.Subtree; try { SearchResult Results = Searcher.FindOne(); Success = (Results != null); } Help me to solve this issue.

    Regards, John.L.Ponratnam

    Windows Forms help windows-admin

  • Connecting to Active Directory
    J John L Ponratnam

    I have a login form which will connect the Active Directory to check the user; but the output that i get is alway not couldn't connect. Boolean Success = false; DirectoryEntry Entry = new DirectoryEntry("LDAP://" + Domain, UserName, Password); DirectorySearcher Searcher = new DirectorySearcher(Entry); Searcher.SearchRoot = Entry; Searcher.Filter = "(&(objectClass=user)(sAMAccountName=" + UserName + "))"; Searcher.PropertiesToLoad.Add("cn"); Searcher.SearchScope = SearchScope.Subtree; try { //Test = UserExists(Domain, UserName, Password); SearchResult Results = Searcher.FindOne(); Success = (Results != null); } please help me to find the solution.

    Regards, John.L.Ponratnam

    Windows Forms windows-admin help

  • Generating datas in GridView and export to Excel [modified]
    J John L Ponratnam

    Hi, I use this code for generating the data from Grid to Excel Dim fs As New FileStream("D:\Library.xls", FileMode.Create) Dim reportDataAdapter As IReportDataAdapter = New DataGridViewReportDataAdapter(datagrid) Dim winFormsReportExporter As IReportExporter = New WinFormsReportExporter(reportDataAdapter) Dim xlsFiledata As MemoryStream = winFormsReportExporter.ExportToXls xlsFiledata.WriteTo(fs) fs.Close() xlsFiledata.Close() But I get error message "An error occured during local report processing" near the line 4. Can any one help in solving the problem. Regards, John

    Regards, John.L.Ponratnam

    modified on Monday, February 22, 2010 2:07 AM

    Visual Basic help css

  • Using Ajile Scripts
    J John L Ponratnam

    Can we use Ajile scripts while designing the aspx page

    Regards, John.L.Ponratnam

    Web Development

  • Types of Deadlocks in SQL Server
    J John L Ponratnam

    Please help me out, what are the types of deadlocks in SQL Server; and how are the ways to solve it?

    Regards, John.L.Ponratnam

    Database database sql-server sysadmin help question

  • Connection String
    J John L Ponratnam

    In one of the project they used System.Data.OleDb for connecting the SQL Server 2000 database. How does it differ from using System.Data.SqlClient.

    Regards, John.L.Ponratnam

    Database database sql-server sysadmin

  • Extraction of datas
    J John L Ponratnam

    Can you tell me how you can export?

    Regards, John.L.Ponratnam

    ASP.NET question

  • Error while loading a win form.
    J John L Ponratnam

    When I run the windows application, sometimes I get such error message "The CLR has been unable to transition from COM context 0x1a6fd8 to COM context 0x1a6e68 for 60 seconds. The thread that owns the destination context/apartment is most likely either doing a non pumping wait or processing a very long running operation without pumping Windows messages. This situation generally has a negative performance impact and may even lead to the application becoming non responsive or memory usage accumulating continually over time. To avoid this problem, all single threaded apartment (STA) threads should use pumping wait primitives (such as CoWaitForMultipleHandles) and routinely pump messages during long running operations." Can I know why such error message we get?

    Regards, John.L.Ponratnam

    Visual Basic performance help mobile dotnet com

  • Extraction of datas
    J John L Ponratnam

    I have generated more than 65000 rows in gird. I need to extract it into excel. But if i extract the datas, excel file doesn't open. Since excel doesn't supports more than 65000 rows. Is there any option?

    Regards, John.L.Ponratnam

    ASP.NET question

  • Query in LINQ
    J John L Ponratnam

    I have seen all LINQ coding are in C sharp. Do u havw such codings in VB.Net. If so give me some examples.

    Regards, John.L.Ponratnam

    LINQ csharp database linq

  • Connecting to the SQL Server 2000
    J John L Ponratnam

    I have connected to the SQL Server 2000 using SQL Server Authentication. But i want to know; How to connect to the SQL Server 2000 in Windows Authentication to the .Net Application

    Regards, LEE

    Database csharp database sql-server sysadmin security

  • Syntax
    J John L Ponratnam

    I m beginner to VB.Net. Can some one help me in the syntax for Ternary Operator in VB.Net.

    Regards, LEE

    Visual Basic csharp help learning

  • About Hashtables
    J John L Ponratnam

    I need to know what is Hashtables? and how it is used. Plz give me some examples

    Regards, LEE

    C# question

  • Connection to database
    J John L Ponratnam

    How do we connect to a database from .aspx page?

    Regards, LEE

    ASP.NET database question

  • web.cofig
    J John L Ponratnam

    I am not using the web.config file in the same root. First web.config will be accessessed by the login and the second web.cofig in a specified folder where the connection is for that specified folder.

    Regards, LEE

    ASP.NET

  • web.cofig
    J John L Ponratnam

    We can have two Web.config in a project. In the first Web.config; in appSetting u have one connection and in the second Web.config u have different connection. Which connection does the project work.

    Regards, LEE

    ASP.NET

  • Wrapping up the words in Grid
    J John L Ponratnam

    How to wrap the words in a GridView

    Regards, LEE

    ASP.NET css tutorial

  • Getting the values of the affected row.
    J John L Ponratnam

    If we delete or update a row in a table; the no of changed row shows as n rows affect. Here is the example. Ex: update TableName set Column1='N' where Column2=2 Output: 4 rows affected In this i need to get the value 4. How to fetch that value. Can anyone help me out :doh:

    Regards, LEE

    Database tutorial help announcement
  • Login

  • Don't have an account? Register

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