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
User 334793
Posts
-
.Net Remoting Problem -
COM+ Word Object ErrorI 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
-
Audio & Video chatHi, does any one know the links to source code about audio or video chatting software developed in c#. Thanks in advance
-
Oracle Stored Procedure Problem in .NETMy 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
-
How to get listing of all files usedHi, 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.
-
How to get Log of all files used for a dayHi. 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.
-
Thread Tutorial?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
-
Regular ExpressionDoes any of u guys know the link to good Regular Expression Tutorial in .NET specailly CSharp.
-
Software Testing tooldoes 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
-
Populating Combo Box on Key Press Eventi 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:(
-
CSharp Certification:) 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)
-
Custom ExceptionHi 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
-
CSharp Custom ExceptionNo 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
-
CSharp Custom ExceptionHi 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