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 think i have not written handler for the events so how do i write handler to the events in C#.Net plz. any one advice sssooooooooooooon....... .. .. . eg i have in vb.net Private Sub fsw_Created(ByVal sender As Object, ByVal e As System.IO.FileSystemEventArgs) Handles fsw.Created in C#...
  3. N

    Windows Service Error

    Hey thankx people i have gona FW but now stuck once again .Non of my Events -- CREATED,CHANGED etc. are fireing plz. advice My. START and STOP are working but non of other events are fireing i checked the event log but cannt find space to move.. private void fwService_Created(object sender...
  4. 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...
  5. N

    how do i start.... .

    hey Thankx man
  6. N

    how do i start.... .

    But i need to consistently keep a watch on folder and then if there is new file in that folder i have to pick it up and throw it in other file.and then delete the file from that original folder and i need to save the file in server folder which will then be saved in database and can be retrived...
  7. 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...
  8. 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
  9. N

    xml ado

    hey i dont know what are u actually trying to do but... if i have not considered you wrong then heres how i will do this Dim ds As New DataSet ds.ReadXml(Server.MapPath("test.xml")) Dim i As Int16 For i = 0 To ds.Tables(0).Rows.Count - 1 TextBox1.Text = ds.Tables(0).Rows(i).Item("URL") Next
  10. N

    Yes, No Dialog Boxes

    hey if u are developing Web application then just u have to do is write a javascript function - if(confirm("ur message")==true){do something return true;}else{do something return false;} and you are done.
  11. N

    Possible with Listbox?

    hey if can suggest u; can u use datagrid instead of listbox. This will help u in adding , editing and deleting the records and it is easy to use. In one of my application i to had the same case i used datagrid for adding and viewing the details for the same data.
  12. 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
  13. N

    Error with Array

    hey u have not mentioned the size of the split according to me the split u have written has some ting missing probably it should be dim ar as string() ar = STR.Split(vbTab,3) instead ar = STR.Split(vbTab) ok. Then ; why r u using Safe(x).Website = ar(0) what is Safe(x) -- u can do is say dim...
  14. 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...
  15. 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 .
  16. N

    Trying to fire a jscript function when clicking on Checkbox

    hey , U just have to capture the checkbox in the ItemDataBound of the Grid and then by using that checkcheck.attribute.add("onClick","return getConfirm()") it will fire an java script for u..
  17. N

    Application Pooling Setting

    How much users can work on single working thread
  18. 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...
  19. 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}...
Back
Top