User Profile

Collapse

Profile Sidebar

Collapse
muquaddim
muquaddim
Last Activity: Feb 3 '12, 11:28 PM
Joined: Jun 16 '07
Location: Dhaka, Bangladesh
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • change the containers overflow css rule to auto. that works for FF. I think if its the same issue, it'll work for IE also.

    Suppose you have this fragment.
    Code:
    <div>
    <input name="username" />
    </div>
    make it
    Code:
    <div style="overflow:auto">
    <input name="username" />
    </div>
    It worked for me.
    See more | Go to post

    Leave a comment:


  • muquaddim
    replied to Execute an exe from memory
    in C
    Actually I want to execute a byte[]
    CreateProcess() does not support that....
    See more | Go to post

    Leave a comment:


  • muquaddim
    replied to Execute an exe from memory
    in C
    oops! sorry.
    the article and forum menu are same. so i did the mistake....
    See more | Go to post

    Leave a comment:


  • muquaddim
    started a topic Execute an exe from memory
    in C

    Execute an exe from memory

    Hi,
    I have some exe files. those are not .net assembly. just portable executable.
    Now I want to load those exes to memory. then i'll run it by C++.
    Also I want to load some dll files not .net assembly dll files to memrory and call methods/entry points from my C++ host application.
    My target is to distribute those portable exes encrypted. and I'll run it from memory after decrypting.
    many people told me about using...
    See more | Go to post

  • muquaddim
    replied to Java GUI freezes in Debian/Sarge
    in Java
    Yes it occures in a specific point for the game. when I open the control panel of the game it loads configuration from config files.then I leave the control panel. but when I again start the control panel. it freezes. the configuration file config.txt is in the same directory with 777 permission....
    See more | Go to post

    Leave a comment:


  • muquaddim
    started a topic Java GUI freezes in Debian/Sarge
    in Java

    Java GUI freezes in Debian/Sarge

    Hi,
    I am running a Debian/Sarge
    #uname -a
    Linux jukebox 2.6.14.2 #5 PREEMPT Mon Nov 28 20:28:54 CET 2005 i686 GNU/Linux
    I have a java casino game created by jdk (1.6.0_02) netbeans(5..5.1 ) . If I run it in development machine (windows) it runs okay. It also runs okay in (fedora)
    But I got problme when I run it in the Debian. after some clickings and typings it gets frozen. just frozen. I can not work with it. I...
    See more | Go to post

  • actually I compiled it with netbeans 5.5.1
    netbeans uses ant as backend as far I found in forums. then I compiled it by ant.
    #ant -buildfile build.xml
    my build file is here, I omitted the comments

    Code:
    <?xml version="1.0" encoding="UTF-8"?>
    <project name="NetBeansApplication" default="default" basedir=".">
        <description>Builds,
    ...
    See more | Go to post

    Leave a comment:


  • muquaddim
    started a topic Same jar file does not run on different platforms
    in Java

    Same jar file does not run on different platforms

    Hi,
    First of all I am not a java programmer. what I am doing is just trying to port a precompiled game to other machine.
    I have a java game project. the final output or the game is "game.jar". I compiled this in fedora with netbeans (5.5.1) ide. It was running well in fedora.
    But The problem arises when I try to run that same jar file from windows with same command. I used same jdk in both linux and windows.
    ...
    See more | Go to post

  • [sorry about my previous post. here is it.]

    hello,
    First of all I am not a java programmer. I work in C/C++/C#.
    Currently I am dealing a game written in java (1.5) using netbeans 5.5.0 under windows xp. My target is to compile in my development machine and run in the clients machine. everything works fine in windows xp. I open the netbeans ide, load the necessary class libraries, build the project and run it. it runs...
    See more | Go to post

    Leave a comment:


  • Jar not running is Debian Sarge and apache-ant shows error of package not found

    Hi,
    Please look at this message.
    Its about java, ant and cross platform compilation
    <Removed>
    If you know how to make solve it please let me know.
    Thanks
    See more | Go to post

  • Retriving method names or entry points from a Dll file

    Hi,
    I have some dll file. These are compiled with VC6.
    Now I want to create .NET 2.0 wrapper for these dlls. but unfortunately I don't know about the entry points in the dll files. If I could know the entry points, I would have interfaced it with C# by [DllImport] attibute.
    Now My question is, How can I retrive the entry points of an arbitary dll file ?
    Thanks in advance
    See more | Go to post
No activity results to display
Show More
Working...