Jump to content

All my products and services are free. All my costs are met by donations I receive from my users. If you enjoy using any of my products, please donate to support me. My bare hosting costs are currently not met so please consider becoming a contibuting member by either clicking this text or the Patreon link on the right.

Patreon

lingpanda

Elite Member
  • Posts

    952
  • Joined

  • Last visited

Everything posted by lingpanda

  1. Thanks Frequency! Thats exactly what I needed to know.
  2. What rom type does Mess use? My roms from PD don't seem to work.
  3. I downloaded the latest ver. and re-installed the iso setup files. I can play the movie fine just leaving it as an avi and playing it through GE.
  4. What if you clone the desktop and not extend the image from display properties? That's how I use the tv out on my cab.
  5. I converted a avi to ISO file using Alcohol 120%. This is the error I get. log.txt
  6. I don't understand Will. Does the screen flicker when you exit GE to Desktop?
  7. lingpanda

    Mameworld?

    http://www.mameworld.info/ubbthreads/ubbthreads.php?Cat=
  8. http://support.microsoft.com/default.aspx?...kb;en-us;239114 See if this helps?
  9. GameEx can do this but without sound.
  10. Nice Find. Wasn't aware of that. I remembered to do it for the richtextbox. I was unable to alter the text correctly using just a texbox. I still don't understand why the snaps don't display right. I even changed the color depth for the image list.
  11. Wanted to share this app I made. I made it to teach myself some Visual C++. Please try it out and tell me what I could add to it. http://www.yourfilehost.com/media.php?cat=...FEBUDDYv1.1.rar For Whatever reason I can't attach it the the forum
  12. Thanks HK. I forgot about the switch case.
  13. Snap must match rom name.
  14. Can ayone help me out with this? I'm using Visual C++ but I know some people here use C#. How do I dynamically change the link label to reflect a new hyperlink? I've used this info to create a link. For example. If I click a button how do I change the link to something new? Does that make sense? <H1 class=heading>Linking to a Web Page</H1>The LinkLabel control can also be used to display a Web page with the default browser. <H3 class=procedureSubHeading>To start Internet Explorer and link to a Web page with a LinkLabel control</H3> Set the Text property to an appropriate caption. Set the LinkArea property to determine which part of the caption will be indicated as a link. In the LinkClicked event handler, in the midst of an exception-handling block, call a second procedure that sets the LinkVisited property to true and uses the Start method to start the default browser with a URL. To use the Start method you need to add a reference to the System.Diagnostics namespace. Security Note:If the code below is run in a partial-trust environment (such as on a shared drive), the JIT compiler fails when the VisitLink method is called. The System.Diagnostics.Process.Start statement causes a link demand that fails. By catching the exception when the VisitLink method is called, the code below ensures that if the JIT compiler fails, the error is handled gracefully. Visual Basic Copy CodePrivate Sub LinkLabel1_LinkClicked(ByVal sender As System.Object, _ ByVal e As System.Windows.Forms.LinkLabelLinkClickedEventArgs) _ Handles LinkLabel1.LinkClicked Try VisitLink() Catch ex As Exception ' The error message MessageBox.Show("Unable to open link that was clicked.") End TryEnd SubSub VisitLink() ' Change the color of the link text by setting LinkVisited ' to True. LinkLabel1.LinkVisited = True ' Call the Process.Start method to open the default browser ' with a URL: System.Diagnostics.Process.Start("http://www.microsoft.com")End Sub C# Copy Codeprivate void linkLabel1_LinkClicked(object sender, System.Windows.Forms.LinkLabelLinkClickedEventArgs e){ try { VisitLink(); } catch (Exception ex ) { MessageBox.Show("Unable to open link that was clicked."); }}private void VisitLink(){ // Change the color of the link text by setting LinkVisited // to true. linkLabel1.LinkVisited = true; //Call the Process.Start method to open the default browser //with a URL: System.Diagnostics.Process.Start("http://www.microsoft.com");} Visual C++ Copy Codeprivate: void linkLabel1_LinkClicked(System::Object ^ sender, System::Windows::Forms::LinkLabelLinkClickedEventArgs ^ e) { try { VisitLink(); } catch (Exception ^ ex) { MessageBox::Show("Unable to open link that was clicked."); } }private: void VisitLink() { // Change the color of the link text by setting LinkVisited // to true. linkLabel1->LinkVisited = true; // Call the Process.Start method to open the default browser // with a URL: System::Diagnostics::Process::Start("http://www.microsoft.com"); }
  15. Voted!
  16. I don't recall where this option is, but you should be able to find it by using the search function in the setup wizard.
  17. How do you access the Mame menu without a tab key?
  18. I would also need a key for the enter button as well. How about a script I could add as an external app. that would edit the mame ini? I could then choose to have overlays,bezels etc come on and off while in GE. Not the ideal solution, but I would not need a keyboard. I do this with my i-Pac config.
  19. Maybe you misunderstood me Brian. I want to be able to turn these features on and off while in game. I just don't want to pull out the keyboard to do it. Is their a Hot key or something that turns these features on while in game?
  20. I would like to turn the Bezels and such on during play. I don't want to access the keyboard to use these features. I also don't want these on by default.
  21. Any way to turn this feature on and off while in game? I would like to avoid using the keyboard to activate this by pressing tab.
  22. Or you could just use this http://www.golive2.com/
  23. Found the issue to this problem. The utility I use to adjust the volume while in game was set wrong.
  24. This is a registered feature. You must purchase a license to activate.
×
×
  • Create New...