Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
N

nomi

@nomi
About
Posts
13
Topics
5
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • unhandeled exception occure when form is open , running from exe in c#.
    N nomi

    yes offcourse bcz its running fine on my system , error occure in other computer when i running the exe of the project , error just occure in particular form others are working fine may dll not getting its path , i dont understand how can i know what is the source of error

    Love is Life & Life is Love!

    C# help csharp sysadmin data-structures workspace

  • unhandeled exception occure when form is open , running from exe in c#.
    N nomi

    dani thanks to reply , yar i wanna know that y its running fine in my system and when i deploy on other system then this form is generate a error , path is not missing unhadeled exception etc in this form i just use two dll that i define earlier so what should i do , should i register the dll or what can i do , and how to know where is the error , means main cause of the error ......

    Love is Life & Life is Love!

    C# help csharp sysadmin data-structures workspace

  • unhandeled exception occure when form is open , running from exe in c#.
    N nomi

    hi! i m using c# , i used EXpTreeLib.dll , tree view and one more dll Emmaculate.dll , thumbnelview , the probelm is that when i making a setup using Setup&deployment wizard i added both dll , project is working fine but when i open this form then the unhandeled exception occured Error path not found etc in other system not mine , in my pc when i running the project is working fine , may its not getting control path what should i do .................plz help me i think i should register the dll in other system on which i m running the exe but , when i register the both dll , ExpTreeLib.dll , emmaculate.dll in other system in which i m running exe after making setup error occure dll not register entry point not found. in my pc project running fine , setup complete fine and also exe running fine but when i deploy in other system then its making a problem in that form that is using both dll. Entry point not found .............. on run : regsvr32 c:\ExpTreeLib.dll error occure entry point not found may i registed that dll so its resolve the above problems.

    Love is Life & Life is Love!

    C# help csharp sysadmin data-structures workspace

  • Which Event is Fire !
    N nomi

    meri jan ma bhi yeh hi keh rha hon there is no any more instance Except of this yaaaar y u r not getting my point i only make object or instance one time and its that i send u

    C# question announcement

  • why image is not update in other form , on 2nd form closed event ?
    N nomi

    Here is the code what is the probelm any one can help me plzzzzz protected override void OnClosed(EventArgs e) { if (this.appWorkspace.ActiveDocumentWorkspace != null) { appWorkspace.ActiveDocumentWorkspace.SetTool(null); } base.OnClosed(e); //n send image to frmedit in cc13 CCI3.Forms.frmEdit s = new CCI3.Forms.frmEdit(); // s.mSetPicture(PictureBox, "true"); //s.VarEditImg //s.VarEditSig s.PicImage.Image = null; s.PicImage.Image = Image.FromFile(@"C:\Temp\Temp1.jpg"); s.PicImage.Refresh(); s.picSig.Image = null; s.picSig.Image = Image.FromFile(@"C:\Temp\Temp2.jpg"); s.picSig.Refresh(); //s.Con s.Showimg(); CCI3.Myimg g = new CCI3.Myimg(); g.Showimg2(); //CCI3.Forms.frmEdit ss = new CCI3.Forms.frmEdit(); //ss.setEditPictures(@"C:\Temp\Temp1.jpg", @"C:\Temp\Temp2.jpg"); }

    C# question help announcement

  • Which Event is Fire !
    N nomi

    here is the code on project 2 form2 closed event : CC13 is my frist project and i want to send image or update image in frmedit now tell me plz whats the problem image still not update: protected override void OnClosed(EventArgs e) { if (this.appWorkspace.ActiveDocumentWorkspace != null) { appWorkspace.ActiveDocumentWorkspace.SetTool(null); } base.OnClosed(e); //n send image to frmedit in cc13 CCI3.Forms.frmEdit s = new CCI3.Forms.frmEdit(); // s.mSetPicture(PictureBox, "true"); //s.VarEditImg //s.VarEditSig s.PicImage.Image = null; s.PicImage.Image = Image.FromFile(@"C:\Temp\Temp1.jpg"); s.PicImage.Refresh(); s.picSig.Image = null; s.picSig.Image = Image.FromFile(@"C:\Temp\Temp2.jpg"); s.picSig.Refresh(); //s.Con s.Showimg(); CCI3.Myimg g = new CCI3.Myimg(); g.Showimg2(); //CCI3.Forms.frmEdit ss = new CCI3.Forms.frmEdit(); //ss.setEditPictures(@"C:\Temp\Temp1.jpg", @"C:\Temp\Temp2.jpg"); }

    C# question announcement

  • Which Event is Fire !
    N nomi

    mery dost i didnt i just make the object of the from and just giving the path again of the image when form2 is closed then form1 is already opened i dont do anything from form2 like this , form1.show() etc

    C# question announcement

  • Which Event is Fire !
    N nomi

    please tell me the code becouse i m new in c#

    C# question announcement

  • Which Event is Fire !
    N nomi

    yah i coded to on form closing event or form2 but still when i come to form1 then there is no difference in form1 picturebox control i coded like this on form2 closed event project1.form1 g = new project1.form1(); g.picturebox.Image = null; g.picturebox.Image = Image.FromFile(@"C:\Temp\Temp2.jpg"); g.picturebox.Refresh(); but after this coded still no differnce in form1 picture box , but when i came to form1 then i made here update button when i pressed it then its update on update button i coded g.picturebox.Image = Image.FromFile(@"C:\Temp\Temp2.jpg"); g.picturebox.Refresh(); but i want its directly update and refresh image when i closed form2 and come to form1 .

    C# question announcement

  • Which Event is Fire !
    N nomi

    hi ! i have two project in one solution , form1 from project 1 is running and i m calling from this to prject2 form 2 like that project2.form2 f = new project2.form2(); f.show(); on the buton of form1 call this and form is opening succesfully but when i closed the form2 then its back to form 1 , becouse form 1 is already opend then my question is that which event is fire when i got back to form1 , i checked Activated event is not working may b cumming from other project , may what is differnce b/w show and showdailogue() , when i call like f.showdailogue() ; then its just open and closed automatically . Further Detail : i have a image on form1 i move this image to form2 and edit that image and then save and when i return back to form1 then its should automatically update but its not updated , when i found the event then on that event in form1 i just reload the image to given path .

    C# question announcement

  • Sending image from one project to another ?
    N nomi

    i tried but i m still unable to do this can u give me the code becouse i m not running the exe from my project i m running the applicaton calling one project to another i m confused , can u give me ur email address i ll send u the hole project in rar format can u do this and send me back plzzzzz my id is nomanforu@gmail.com please help me i m facing this problem since 3 days becouse i m new in c# and i have no support from any where plzzzzzzzzzzzzz

    C# help csharp tutorial question workspace

  • Sending image from one project to another ?
    N nomi

    :( Hi ! i have two project in one solution i want to send image from one project to another , i attached my project in rar format please download it and run with the src folder . Detail: one project is mine its simple one only have one form withing it only one picturebox and one button , other peject is paint.net , free product of image editing ,now i want to send my image to paint.net editor its using workspace class etc, i m stuck how to send image in it for editing and then again send back to my project : //its a button that is place in form1 its in myproject , and i m calling paint.net in mysoftware thorugh this code i get success but wanna send image that is in picturebox to paint.net but not getting any thing plz help me . private void button2_Click(object sender, EventArgs e) { PaintDotNet.MainForm mF; mF = new PaintDotNet.MainForm(); //PaintDotNet.PdnResources.GetImageResource(@"C:\Sunset.jpg"); //PaintDotNet.PdnResources.LoadImage(@"C:\Sunset.jpg"); // string[] fileNames ; ////string startingDir = Path.GetDirectoryName(documentWorkspace.FilePath); // string startingDir = @"C:\Temp"; //public documentWorkspace; //DialogResult result =PaintDotNet.DocumentWorkspace.ChooseFiles( PaintDotNet.DocumentWorkspace. , out fileNames, true, startingDir); //PaintDotNet.DocumentWorkspace.ChooseFile( //PaintDotNet.Actions.ImportFromFileAction(@"C:\Sunset.jpg"); // ImportFromFileAction(@"c:\sunset.jpg"); //PaintDotNet.Actions.OpenFileAction(pictureBox1.Image); //PaintDotNet.Actions.NewImageAction(); // mF.AppWorkspace.PerformAction(new OpenFileAction()); // PaintDotNet.AppWorkspaceAction(new Image("C:\sunset.jpg")); //PaintDotNet.AppWorkspaceAction(new OpenFileDialog()); mF.Show(); } :(

    C# help csharp tutorial question workspace

  • How to Send image in paintdotnet workspace through myproject picturebox.
    N nomi

    :(( Hi ! i m using paint.net v3.22 free software in myproject , i added it in my solution so i have two project in one solution now i want to call paintdotnet thorugh my project i got success , now i like to send image through code in paintdotnet , paintdotnet use workspace class i didnt understand yet how to send image through my project and edit them and then send back to myproject its my task i m very thankfull to you plzzz any one help me .....thanks in advance . some code are below that i tried plzzz help. //its a button that is place in form1 its in myproject , and i m calling paint.net in mysoftware thorugh this code i get success but wanna send image that is in picturebox to paint.net but not getting any thing plz help me . private void button2_Click(object sender, EventArgs e) { PaintDotNet.MainForm mF; mF = new PaintDotNet.MainForm(); //PaintDotNet.PdnResources.GetImageResource(@"C:\Sunset.jpg"); //PaintDotNet.PdnResources.LoadImage(@"C:\Sunset.jpg"); // string[] fileNames ; ////string startingDir = Path.GetDirectoryName(documentWorkspace.FilePath); // string startingDir = @"C:\Temp"; //public documentWorkspace; //DialogResult result =PaintDotNet.DocumentWorkspace.ChooseFiles( PaintDotNet.DocumentWorkspace. , out fileNames, true, startingDir); //PaintDotNet.DocumentWorkspace.ChooseFile( //PaintDotNet.Actions.ImportFromFileAction(@"C:\Sunset.jpg"); // ImportFromFileAction(@"c:\sunset.jpg"); //PaintDotNet.Actions.OpenFileAction(pictureBox1.Image); //PaintDotNet.Actions.NewImageAction(); // mF.AppWorkspace.PerformAction(new OpenFileAction()); // PaintDotNet.AppWorkspaceAction(new Image("C:\sunset.jpg")); //PaintDotNet.AppWorkspaceAction(new OpenFileDialog()); mF.Show(); }

    C# csharp help tutorial workspace
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups