Search results for query: *

  1. N

    Help Cannot raise events in my web service

    Writing Service for moving files in folder service is starting but cannot raise event heres my code can any 1 suggest how do i raise events... its urgent .. plz. using System; using System.Collections; using System.ComponentModel; using System.Data; using System.Diagnostics; using...
  2. N

    Windows Service Error

    I m new to windows service . I have written a windows service but when i run it; it show me a alert saying " Cannot start Service from the command line or a debugger. A window Service must First be installed (usng installutil.exe)and then started with the ServiceExplorer,Windows Service...
  3. N

    how do i start.... .

    i Need to develop an application that will read image files from a 1 server's folder place it on other server's folder save it in database and then delete the file from the original server's folder that it has picked up from.And this should be done on regular bases say after every 2 days. I...
  4. N

    Using "Between" in .Tables(0).DefaultView.RowFilter

    I have filled dataset and i have date column in it i want to filter data between the dates specified.I tried using "between" but had problem.can any 1 suggest some thing different
  5. N

    need to create a model window.open

    i am opening the pop up on button click i should not access any of my control on parent form until my pop up is close. ie i need functionality like model dialog in web application
  6. N

    Problem while Deployment from 2003 to 2000 server

    Cannot execute a program. The command being executed was "c:\winnt\microsoft.net\fram Hi I have developed my application on Windows 2003 Server with .Net Framework 1.1 but now i want to deploy the same on Windows 2000 server i have also updated by .Net Framwork of Win 2000 Server to 1.1 but...
  7. N

    .Net Techical Papers

    Can any 1 tell me the link where i can find .Net technical papers that will be usefull for me in interviews. The Papers like the MNC take in first round of interview .
  8. N

    Application Pooling Setting

    I am working on Windows 2003 Server and have IIS 6.0 where I can set application pooling for my application(s) . In case if I have set up teh Maximum Number Of Worker Threads property of Performance tab to 20 or 30 and my apllication is accessed by the same number of users or more then how can I...
  9. N

    Passing Multiple Parameter to Crystal Report

    hi all Really hard . I have written a selection formula that select the value like this crReportdocument = New crMISGateInAPM() strSelFormula = "{Command.GAPGatePassDate} >= datetime(" & _ FromDate & ") And {Command.GAPGatePassDate} <= datetime(" & _ ToDate & ") And {Command.CMOLinerCode}...
  10. N

    How to Displaying Menus in the User Control

    How to attach and include the Javascript of Menu in the User Control.. I have a User Control that just a table <table> <tr> <td> i want to place my menu java script here ... </td> </tr> </table> This is my javascript for Menu <script type="text/javascript"> if(ns4)_d.write("<scr"+"ipt...
  11. N

    basics of session in .net

    Hi All Can any 1 tells me the basics of session like type of sessions? Some links for session information ? ..
  12. N

    Passing the parameters to the crystal Report containing Stored Proc.

    Hi I have Crystel Report that has Stored procedure i have passed parameters to the Report thr' code behind like If ImpCHA <> "" Then prmDiscrete = New ParameterDiscreteValue() prmValues = New ParameterValues() prmDiscrete.Value = ImpCHA prmValues.Add(prmDiscrete)...
  13. N

    How to Insert Queries with different filters in Crystal Report

    I want to generate a report which fetches data from just one table but i have four selection mode for that which can be used in multiple ways so for doing so the minimum set of QuERy with Four Different Where clauses are required and i want to insert the same in one crystal report how to do that...
  14. N

    some Que?? need Perfect ans..Plz. migration problem

    My Question : Let’s say I have an existing application written using Visual Studio (VBInterDevand this application utilizes Windows COM+ transaction services. How would I approach migrating this application to .NET?
  15. N

    ' First Chance Exception' occered in my code

    I have encountered with the Exception that i cant be resolved by me can anybody help me??? when i compile and execute my code and start working with them i get and exception like ' First Chance Exception' need to resolve it
  16. N

    Some Qus. wants perfect answers

    Explain the differences between Server-side and Client-side code? What type of code (server or client) is found in a Code-Behind class? What does the "EnableViewState" property do? Why would I want it on or off? What is the difference between Server.Transfer and Response.Redirect? Why would I...
  17. N

    Menu stops working help me soooo...n

    Hi I have cool menu on my side by menu stops functioning . I am generating the .csv file when the dialog for Open or save pops up from the response.addheader() and i click on save button then my menu shows error and stops functioning. if i click on the open on the dialog box the menu is not...
  18. N

    SQL getting MAX Number from many inner joins plz help

    hi i want to get the max number from the group of tables which is in the inner join sending u query i have written i want to get the max sequence number SELECT distinct CONVERT(VARCHAR(15),GAP.GAPGatePassDate,101) as [Date],CONVERT(VARCHAR(15), GAP.GAPGatePassDate,108) as...
  19. N

    DataGridTextBox

    Want to add controls to grid on run time . How do i do that i cannt access the DataGridTextBox.TextBox.Controls.Add(a) property. Here is the code that i have written sqlConn.Open() Dim sc As New SqlCommand() sc.Connection = sqlConn sc.CommandType = CommandType.Text sc.CommandText =...
Back
Top