Search:

Type: Posts; User: purusingh1

Page 1 of 6 1 2 3 4

Search: Search took 0.06 seconds.

  1. Replies
    0
    Views
    691

    java Spring question

    hi there

    I am trying to learn java spring. Do I need to learn java struct before starting spring.
    Thank You
  2. Thread: xml api

    by purusingh1
    Replies
    1
    Views
    763

    xml api

    where do I get api for working with xml?
  3. Replies
    5
    Views
    645

    Re: parameter type in method

    Ok Thanks A lot,
    I got it now
  4. Replies
    5
    Views
    645

    Re: parameter type in method

    Look at the following codes. I am not mentioning ref kew word but it is working just like Byref .
    Is it true that in,out, and ref are used only for value type?

    using System;
    using...
  5. Replies
    5
    Views
    645

    parameter type in method

    There are three forms that we may pass parameter into methods

    in,ref and out.

    in : value can be transfered to method but cannot transfer outside
    ref : value can be transfered to method and...
  6. Regular expression validation is not working in client

    I have used



    <asp:RegularExpressionValidator ID="RegularExpressionValidator1" runat="server" ControlToValidate="txtLastName"

    ErrorMessage="RegularExpressionValidator"...
  7. Re: I don't know how to call it but I think emit

    Thanks, You are absolutely right.
    I have tried the following small program and it is working fine

    using System;
    using System.Collections.Generic;
    using System.Text;

    namespace emit
    {
  8. Re: [RESOLVED] [3.0/LINQ] How to make a list of points?

    I think you have to use

    private List<Point> MotionFlags = new List<Point>();
  9. I don't know how to call it but I think emit

    Suppose I have

    Class A and
    Class B

    Now there are events in each class

    When A has changes it value it should fire an event which change the value of B.
    Similarly when B has changes the...
  10. Replies
    1
    Views
    760

    Form inheritance

    Suppose, I have a Form "Form1" and a button "btn1" on it in an application

    on click event of btn1 I Wrote

    MessageBox.Show(self.Name);



    Now I inherite "Form2" from "Form1".
  11. Replies
    1
    Views
    885

    Using windows host script in c#

    How do I use windows host script in C#?
  12. error while deploying clr from visualstudio2005

    clr error while deploing from studio

    --------------------------------------------------------------------------------

    When I deploye by myself clr into database compiling command prompt and...
  13. Replies
    0
    Views
    402

    clr error while deploing from studio

    When I deploye by myself clr into database compiling command prompt and adding assembly and creating stored procedute for it, it works fine .
    But when I do it form visual studio2005 it deploys fine...
  14. Replies
    3
    Views
    621

    submit button

    i have a imagebutton "b"
    I want to fire the click event of submit button from client script.
    how can I do it?
  15. Replies
    7
    Views
    39,409

    Re: Forms Authentication Example

    I have found something strange.

    the program works fine if I use ip address insted of dnsname
    but if I use dnsname like http://isu_nnn/webapp1
    it displays fine but while pressing the login...
  16. Replies
    7
    Views
    39,409

    Re: Forms Authentication Example

    I am sorry I found it.
    the redirect is not in login form.

    but the same thing is not working in c# project
  17. Replies
    7
    Views
    39,409

    Re: Forms Authentication Example

    Thanks for all but I don't understand from where did you call
    users.aspx?
  18. Replies
    1
    Views
    549

    after updating datagrid

    I would like to know datagrid after updating the record on it we use



    sqlDataAdapter1.Fill(dataSet11);
    DataGrid1.DataBind();


    What will it do?
  19. Replies
    1
    Views
    512

    new tamplete button and eventhandler

    I have added a tampletcolumn and changee the item to linkbutton and now I I assigned commandname to MyCommand

    Now how do I add the event to the Link button?
  20. Replies
    14
    Views
    1,865

    Re: call a javascript function from asp .net

    Thank you very much and it is working fine but I got a problem if I have edit button as well and if I press edit button the delete button is still active and then if I press delete button it doesn't...
  21. Replies
    14
    Views
    1,865

    Re: call a javascript function from asp .net

    thank you very much for the answer but it would be great if you provide a functional example.
  22. Replies
    14
    Views
    1,865

    Re: call a javascript function from asp .net

    I have a link button in datagrid and it calls command

    DataGrid1_UpdateCommand(.......)

    where should I put the following code?

    cmdDeleteUser.Attributes.Add("onclick", "return...
  23. Replies
    2
    Views
    567

    dml logs in Access

    How to record all transaction in msaccess?
  24. Replies
    0
    Views
    394

    delphi,ado and batchupdate

    using vb,ado and batchupdate
    I can access
    deletedrecord.originalvalue
    but
    When I do same thing in delphi,ado and batchupdate
    I can't access the
    deletedrecord.oldvalue

    but I can access...
  25. Replies
    0
    Views
    1,160

    Delphi and Ado

    in vb I can see the pending deleted values using

    filter =adpendingrecord
    if status=deleted then
    rs.fields.originalvalue

    but if I do the same thing in Delphi it gives error like
    either eof...
  26. batch update and accessing deleted record

    it is possible to access deleted records using
    rs.Filter = adFilterPendingRecords

    but how can it be done in child recordset ( if I use msshape )
  27. Thread: batchupdate

    by purusingh1
    Replies
    5
    Views
    663

    Re: batchupdate

    how to see the pending records of child recordset?
    if we put filter it will break master detail relationship.
  28. Thread: batchupdate

    by purusingh1
    Replies
    5
    Views
    663

    Re: batchupdate

    Thank it is already better
    But is there any other way to access the deleted records without putting filter.

    I hope there should be cause they should be stored in cache.
  29. Thread: batchupdate

    by purusingh1
    Replies
    5
    Views
    663

    Re: batchupdate

    Thanks a lot I will check it.
  30. Thread: batchupdate

    by purusingh1
    Replies
    5
    Views
    663

    batchupdate

    if the recordset is in batchupdate mode then
    we can retrive all the records that were deleted doing doing cancelbatch

    How can we see(access) those records that were deleted
    but were not...
  31. Re: masterdetail dataentry form with transaction

    I just need to save either all or nothing from from dataentry form.

    I want to make a master detail form
    While adding records
    I just don't want to save until I filled all the detail records...
  32. Re: masterdetail dataentry form with transaction

    yes that works fine but I need the recordset too display in my form.
    If you have ever seen oracle forms.
    You just retrive data into recordset and change the date inot recordset while commiting it...
  33. masterdetail dataentry form with transaction

    What is the best way to make a masterdetail form in vb using ado, so that one can edit delit and add the datat into form. And all the data should be saved in transaction.
    i.e. if all the record on...
  34. windows host script

    using WHS(windows host script)
    we can do like follows


    SET WMI = GetObject("winmgmts:")

    set objs =WMI.Instancesof('Win32_DiskDrive')

    FOR EACH obj IN objs
    ..........
  35. Replies
    4
    Views
    2,775

    Re: does it depend upon different os or cpu

    if so I found this block of codes in the tutorial of
    http://www.xs4all.nl/~smit/asm01001.htm
    but is does work properly
    Why?
    ...
  36. Replies
    4
    Views
    2,775

    does it depend upon different os or cpu

    I am very new to Assembly

    I have gone through several tutorials and in none of them I found the definite explanation.
    I mean some of the programs given in each tutorials works and some are not.
    ...
  37. Replies
    4
    Views
    662

    Re: Ado connection problem

    Thanks for answer.
    I would like to know how long it holds the connection.

    I am getting the problem in case if max user=20
    and all connections are used and one of them have done
    cnn.close.
    it...
  38. Replies
    4
    Views
    662

    Ado connection problem

    I thought that

    "ado.open ..." creates connection and
    "ado.close" release the connection

    but when I look at the sqlserver session I found that even if I close the connection the connection...
  39. Thread: sendApr

    by purusingh1
    Replies
    0
    Views
    716

    sendApr

    Knowing mac using sendAPR() I can get the Ipaddress of the specific Nic in the same subnet. How can I get the ip in different subnet if I know the mac?
  40. Thread: sendApr

    by purusingh1
    Replies
    0
    Views
    494

    sendApr

    using SendApr() I can get the ipaddress of the computer within the same subnet , mac address of which are known.

    How can I get the ipaddresses of the computers which are in anothere subnet by...
Results 1 to 40 of 225
Page 1 of 6 1 2 3 4



Click Here to Expand Forum to Full Width