Incompatible "ImagList" object with blackmagic!? menu

User Tag List

Results 1 to 2 of 2
  1. #1
    sefi89's Avatar Corporal
    Reputation
    9
    Join Date
    Apr 2012
    Posts
    16
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Incompatible "ImagList" object with blackmagic!?

    I'm making a treeview for a profile finder, and i include a Imaglist object, when i'm including a new image i have an error when i compile:


    Error 1 Could not load file or assembly 'file :/ / / C :/ BlackMagic / fasmdll_managed.dll' or one of its dependencies. You attempted to load a program with an incorrect format. Line 163, position 5. C: \ Users \ Sefi \ Desktop \ Synthesis \ Synthesis \ Syntesis.resx 163 5 Synthesis

    I tested make te same program with out Blackmagic.dlls and works perfectly, but when i add this, i have the same error O,O!

    i think if you make a empty code and only make a imagelist and add a any image and add Blackmagic.dll you have the same error

    this is mi code (works pefect with out blackmagic...)

    Code:
    using System.IO;
    
    
    namespace Archivos
    {
        public partial class Form1 : Form
        {
            public Form1()
            {
                InitializeComponent();
            }
            
            string Dir = Application.StartupPath + @"\Profile";  // Obtain rute of program
            private void button1_Click(object sender, EventArgs e)
            {
                treeView1.Nodes.Clear();
                TreeNode desktop = new TreeNode();
                desktop.Text = "Profile";
                desktop.Tag = "Profile";
                desktop.ImageIndex = 0;
                desktop.SelectedImageIndex = 0;
                desktop.Nodes.Add("");
                treeView1.Nodes.Add(desktop);
                treeView1.Nodes[0].Expand();
            }
    
    
            public TreeNode EnumerateDirectory(TreeNode parentNode)
            {
                try
                {
                    DirectoryInfo rootDir;
    
                    // To fill Desktop
                    Char[] arr = { '\\' };
                    string[] nameList = parentNode.FullPath.Split(arr);
                    string path = "";
    
                    if (nameList.GetValue(0).ToString() == "Profile")
                    {
                        path = Dir + "\\";
    
                        for (int i = 1; i < nameList.Length; i++)
                        {
                            path = path + nameList[i] + "\\";
    
                        }
    
                        rootDir = new DirectoryInfo(path);
                    }
                    else
                    {
    
                        rootDir = new DirectoryInfo(parentNode.FullPath + "\\");
                    }
                    parentNode.Nodes[0].Remove();
                    foreach (DirectoryInfo dir in rootDir.GetDirectories())
                    {
    
                        TreeNode node = new TreeNode();
                        node.Text = dir.Name;
                        node.Nodes.Add("");
                        parentNode.Nodes.Add(node);
                    }
                    foreach (FileInfo file in rootDir.GetFiles())
                    {
                        TreeNode node = new TreeNode();
                        node.Text = file.Name;
                        node.ImageIndex = 2;
                        node.SelectedImageIndex = 2;
                        parentNode.Nodes.Add(node);
                    }
                }
                catch (Exception ex)
                {
                }
                return parentNode;
            }
    
            private void treeView1_BeforeExpand(object sender, TreeViewCancelEventArgs e)
            {
                if (e.Node.Nodes[0].Text == "")
                {
                    TreeNode node = EnumerateDirectory(e.Node);
                }  
            }
            private void Form1_Load(object sender, EventArgs e)
            {
                button1_Click(sender, e);
                  
            }
        }
    }

    Incompatible &quot;ImagList&quot; object with blackmagic!?
  2. #2
    sefi89's Avatar Corporal
    Reputation
    9
    Join Date
    Apr 2012
    Posts
    16
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I tested more: the problem real is the fasmdll_managed.dll
    Only i add the BlackMagic.dll and works correct (including the functions of blackmagic wow = new blackmagic() )

    for a what is fasmdll_managed.dll ?

Similar Threads

  1. How to lock objects with key(HELP)
    By Ascelyn in forum WoW EMU Questions & Requests
    Replies: 2
    Last Post: 05-03-2010, 07:15 PM
  2. Executing remote sub/thread with BlackMagic
    By Burningmace in forum WoW Memory Editing
    Replies: 13
    Last Post: 02-11-2010, 07:59 PM
  3. Asm manipulation with BlackMagic
    By nopz in forum WoW Memory Editing
    Replies: 2
    Last Post: 10-11-2009, 08:53 AM
  4. Problem compiling with BlackMagic
    By gr3ger in forum WoW Memory Editing
    Replies: 4
    Last Post: 08-21-2009, 04:08 AM
  5. [Help!] Scripting a GO object with LUA???
    By pioneer1337 in forum World of Warcraft Emulator Servers
    Replies: 5
    Last Post: 07-31-2008, 11:55 PM
All times are GMT -5. The time now is 05:06 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search