User Profile

Collapse

Profile Sidebar

Collapse
Rohit111111
Rohit111111
Last Activity: Feb 20 '08, 06:47 AM
Joined: Mar 10 '07
Location: India
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Rohit111111
    started a topic Regional Settings in IIS
    in .NET

    Regional Settings in IIS

    Hello All
    I have created a web service in asp.net 2.0 and i have to show the Current date time on the form. I have chnage the regional settings for date and time in control panel it works fine but when i deploy my application to the iis server it willl not show the date and time in the formate that i have set in regional setting
    Can anyone tell me the Cause and solution for this.
    See more | Go to post

  • Rohit111111
    started a topic Validate User input data in web service
    in .NET

    Validate User input data in web service

    Hello all
    i have created a web service which consist a web method say Add(int a, int b)
    it takes two parameter a and b both are of type integer, now i have to validate the both parameter. I am using directly interface of the web service meanse i am running .asmx page now it shows 1 method Add on clicking Add link it will ask for two parameter a and b now of i enter string in that parameter instead of integer it throws an exception page....
    See more | Go to post

  • Hi Thanks for the reply
    With FileSystemObjec t i can able to delete the local system file, but my requirement is to delete a file which is placed on deffrent system but in the same network....
    See more | Go to post

    Leave a comment:


  • Hi
    Thanks For the reply
    Yes you are right i want to delete a remotly store file using ASP VBScript.
    I have no idea about vbscript first time i am working on it so if you send some sample code about Server.CreateOb ject("WScript.S hell") then it will more helpfull for me
    Thanks...
    See more | Go to post

    Leave a comment:


  • Rohit111111
    started a topic How to Delete Remote File USing VBScript

    How to Delete Remote File USing VBScript

    Hello All,
    I new to ASP and i am using VBScript, I want to delete a file which is located on the remote machine hbow can i delete that file.plz help its urgent
    See more | Go to post

  • Performance issue due to Background Image of Form

    I have my base form which has background image , tool bar etc,All other
    forms inherit it. The background image size is162kb and it is in PNG
    format.All the other forms also has many images since we have unique look and
    feel. The issue I am facing is performance .
    Application works fast when I don't have background image on my base form (
    in turn we don't have any background image for any of the form), But when...
    See more | Go to post

  • How To increase Start up time of Window application

    Hello All,
    I am working on asp.net 1.1 windows application.I have a form which consist
    one textbox,one panel this panel consist near about 70-75 labels,i have set background image of the form,background image of panel and also background image of textbox.The problem is that when this form load it will take too much time to load the all the controls of form.I have already done Double Buffering to solve this problem but still that flickring...
    See more | Go to post

  • Rohit111111
    started a topic How to Make A child Form Transparent
    in .NET

    How to Make A child Form Transparent

    Hello All.
    I have a Child form in a parent form,now when i am showing a child form ,i want to set the backcolor of the child form as Transparent but there is no property like this,is there any other way to achieve this.
    See more | Go to post

  • I have already turning on the double-buffering as well as ,i have done manual double buffering in my code after that i got the flickering effect on my form when it loads......
    See more | Go to post

    Leave a comment:


  • Actually when my form is loaded it flickering,and i want flickring free painting of controls on the form...i think now u may be getting what is my problem...
    See more | Go to post

    Leave a comment:


  • I have near about 70-75 controls on my page and all controls are necessary...can i use threading concept in this case if yes then how can i do this by threading...


    Thanks for your reply...
    See more | Go to post

    Leave a comment:


  • ===========
    I have add controls in InitializeCompo nent() which is call from constructor.So when the forms load..construct or is called and all the controls are created and added to form,but when the form is rendered,all controls are loaded one by one due to which performance of application is slow ,plz suggest me some idea to achive it...
    See more | Go to post

    Leave a comment:


  • Rohit111111
    started a topic Loading control of a form before Form_load event
    in .NET

    Loading control of a form before Form_load event

    Hi,
    I am working on asp.net 2.0 windows application.I have a form which consist near about 80 diffrent controls and i am creating all this control at the runtime .When this form loads then all controls are loading one by one,but i want to load all that control before form get display..how can i do this.means I have to load these controls before Form load,

    Thanks
    Rohit vyas
    See more | Go to post

  • Rohit111111
    started a topic current line number from the stack
    in .NET

    current line number from the stack

    Hi,

    I'm trying to get the current Line Number from the Stack with
    stackFrame.GetF ileLineNumber, how ever the method return 0.

    What's my error?

    Thanks in advance for any advice
    See more | Go to post

  • Rohit111111
    replied to Deleting a Row from a DataTable
    in .NET
    Than why you have reply me for a .net related question..if really dont like .net.
    and how u become admin of this site..u still not sove my prblem...if you really dont want to solve queries than what ru doing here....
    See more | Go to post

    Leave a comment:


  • Rohit111111
    replied to Deleting a Row from a DataTable
    in .NET
    please you show me where and how can i use .toarray() ....
    See more | Go to post

    Leave a comment:


  • Rohit111111
    replied to Deleting a Row from a DataTable
    in .NET
    Here is the code that i am using.dt1 is my original datatable.I want tpo delete all rows of data table dt1 where column name PN value is "MAYANk"

    string key;
    DataRow []rws;

    foreach (DataRow dr1 in dt1.Rows)
    {

    if (dr1["PN"].ToString() == "Mayank")
    {


    rws = dt1.Select("PN...
    See more | Go to post

    Leave a comment:


  • Rohit111111
    replied to Deleting a Row from a DataTable
    in .NET
    i have used this logic but I am getting error like
    Collection was modified; enumeration operation might not execute....
    See more | Go to post

    Leave a comment:


  • Rohit111111
    replied to Deleting a Row from a DataTable
    in .NET
    Thanks for reply
    Can you show me the code,how can i do it......
    See more | Go to post

    Leave a comment:


  • Rohit111111
    started a topic Deleting a Row from a DataTable
    in .NET

    Deleting a Row from a DataTable

    Hello all,
    I have a dataTable say dt1,now i want delete a row from this datatable,i have used dr.delete() and dt.AcceptChange s() methode to do the same but i got error .
    I got this error:=
    Collection was modified; enumeration operation might not execute.

    Can you people tell me the solution of this.


    Thanks
    Rohit Vyas
    See more | Go to post
No activity results to display
Show More
Working...