User Profile

Collapse

Profile Sidebar

Collapse
phpfreak2007
phpfreak2007
Last Activity: Dec 17 '08, 04:45 AM
Joined: Sep 21 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • I want to build iPhone application On Windows OS and dont want to use MAC OS.
    Is it possible to build in .net 2008 with MVC or I need to use mono??
    I don't know how to use mono and mobile application development in .net.
    See more | Go to post

    Leave a comment:


  • What tools do i need to develop iphone applications?

    Hello,

    I am new to mobile application. I want to make simple application for iPhone. I don't know how to build iphone application.
    Is MAC OS compulsary to build application.
    I want to know tools required for .net 2008 and Java to develop application for iPhone.

    If anyone have idea about this then please reply.

    Thanks in advance.
    See more | Go to post

  • phpfreak2007
    started a topic problem is displaying form incentreparent
    in .NET

    problem is displaying form incentreparent

    Hi all..

    I am displaying a form from thread. I set its startposition property to centreparent but its displayed on topleft corner.. I am displaying form using...

    error_msg.ShowD ialog();
    //where error_msg is object of form

    Please help me to solve this problem..
    See more | Go to post

  • hi alag20

    Thanks for reply.. I tried your way also.. but now problem is its showing new form but not animation I am sending you code..please let me know If I am doing any mistake..

    Code:
    // initialization
    
      flag=true;
      Thread thrd = new Thread(new ThreadStart(animation));
      thrd.Start();
      //coding for download 
      flag=false;
    
    //animation method
    public void
    ...
    See more | Go to post

    Leave a comment:


  • phpfreak2007
    started a topic problem in showing progress while downloading
    in .NET

    problem in showing progress while downloading

    Hi all

    I tried to display an gif image while my file is downloading from server..But as downloading started, animation in gif is stopped...I tried to use thread also but then too its not working..

    Please help me to solve this.
    See more | Go to post

  • phpfreak2007
    started a topic Problem in taking screenshot of webpages
    in .NET

    Problem in taking screenshot of webpages

    Hello,

    I want screenshot of website by passing url. I used the DrawtoBitmap method of webbrowser but it is not working properly. It gives empty images. I want screenshot of websites which i passed in loop.

    Code:
     arrayList arrURL; 
    bool flagSC = true;
     
    for(int i=0l i< url.length;i++)
    {
    if (flagSC == true)
    {
    webbrowser1.navigate(arrURL[i].ToString());
     
    while (webBrowser1.ReadyState
    ...
    See more | Go to post
    Last edited by DrBunchman; Jun 5 '08, 10:24 AM. Reason: Added code tags - Please use the # button

  • phpfreak2007
    started a topic problem in writing rtf text in wordpad
    in .NET

    problem in writing rtf text in wordpad

    hello everyone..

    In my c# project I want to paste rtf text to wordpad from clipboard.I am using streamwriter for that.

    I have three richtextbox.Fro m that I am able to paste only one rtf text to wordpad....

    here is my code please help me...

    Code:
    StreamWriter sw = new StreamWriter("wpreview.wri");
    
                        for (int i = 0; i < count; i++)
    ...
    See more | Go to post

  • phpfreak2007
    started a topic image from clipboard to wordpad
    in .NET

    image from clipboard to wordpad

    Hello everyone..

    I am doing c# project in which i want to paste image in wordpad from clipboard..Anyo ne have idea how to do it...??

    Please help me..

    Thanks in advance..
    See more | Go to post

  • how to put confirmation message before installation

    hi everyone..

    I want my c# software to run when pc start for that i made registry entry..

    But if I want to provide feature that when user install software we can ask that he/she want this feature to start program with pc ? if yes then in setup make registry entry else not...I am using Inno Setup to make set up..

    How can i do this..?
    See more | Go to post

  • phpfreak2007
    started a topic Exception from HRESULT
    in .NET

    Exception from HRESULT

    Hello everyone,


    In my application I automate word with c# project.So open it from my project,paste text in it then delete text from it to use same document instead of creating new document everytime....

    It works fine while i use it first time but after deleting when i tried to use it second time its giving me exception

    "An outgoing call cannot be made since the application is dispatching...
    See more | Go to post

  • phpfreak2007
    replied to get text from clipboard as html formate
    in .NET
    Code:
    IDataObject idata = Clipboard.GetDataObject();
    
    
    if (Clipboard.GetDataObject().GetDataPresent(DataFormats.Html))
    {
           rtextbox.Text = rtextbox.Text + (string)idata.GetData(DataFormats.Html);
    }
    else if (Clipboard.GetDataObject().GetDataPresent(DataFormats.Text))
    {
           rtextbox.Text = rtextbox.Text + Clipboard.GetText();
    }
    thanks...
    See more | Go to post

    Leave a comment:


  • phpfreak2007
    started a topic get text from clipboard as html formate
    in .NET

    get text from clipboard as html formate

    Hi everyone...

    I want to copy text from clipboard and paste into my project.I am able to do it but problem is Its not in same formate..That means I want bold letter as bold and with same font .....means If I copy it from website then its html formate remain same...
    See more | Go to post

  • phpfreak2007
    started a topic richtextbox data type is image or text
    in .NET

    richtextbox data type is image or text

    hi

    I want to get content of rich textbox.How I come to know that richtextbox contains image or text..??
    See more | Go to post

  • phpfreak2007
    replied to image from clilpboard
    in .NET
    no its not because if i paste image on word then it is.

    Also if i press ctrl+c then only it is return false else if i right click and give copy then its working fine...
    See more | Go to post

    Leave a comment:


  • phpfreak2007
    started a topic image from clilpboard
    in .NET

    image from clilpboard

    hi everyone

    I want to diplay image from clipboard to my project.If i copy image from website then it copied in cliplboard first.but in my code

    if (Clipboard.Cont ainsImage()) returns false.

    Then where image stores...? how can i get image from clipboard and paste it in my project when i copy it from website..

    thanks
    See more | Go to post

  • phpfreak2007
    started a topic how to access mdb file in resource
    in .NET

    how to access mdb file in resource

    Hi
    I had one .mdb file and I want to put it in resource.resx foler.I want to know how to retrive data from it.

    I know how to deal with text file but for mdb file if we use oledb connection string then how to give datasource path..?
    See more | Go to post

  • phpfreak2007
    replied to hide local database
    in .NET
    hi...
    I am able to get text file from resource folder...
    Can anyone give me solution for hide database..??how can i give it with application such way that user cannot see...
    See more | Go to post

    Leave a comment:


  • phpfreak2007
    replied to hide local database
    in .NET
    and suppose i have text file and i put it in resource(.resx) folder how can we access it..
    See more | Go to post

    Leave a comment:


  • phpfreak2007
    started a topic hide local database
    in .NET

    hide local database

    Hi..

    I want to make one software in which database that is stored on the users PC that would be accessed without any sort of connection to a server. Means we provide database with exe file..Then which database is better and is there any other option for this???

    And suppose i want to hide that database from user then how can i do it..??

    And if i take database as xml file in resource then how to...
    See more | Go to post

  • How to get the collection of MenuItem and Subitem

    Hello all,
    I want to get the collection of all the menu item.. including the mainMenuItem and the DropDownItem in single collection is there any proprty of menu which gives all the item in single collection???
    See more | Go to post
No activity results to display
Show More
Working...