Search Result

Collapse
6 results in 0.0015 seconds.
Keywords
Members
Tags
resource
  •  

  • ziycon
    started a topic PHP mySQL resource query?
    in PHP

    PHP mySQL resource query?

    I have this first piece of code which works fine but I'm trying to break it up into two parts like in the second code snippet below.
    Code:
    $tables = mysql_query("SHOW tables;");
    while($row = mysql_fetch_array($tables)) {
    	$tableNames .= "<a href=\"".$_SERVER['PHP_SELF'].">".$row[0]."</a><br/>\n";
    	$tableCount++;
    }
    So it passes the sql query...
    See more | Go to post

  • madshov
    started a topic Tomcat 7 servlet problem
    in Java

    Tomcat 7 servlet problem

    Hello everyone,

    I have spent a couple of days now trying to figure out why I can't serve my servlets through tomcat. I have no experience with tomcat, so I'm running out of ideas.

    Basically I get a 404 error, saying that the requested resource can't be found. I have checked the log output in catalina.out, and there are no issues here. I know that tomcat is running. It reads the index.jsp which contains a redirect to /servlet/vservlets.Login ....
    See more | Go to post
    Last edited by madshov; Jun 28 '11, 03:11 PM. Reason: spelling mistake

  • MysticalNomad
    started a topic Getting Global Resource of Application

    Getting Global Resource of Application

    Rather than having to create a new "About" form for every program that I write; I have written a class which will create a new form at runtime with all the objects placed. This has been designed so that the class can be added to any project that I am doing and executed as a new instance - voila, one "About" box.

    The problem I am currently having is the ability to display a logo on said form. Normally, images are...
    See more | Go to post

  • Robert Varga
    started a topic HLSL in Resource Files
    in C

    HLSL in Resource Files

    Hi,
    I'am developing some application and since I want to create first public release, I am trying to include all resource files (bmps, dlls and so on) into EXE.

    The problem is that I have one *.hlsl shader file whitch compiles always on app build. I've tried to put this *.hlsl file into "Resource Files" folder in project, then F5 (build, release, start app), and then I copied just an *.exe file to other directory,...
    See more | Go to post

  • mikeymike
    started a topic Edit DLL Image Resources

    Edit DLL Image Resources

    I am trying to edit an image resource in a compiled dll from C# .net code, I cannot seem to work out a way to do this, any insights?
    See more | Go to post

  • share resource b/t child thread & parent thead

    hi all,

    I have met a problem with asp.net. Textbox can't be updated. "Main Thread" runs on Page_load. It calls child thread, which changes the text of textbox, recursively.

    Here is my code

    Code:
        protected void Page_Load(object sender, EventArgs e)
        {
         serverSocket = new Socket(AddressFamily.InterNetwork,
                SocketType.Dgram, ProtocolType.Udp);
    ...
    See more | Go to post
Working...