User Profile

Collapse

Profile Sidebar

Collapse
asmapanjabi
asmapanjabi
Last Activity: Sep 3 '08, 05:56 AM
Joined: Jan 30 '08
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • asmapanjabi
    started a topic 403 Forbidden error
    in .NET

    403 Forbidden error

    Hello,
    I am working on win forms C#.net and i use AppUpdater to update my version. i Use ServerManifest check option for updating. i have a xml file on server to indicate version and folder to download. i have given all permission from IIS to my folder still i get error as

    Code:
    Auto update Failed: with network error the remote server returned an error :(403)Forbidden. 
    TO correct try rebooting or relaunching application.
    ...
    See more | Go to post

  • asmapanjabi
    started a topic AppUpdater Problem
    in .NET

    AppUpdater Problem

    Hello,
    m working on C#.net windows application. for version updation i use appupdater dll where in i use virtual directory to update.
    When i call

    Code:
    appupdater.CheckForUpdates()
    i get an exception

    System.Net.WebE xception: The remote server returned an error(404) file not found



    Can you give me some suggestions over it.
    See more | Go to post

  • asmapanjabi
    started a topic Copying file error.
    in .NET

    Copying file error.

    Hi m trying to copy image file from one location to other as below in openDialog box C#.net
    Code:
    if (openFileDialog1.ShowDialog() == DialogResult.OK)
    {
                string filename = System.IO.Path.GetFileName(openFileDialog1.FileName);
    
              string fname = Application.StartupPath + "\\Temp\\" + filename;
                    File.Copy(openFileDialog1.FileName, fname, true);
    }
    ...
    See more | Go to post

  • asmapanjabi
    replied to Display image on Bitmap
    in .NET
    My image size doesnt matter it doesnt work for 1kb or for more than that....
    See more | Go to post

    Leave a comment:


  • asmapanjabi
    started a topic Display image on Bitmap
    in .NET

    Display image on Bitmap

    i am trying to pick a image file from open dialog box and send to other user in C#.net

    Code:
    private System.Windows.Forms.OpenFileDialog openFileDialog1 = new OpenFileDialog();
    openFileDialog1.RestoreDirectory = true;
    openFileDialog1.FileName = "";
    openFileDialog1.Filter = "Graphic Interchange Format (*.gif)|*.gif|" +
    "JPEG File Interchange Format (*.jpg;*.jpeg)|*.jpg;*.jpeg";
    ...
    See more | Go to post

  • asmapanjabi
    replied to Clipboard.GetDataObject()
    in .NET
    i have made an entry for Main as
    [STAThread]
    public static void Main()
    still m getting the exception...
    See more | Go to post

    Leave a comment:


  • asmapanjabi
    started a topic Clipboard.GetDataObject()
    in .NET

    Clipboard.GetDataObject()

    am using C#.net 1.1 while using clipboard m geeting this exception
    System.Threadin g.ThreadStateEx ception: Current thread must be set to single thread apartment (STA) mode before OLE calls can be made. Ensure that your Main function has STAThreadAttrib ute marked on it.
    at System.Windows. Forms.Clipboard .GetDataObject( )
    See more | Go to post

  • asmapanjabi
    replied to load gif file
    in .NET
    im am working with C#.net 1.1 desktop application.
    The size of image is 4kb and ram size is 256mb
    As soon as Image img1 = Image.FromFile( iSelected); executes it throws an memoryexception
    See more | Go to post

    Leave a comment:


  • asmapanjabi
    started a topic load gif file
    in .NET

    load gif file

    hi
    im trying to load gif file
    Image img1 = Image.FromFile( iSelected);
    it is throwing Outofmemory Exeption
    Can ne 1 help me for this?
    See more | Go to post

  • asmapanjabi
    started a topic C#.net 1.1 usercontrol Scrolling
    in .NET

    C#.net 1.1 usercontrol Scrolling

    i have made a usercontrol to draw images like lines,rectangle s,images .I can draw on it but i cant scroll if image is large. The usercontrol is placed on panel. Can anyone suggest me how to proceed with this problem. Thanks.
    See more | Go to post
No activity results to display
Show More
Working...