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
U

User 334793

@User 334793
About
Posts
14
Topics
13
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • .Net Remoting Problem
    U User 334793

    i have a problem in the remote method of the object. the problem is that when i call a remote method and inside this remote method i am creating a new window from and use the form.Show() method it is hanged and the form doesn't show up. Any Solution to the problem. Plz Help Urgent

    C# help csharp

  • COM+ Word Object Error
    U User 334793

    I am using word 10.0 object library for the printing of the creation of a word document ( with office 2002) it works fine on windows xp but when i deploy the same application on windows 2003 server it doesn't work. The following Error is generated " Message Filter Application is Busy"; Can anyone help in this regard

    C# help com sysadmin

  • Audio & Video chat
    U User 334793

    Hi, does any one know the links to source code about audio or video chatting software developed in c#. Thanks in advance

    C# csharp lounge

  • Oracle Stored Procedure Problem in .NET
    U User 334793

    My problem is this, i have a stored procedure in oracle, and i which authenticates a user on the basis of loginName and password. the problem is that when i accesssed it through C# giving the two parameter as input and one parameter as output. there is no value return in output parameter. can some on tell me how to get the output parameter value in my code Thanks In Advance //------------- stored procedure name is ===========SecurityPkg.Authenticate============= PROCEDURE Authenticate(loginName IN VARCHAR2,loginPassword IN VARCHAR2, loginResult OUT INT ) IS objectId NUMBER := -1; objectPwd VARCHAR2(100); passwordExpiredDate DATE; BEGIN Select OBJECT_ID,PASSWORD,PASSWORD_EXPIRES INTO objectId,objectPwd,passwordExpiredDate From Application_User Where Application_User.Login_Name=loginName; IF(objectId = -1) THEN loginResult := ACCOUNT_DOESNOT_EXITS; END IF; IF(objectPwd != loginPassword) THEN loginResult := WRONG_PASSWORD; End if; IF(passwordExpiredDate < SYSDATE) THEN loginResult := PASSWORD_EXPIRED; END IF; EXCEPTION WHEN NO_DATA_FOUND THEN loginResult := ACCOUNT_DOESNOT_EXITS; END Authenticate; //------------------- csharp code that access the above stored procedure of oracle OracleCommand cmd=new OracleCommand(); cmd.CommandText="Security_Pkg.Authenticate"; cmd.Connection=myConnection; cmd.CommandType=CommandType.StoredProcedure; // first param OracleParameter loginNameParam=new OracleParameter("loginName",OracleDbType.Varchar2); loginNameParam.Direction=ParameterDirection.Input; loginNameParam.Value="Ali"; // 2nd param OracleParameter loginPasswordParam=new OracleParameter("loginPassword",OracleDbType.Varchar2); loginPasswordParam.Direction=ParameterDirection.Input; loginPasswordParam.Value="pass"; // 3rd param OracleParameter loginResultParam=new OracleParameter("loginResult",OracleDbType.Int16); loginResultParam.Direction=ParameterDirection.Output; cmd.Parameters.Add(loginNameParam); cmd.Parameters.Add(loginPasswordParam); cmd.Parameters.Add(loginResultParam); cmd.ExecuteNonQuery(); Now when i check the value of loginResultParam, its null. can any one tell me how to get its value

    C# csharp database oracle security help

  • How to get listing of all files used
    U User 334793

    Hi, can anyone tell me how to get the list of all files used by the user while he is logon on the system. i.e i want to get the listing of all the files accessed while he was log-on, how much time he has used each file. etc. does any one have any idea. or a url of any project. which give such facilities.

    C / C++ / MFC tutorial

  • How to get Log of all files used for a day
    U User 334793

    Hi. i am developing a project in csharp. and in this project i will mointor all the files and application that will be used by the user while he is logon on the system. Does any one have any idea or a link to some project where i can find help about this. Thanks in Advance.

    C# csharp help tutorial

  • Thread Tutorial?
    U User 334793

    Does any one of u know where i can find a good threading tutorial in mfc. both beginner and advanced level. specially about user-interface thread

    C / C++ / MFC c++ tutorial question learning

  • Regular Expression
    U User 334793

    Does any of u guys know the link to good Regular Expression Tutorial in .NET specailly CSharp.

    C# csharp regex tutorial

  • Software Testing tool
    U User 334793

    does any one of u know a free-ware tool that can test software. i.e does its black box, white box, regression or other type of testing

    C# testing beta-testing

  • Populating Combo Box on Key Press Event
    U User 334793

    i am populating combobox on keypress event of the combobox. when three character are pressed, i get for the text so for written in the combobox and search the text in the database, after searching if results are found, combo-box is clear & populated again using a for loop ( since the result after the database query is an ArrayList). Next i do this combox.DroppedDown=true, Now here comes the problem, the selected text (i.e the characters that are written in the combox box are cleared), i have expilicity set the combo-box text. other problem is when combo box is in dropped down mode, the first element get selected even if i don't want to . please help if any one has solution:(

    C# database help algorithms

  • CSharp Certification
    U User 334793

    :) Does any one of u know how to get certified (from microsoft) in C#. Also is there any help availble on the topics issued by microsoft. please give the exact links (if possible)

    C# csharp help tutorial

  • Custom Exception
    U User 334793

    Hi Guys! we know that there is a way to handle custom exceptions in asp dot net by specify the error page. is there any way to do the same in csharp windows form. i.e custom windows form. i don't want to write try/catch block in my programm in all places.i just want to write it once where it can handle all the program exception. is there a way. i want to write only one try/catch block that can handle all the exceptions of the whole applications(windows Application), which off-course may contains multiple windows forms Ali Khan

    C# csharp winforms help learning

  • CSharp Custom Exception
    U User 334793

    No u don't understand my question, i want to write only one try/catch block that can handle all the exceptions of the whole applications, which off-course may contains multiple windows forms

    C# csharp help

  • CSharp Custom Exception
    U User 334793

    Hi Guys! we know that there is a way to handle custom exceptions in asp dot net by specify the error page. is there any way to do the same in csharp windows form. i.e custom windows form. i don't want to write try/catch block in my programm in all places.i just want to write it once where it can handle all the program exception. is there a way.:(( Ali Khan

    C# csharp 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