OpenGL, GLUT, used to work on XP, is "glut32.dll' not found on Vista 64

Newbie

Registration date: 27/12/09
Messages: 1

I had a small program in OpenGL, GLUT (gl.h, glut.h) which worked well on my Windows XP machine in Visual C++ Express. Copied on my laptop Vista 64 and now compile OK (after I correct specify include folder and folder lib for glut.h and glut.lib) but I get a "glut32.dll' not found when I try to run it. Y at - it a good website or a tutorial that explains how to get OpenGL/GLUT running under Vista 64. What should I download etc... ??? Someone at - it example code OpenGL/GLUT that works for them on Vista / VC ++ Express? What makes you specify in VC ++ and what files should be in folders?

Hey Drichird,.

I had this same problem with my laptop and I found only on 64-bit computers, the folder as VC ++ resembles the title of the dll is actually C:\Windows\SysWOW64 instead of C:\Windows\System32. If you move glut32.dll here you should be good to go, or at least I was. I hope this helps!

Oh yes and if you need to download the files of glut bring here: http://www.xmission.com/~nate/glut.html

Matthew

Tags: Windows

Similar Questions

  • Using c# to access the REST API - 404 not found

    Hi all!

    Since there is currently no available c# example to access the REST API, I'm going at this from scratch using the Nuget - Microsoft.AspNet.WebApi.Client package.

    I was able to successfully implement a framework for code that is able to make a call to the base_uris method and successfully receive a response.

    I'm doing a transientDocuments call, but I still get a 404 not found error.  I'm hoping somewhere here may be able to enlighten.  I tried to use the current examples of Java to call REST API to get help on how to go about things.

    I create an instance of the AdobeDCREST class, and pass the BaseUrl (https://api.echosign.com/api/rest/v5/) and my key to integration.  When I make a call to the PostTransientDocuments method I pass into the path of the pdf file that I am trying to download.  PostTransientDocuments then deals with the creation of an object the HttpContent (StreamContent) of the file, and then adding the headers, ContentType and ContentDisposition.  The call to GetClient() will determine whether base_uris should be called still or not (I make the call to base_uris and storage of the api_access_point in a variable static for all other calls, as well as the java examples) and returns an object of the HttpClient with the access in the header already token.  The call to base_uris works and returns a https://api.na1.echosign.com/ api_access_point

    I then add/api/rest/v5 to the url access_point to call transientDocuments. Failure occurs during the call to PostAsync in transientDocuments with a 404 not found error.

    Here's the code I'm using to test things so far.  Any help would be greatly appreciated.  I've been spinning my wheels on that for too long already.

    using System;

    using System.Collections.Generic;

    using System.IO;

    using System.Linq;

    using System.Net.Http;

    using System.Net.Http.Headers;

    using System.Text;

    using System.Threading.Tasks;

    namespace Ivezt.Documents {}

    public class AdobeDCREST {}

    < Summary >

    A static variable that is defined by an initial call to GetBaseURIs() and used for all API calls later.

    < / Summary >

    Private Shared ReadOnly Property SERVICES_BASE_URL as string = string. Empty;

    < Summary >

    The end point of API to use.  This aspect will have to be changed if Adobe is moving to a new version of the API and we update this

    the code to use this new version.

    < / Summary >

    Private Shared ReadOnly Property API_URL as string = "api/rest/v5 /";

    < Summary >

    This BaseUrl is passed to the constructor and used to make a call to GetBaseURIs().

    < / Summary >

    private string m_strBaseUrl = string. Empty;

    < Summary >

    The IntegrationKey is passed to the constructor and must be added to the header of each API request.

    < / Summary >

    private string m_strIntegrationKey = string. Empty;

    public AdobeDCREST (string strBaseUrl, string strIntegrationKey) {}

    m_strBaseUrl = strBaseUrl;

    m_strIntegrationKey = strIntegrationKey;

    }

    private HttpClient GetDefaultClient() {}

    HttpClient client = new HttpClient();

    Add an Accept header for JSON format.

    customer. () DefaultRequestHeaders.Accept.Add

    (new MediaTypeWithQualityHeaderValue("application/json"));

    Add the access token

    customer. DefaultRequestHeaders.Add ("Access token", m_strIntegrationKey);

    customer feedback;

    }

    private HttpClient GetClient() {}

    If we have not yet the SERVICES_BASE_URL, then we must do a GetBaseURIs call

    If (SERVICES_BASE_URL. Length == 0) {}

    HttpClient baseClient = GetDefaultClient();

    Use the BaseUrl passed to the constructor

    baseClient.BaseAddress = new Uri (m_strBaseUrl);

    URI BaseURIs_Response = GetBaseURIs (baseClient);

    SERVICES_BASE_URL = string. Format ("{0} {1}", uris.api_access_point, API_URL);

    baseClient.Dispose ();

    }

    If (SERVICES_BASE_URL. Length == 0)

    throw new Exception ("failed to retrieve Adobe Document cloud Base URI");

    HttpClient client = GetDefaultClient();

    customer. BaseAddress = new Uri (SERVICES_BASE_URL).

    customer feedback;

    }

    public BaseURIs_Response GetBaseURIs(HttpClient client) {}

    Call base_uris

    HttpResponseMessage response = client. GetAsync ("base_uris"). Result;  Call blocking!

    If (answer. IsSuccessStatusCode) {}

    Analyze the response body. Blocking!

    answer back (BaseURIs_Response). Content.ReadAsAsync (typeof (BaseURIs_Response)). Result;

    }

    else {}

    throw new Exception (string. Format ("{0} ({1})", (int) response. ") StatusCode, response. ReasonPhrase));

    }

    }

    public TransientDocument_Response PostTransientDocuments (string strFilePath) {}

    Call transientDocuments

    Content the HttpContent = new StreamContent (new FileStream (strFilePath, FileMode.Open, FileAccess.Read));

    content. Headers.ContentType = new MediaTypeHeaderValue("application/pdf");

    content. Headers.ContentDisposition = new ContentDispositionHeaderValue("form-data") {}

    Name = "file."

    FileName = 'Template.pdf.

    };

    HttpClient client = GetClient();

    HttpResponseMessage response = client. PostAsync ("transientDocuments", content). Result;  Call blocking!

    If (answer. IsSuccessStatusCode) {}

    Analyze the response body. Blocking!

    answer back (TransientDocument_Response). Content.ReadAsAsync (typeof (TransientDocument_Respons e)). Result;

    }

    else {}

    throw new Exception (string. Format ("{0} ({1})", (int) response. ") StatusCode, response. ReasonPhrase));

    }

    }

    }

    public class BaseURIs_Response {}

    public string web_access_point {get; set ;}}

    public string api_access_point {get; set ;}}

    }

    public class TransientDocument_Response {}

    public string transientDocumentId {get; set ;}}

    }

    }

    I think I found my problem.  I was not a multi-part post form data.  Once I changed this, everything worked as expected.  Here is an updated version of the PostTransientDocuments() method that works:

    public TransientDocument_Response PostTransientDocuments (string strFilePath) {}

    Call transientDocuments

    using (var = {GetClient() customer)}

    using (var content = new MultipartFormDataContent()) {}

    var multiplesContent = new StreamContent (new FileStream (strFilePath, FileMode.Open, FileAccess.Read));

    fileContent.Headers.ContentType = new MediaTypeHeaderValue("application/pdf");

    fileContent.Headers.ContentDisposition = new ContentDispositionHeaderValue("form-data") {}

    Name = "file."

    FileName = 'Template.pdf.

    };

    content. Add (FileContent);

    HttpResponseMessage response = client. PostAsync ("transientDocuments", content). Result;  Call blocking!

    If (answer. IsSuccessStatusCode) {}

    Analyze the response body. Blocking!

    answer back (TransientDocument_Response). Content.ReadAsAsync (typeof (TransientDocument_Respons e)). Result;

    }

    else {}

    throw new Exception (string. Format ("{0} ({1})", (int) response. ") StatusCode, response. ReasonPhrase));

    }

    }

    }

    }

  • Flash CS5 does not open after working for years? Entry point not found

    Hi guys,.

    I'm having a problem at the opening of my Flash CS5 after this works well since I installed it for always there. I don't know what could have caused this, and my other cs5 programs are open.

    Dreamweaver and Fireworks has not changed all (these 3; with Flash; are what I use the most)

    I also open photoshop and the legacy of my main collection for the test and they opened very well also. I made a scan using microsoft databases and found nothing.

    I tried to run as administrator on flash and he says the same thing.

    I am using windows 7 Ultimate N SP1 64-bit

    Here's the alert in the text.

    flash.exe -Entry Point Not Found
    The procedure entry point ?ButtonChanged@UI_ClearButtonTextEdit@controls@dvaui@@UAEXP
    AVUI_ButtonChangedMessage@23@@Z could not be located in the 
    dynamic link library dvaui.dll

    Please let me know what is happening here.
    Thanks, I really appreciate the help.
    Randy

    It's so strange, I open it today and it opens fine. No problem.
    I think it was the old crash flash Wednesday, ha. I don't know what fixed it. Yesterday I had restarted but nothing has changed. Today, I had just disconnected and reconnected.
    Weird.

  • Since upgrading to FireFox 6, I can't start Firefox in Avast Sandbox - get the error "this application has failed to start because xul.dll not found." Firefox works well outside Avast Sandbox.

    The error box has the right
    Firefox.exe - Unable to locate component.
    He suggests reinstalling might fix the problem, but I've uninstalled and reinstalled firefox a number of times and no change.

    problem is Firefox works outside the sandbox avast, but inside the sandbox, xul.dll file is not found

    It is solved with these steps... some may be unnecessary
    (1) uninstalled Firefox
    (2) downloaded the latest version of FF (6.02) and installed
    (3) open the Avast user interface > extra Protection (in Avast v6) > Sandbox > Expert settings (button) > Web browsers > (in maintenance) "remove content" (button)
    (4) disconnected from Windows
    (5) connected and Firefox started in the sandbox

    It might be that the first 2 steps are not needed... but that's what I did and the problem was solved. As you can see in the screenshot, Firefox is virtualized successfully

  • Report Generation Toolkit (Word): how to properly use bookmark and return without "error!" Source not found reference.

    Hello

    I'm trying to generate a report using a template. In my model, I use cross references to refer to a bookmark. For example, in the first page, I created a bookmark for my name, and in the header, I've created a reference refer to my name. The problem is when I start my VI the bookmark update perfectly but the reference to refer to the bookmark cannot refresh with the same value and generates an error: ' error! Reference source not found. "
    Can someone help me please!

    NKI

    Unfortunately, since this is a mistake in the word, there is no we can do about it.  But you found a great workaround solution - good troubleshooting.

  • I can't open anything without: "choose which program you want to use to open the file with" and "Application not found".

    I got a used computer and it worked fine for a while. I guess that I did something for her, because now I had a problem with the opening just like files and almost all of the icons in the start menu. I found someone had mentioned this on another post, but it has not been answered and I have the same problem:

    "I don't know what to do. I tried reseting IE back to its "settings by default, but nothing seems to work. It doesn't let me open any programs on my computer. I can't even find the virus because there asking what program I want to open it with and when to choose IE he sent me through a series of 'SAVE or RUN' windows and then back to the "choose a program you want to run the file with.» I am only able to access the internet via a shortcut of Internet Explorer button that I dragged on the start menu, because the original one on my desk does not open. »

    It's the best way I can explain this problem. I've had this problem for a while now and I have looked everywhere for an answer and still nothing. It would be great to get help, thank you!

    After much research, I found the answer here:

    http://WindowsXP.MVPs.org/exefile.htm

    But thanks for the help!

    This problem has not helped me with my problems to download iTunes correctly, that's why I set out to solve this problem in the first place. I also get a lot of it popping up every 10 minutes:

    "MobileDeviceService has encountered a problem and needs to close. We are sorry for the inconvenience. »

    The error signature is always:

    szAppName: AppleMobileDeviceService.exe szAppVer: 17.88.0.8

    szModName: kernel32.dll szModVer: 5.1.2600.5781 offset: 00012afb

    It won't do anything when I click to send error report or not, it does not close anything as it is normally would. I think it might have something to do with the steps I took to reinstall iTunes properly...

    And

    1. I use Microsoft Windows xp Version 5.1, at least that's the stuff I wrote, do not know if this is the answer you're looking for. I am not sure computers.

    2. my anti-virus software is ESET NOD32 Antivirus 4

  • LV 5.1: Secondary DLL not found, path to the DLL to work it must be re-specified every time

    I wrote a little VI (my first!) to send a string to a DLL that has written:

    SendStringToDACQ.vi

    Our DLL exports two functions, DACQInputMsg() and DACQOutputMsg(), who receive and output channels, respectively. DACQ.dll also called PIDebug.dll, which we use to write debug information to the Windows debug stream.

    The DACQ.dll and the PIDebug.dll live in C:\Program Files\Pulse20\

    The VI _always_ complains when I load first, that PIDebug.dll could not load, and the VI is not executable. If I change the library function call, I see that the path I had entered as C:\Program Files\Pulse20\dacq.dll has been replaced by...... \dacq.dll. If I just retype as C:\Program Files\Pulse20\dacq.dll and click OK, it still is unexecutable. But if I then click Browse (which opens C:\Program Files\Pulse20\) and then click OK, then everything works.

    But if I save it, close LabVIEW and run it again, I have to start all over again.

    Note that I have by clicking Browse does not change what LabVIEW sees as the path to the DLL. It seems just "wakes up" something and actually load the DLL (and possibly the DLL depends on it?). The actual function call, calling convention, and the arguments are correct because everything works after I re - specify and re - browse to the DLL.

    Yes, we use LabVIEW 5.1. If I can get some things fixed and complete this proof of concept, then maybe I can get approval to upgrade!

    Thank you!

    Sorry for the Kipper, it was PEBCAK. Put C:\Program Files\Pulse20 in the Windows environment variables corrects the problem.

    Sorry to bother you.

  • with windows photo gallery, it is said photobase.dll not found how can I solve this nothing worked for me.

    Just at the moment where I try to open windows Photo Gallery, he said Photobase dll. not been found.  Now, what

    Have you tried to run the System File Checker tool?

    http://support.Microsoft.com/kb/929833

    You can also try to repair windows live photo gallery by clicking on start---> Panel---> Add / Remove---> Windows live essentials and selecting the repair option.

    Good luck.

  • Olympus VN - 480PC Digital Voice Recorder Media Player not working, receive error message: "no driver file found." » »

    Original title: Olympus VN - 480PC Digital Voice Recorder Media Player

    I recently bought a new computer from DELL (Inspiron ONE 2320 with Windows 7) desktop and I connect my Olympus VN-480PC Digital Voice Recorder Media Player with the PC (to download recorded files), but it does not work... "no driver not found file.." After some trial and error I find Olympus webbsite and find appropriate... but then it won't... they have a problem at Olympus and cannot deliver a driver file... I tried 2 or 3 times in the last 6 hours... what to do? Can tell you Ms them the probem? Thanks in advance...

    Hello

    Are you running the 64-bit or 32-bit operating system?

    If you use the 64-bit operating system, you can try to download and install the drivers from this link and check that it works.
    http://www.olympusamerica.com/cpg_section/cpg_support_downloads.asp?ID=1175&OS=w

    If the problem persists, please contact Olympus. As they develop device drivers for their hardware, they can help you with this problem.

    http://www.Olympus-IMS.com/en/support/

  • Apple synchronization notifier works do not base foundation dll file not found.

    just recently downloaded itune 9 and since then when turning on computer (using vista professional) comes up with apple sync Notifier and core foundation dll not found. where can I get this file free and what I do next to fix the problem?

    Hello sheard229,

    Uninstall MobileMe from your computer via the control panel. MobileMe is uninstalled, you will receive is more this message.
    Or you can uninstall iTunes and then reinstall. Make sure that you install the latest version of iTunes. Currently, this is version 9.1.

    You can watch the following article of the Apple with the error message Corefoundation.dll not found:
    http://support.Apple.com/kb/TS2211

    If this does not help, then as Mick Murphey said, contact Apple support.
    http://www.apple.com/support/itunes.

    If please reply back and let us know if this helps solve your problem.

    Sincerely,

    Marilyn
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think

  • I'm unable to watch videos on a certain type of site. They all now say, 'file not found '. They worked until I added a router for my Kindle Fire.

    I used to be able to watch videos on a certain type of site now all say file not found windows vista. I recently added a router for a kindle fire

    original title: streaming videos

    Hello

    ·          Do you mean that you use Internet Explorer 6 in Windows Vista?

    Windows Vista Internet Explorer 7 default features.

    http://Windows.Microsoft.com/en-us/Windows-Vista/find-out-which-version-of-Internet-Explorer-youre-using

  • How can I connect to iTunes that it used to work now it isn't

    How can I connect to iTunes that it used to work now it isn't

    When happens when you connect the iPod to your computer running iTunes?  You say it does not appear in iTunes at all?

    Look at the screen of the iPod when you connect it to the USB port on the computer?  He said not 'connected' or 'do not disconnect' or give another indication of a data connection?  Or is it just to show battery charge symbol?  Or not it reacts at all to be connected?

    Your computer is equipped with a Mac or a Windows PC iTunes?  If Windows, which free?

  • Apple ID to be used for work

    I have an apple using my work email address, as it was convenient ID.  Now, I get an iphone through work.  I've changed my email address on the old account, but now I can't use my work email address to install the new iphone.  What can I do?

    You cannot reuse an email address as identification code of Apple

    Read here: change your Apple - Apple Support ID

  • says I have emails, but not down load them - used to work properly

    says I have emails, but not down load them - used to work properly.

    For an example says that there download 1 / 6 after awhile, he says no new messages. I can check my email from another source and see that I have 6 messages and am able to read them. I ran scan programs and malware and clear up all the problems, they found that Thunderbird is not download again. I'm on the latest version 31.6.0

    This is probably one of these programs of malware or anti virus which is at the origin of the problem. Disable the e-mail in your anti virus and restart your computer. Best? What anti virus is it anyway?

  • Why is the box to remember password is gray? It used to work now it won't save them.

    Why is the box to remember password is gray? It used to work now it won't save them.

    This could be because you have set Firefox not remember the history. Who did you intentionally? It is defined in the Options dialog box:

    "3-bar" menu button (or tools) > Options > privacy

    Maybe it would work if you choose "Use the custom settings for history" and not to turn off specific things that you want to disable.

    A little luck?

Maybe you are looking for