Transparent child window on web-browser

Hi All,
I wanted to create some overlay animation on webbrowser actually.
but before that i just check the overlay with glut library.
but i got some problem when i run the program as follow.
Problem is :
when i run my java program it gives me
Sorry, no whizzy zoomdino overlay usage!
as it is because of
overlaySupport = glutLayerGet(GLUT_OVERLAY_POSSIBLE);
if (overlaySupport) {
else
printf("Sorry, no whizzy zoomdino overlay usage!\n");
so how can i solve this as i have to change any display mode or what ?
my source file are...
File Name : nativtest.h
Code:
/* DO NOT EDIT THIS FILE - it is machine generated */
#include "jni.h"
/* Header for class nativetest */
#ifndef _Included_nativetest
#define _Included_nativetest
#ifdef __cplusplus
extern "C" {
#endif
* Class:     nativetest
* Method:    sayHello
* Signature: (Ljava/lang/String;)Ljava/lang/String;
JNIEXPORT jstring JNICALL Java_nativetest_sayHello
  (JNIEnv *, jobject, jstring);
#ifdef __cplusplus
#endif
#endif
File Name :  nativtest.c
#include "nativetest.h"     /*double quotes tells it to search current directory*/
#include <stdio.h>
#include "glut.h"
#include <stdlib.h>
#include <string.h>
#include <math.h>      
#include <GL/glut.h>
JNIEXPORT jstring JNICALL Java_nativetest_sayHello(JNIEnv *env, jobject thisobject, jstring js){
     main(0, NULL);
     return js;
typedef enum {
  RESERVED, BODY_SIDE, BODY_EDGE, BODY_WHOLE, ARM_SIDE, ARM_EDGE, ARM_WHOLE,
  LEG_SIDE, LEG_EDGE, LEG_WHOLE, EYE_SIDE, EYE_EDGE, EYE_WHOLE, DINOSAUR
} displayLists;
GLfloat angle = -150;  
int moving, begin;
int W = 300, H = 300;
GLdouble bodyWidth = 3.0;
int newModel = 1;
GLfloat body[][2] = { {0, 3}, {1, 1}, {5, 1}, {8, 4}, {10, 4}, {11, 5},
  {11, 11.5}, {13, 12}, {13, 13}, {10, 13.5}, {13, 14}, {13, 15}, {11, 16},
  {8, 16}, {7, 15}, {7, 13}, {8, 12}, {7, 11}, {6, 6}, {4, 3}, {3, 2},
  {1, 2} };
GLfloat arm[][2] = { {8, 10}, {9, 9}, {10, 9}, {13, 8}, {14, 9}, {16, 9},
  {15, 9.5}, {16, 10}, {15, 10}, {15.5, 11}, {14.5, 10}, {14, 11}, {14, 10},
  {13, 9}, {11, 11}, {9, 11} };
GLfloat leg[][2] = { {8, 6}, {8, 4}, {9, 3}, {9, 2}, {8, 1}, {8, 0.5}, {9, 0},
  {12, 0}, {10, 1}, {10, 2}, {12, 4}, {11, 6}, {10, 7}, {9, 7} };
GLfloat eye[][2] = { {8.75, 15}, {9, 14.7}, {9.6, 14.7}, {10.1, 15},
  {9.6, 15.25}, {9, 15.25} };
GLfloat lightZeroPosition[] = {10.0, 4.0, 10.0, 1.0};
GLfloat lightZeroColor[] = {0.8, 1.0, 0.8, 1.0};
GLfloat lightOnePosition[] = {-1.0, -2.0, 1.0, 0.0};
GLfloat lightOneColor[] = {0.6, 0.3, 0.2, 1.0};
GLfloat skinColor[] = {0.1, 1.0, 0.1, 1.0}, eyeColor[] = {1.0, 0.2, 0.2, 1.0};
int overlaySupport, red, white, transparent, rubberbanding;
int anchorx, anchory, stretchx, stretchy, pstretchx, pstretchy;
float vx, vy, vx2, vy2, vw, vh;
float wx, wy, wx2, wy2, ww, wh;
int fancy, wasFancy, help, clearHelp;
void
extrudeSolidFromPolygon(GLfloat data[][2], unsigned int dataSize,
  GLdouble thickness, GLuint side, GLuint edge, GLuint whole)
  static GLUtriangulatorObj *tobj = NULL;
  GLdouble vertex[3], dx, dy, len;
  int i;
  int count = dataSize / (int) (2 * sizeof(GLfloat));
  if (tobj == NULL) {
    tobj = gluNewTess(); 
    gluTessCallback(tobj, GLU_BEGIN, glBegin);
    gluTessCallback(tobj, GLU_VERTEX, glVertex2fv); 
    gluTessCallback(tobj, GLU_END, glEnd);
  glNewList(side, GL_COMPILE);
  glShadeModel(GL_SMOOTH);  /* smooth minimizes seeing
                               tessellation */
  gluBeginPolygon(tobj);
  for (i = 0; i < count; i++) {
    vertex[0] = data[0];
vertex[1] = data[i][1];
vertex[2] = 0;
gluTessVertex(tobj, vertex, data[i]);
gluEndPolygon(tobj);
glEndList();
glNewList(edge, GL_COMPILE);
glShadeModel(GL_FLAT);
glBegin(GL_QUAD_STRIP);
for (i = 0; i <= count; i++) {
glVertex3f(data[i % count][0], data[i % count][1], 0.0);
glVertex3f(data[i % count][0], data[i % count][1], thickness);
dx = data[(i + 1) % count][1] - data[i % count][1];
dy = data[i % count][0] - data[(i + 1) % count][0];
len = sqrt(dx * dx + dy * dy);
glNormal3f(dx / len, dy / len, 0.0);
glEnd();
glEndList();
glNewList(whole, GL_COMPILE);
glFrontFace(GL_CW);
glCallList(edge);
glNormal3f(0.0, 0.0, -1.0);
glCallList(side);
glPushMatrix();
glTranslatef(0.0, 0.0, thickness);
glFrontFace(GL_CCW);
glNormal3f(0.0, 0.0, 1.0);
glCallList(side);
glPopMatrix();
glEndList();
void
makeDinosaur(void)
extrudeSolidFromPolygon(body, sizeof(body), bodyWidth,
BODY_SIDE, BODY_EDGE, BODY_WHOLE);
extrudeSolidFromPolygon(arm, sizeof(arm), bodyWidth / 4,
ARM_SIDE, ARM_EDGE, ARM_WHOLE);
extrudeSolidFromPolygon(leg, sizeof(leg), bodyWidth / 2,
LEG_SIDE, LEG_EDGE, LEG_WHOLE);
extrudeSolidFromPolygon(eye, sizeof(eye), bodyWidth + 0.2,
EYE_SIDE, EYE_EDGE, EYE_WHOLE);
glNewList(DINOSAUR, GL_COMPILE);
glMaterialfv(GL_FRONT, GL_DIFFUSE, skinColor);
glCallList(BODY_WHOLE);
glPushMatrix();
glTranslatef(0.0, 0.0, bodyWidth);
glCallList(ARM_WHOLE);
glCallList(LEG_WHOLE);
glTranslatef(0.0, 0.0, -bodyWidth - bodyWidth / 4);
glCallList(ARM_WHOLE);
glTranslatef(0.0, 0.0, -bodyWidth / 4);
glCallList(LEG_WHOLE);
glTranslatef(0.0, 0.0, bodyWidth / 2 - 0.1);
glMaterialfv(GL_FRONT, GL_DIFFUSE, eyeColor);
glCallList(EYE_WHOLE);
glPopMatrix();
glEndList();
void
recalcModelView(void)
glPopMatrix();
glPushMatrix();
glRotatef(angle, 0.0, 1.0, 0.0);
glTranslatef(-8, -8, -bodyWidth / 2);
newModel = 0;
void
redraw(void)
if (newModel)
recalcModelView();
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
glCallList(DINOSAUR);
glutSwapBuffers();
void
output(int x, int y, char *string)
int len, i;
glRasterPos2f(x, y);
len = (int) strlen(string);
for (i = 0; i < len; i++) {
glutBitmapCharacter(GLUT_BITMAP_HELVETICA_18, string[i]);
char *helpMsg[] =
"Welcome to zoomdino!",
" Left mouse button rotates",
" the dinosaur.",
" Middle mouse button zooms",
" via overlay rubber-banding.",
" Right mouse button shows",
" pop-up menu.",
" To reset view, use \"Reset",
" Projection\".",
"(This message is in the overlays.)",
NULL
void
redrawOverlay(void)
if (help) {
int i;
glClear(GL_COLOR_BUFFER_BIT);
glIndexi(white);
for (i = 0; helpMsg[i]; i++) {
output(15, 24 + i * 18, helpMsg[i]);
return;
if (glutLayerGet(GLUT_OVERLAY_DAMAGED) || clearHelp) {
glClear(GL_COLOR_BUFFER_BIT);
clearHelp = 0;
wasFancy = 0;
} else {
if (fancy || wasFancy) {
glLineWidth(3.0);
glIndexi(transparent);
glBegin(GL_LINE_LOOP);
glVertex2i(anchorx, anchory);
glVertex2i(anchorx, pstretchy);
glVertex2i(pstretchx, pstretchy);
glVertex2i(pstretchx, anchory);
glEnd();
if (wasFancy) {
glLineWidth(1.0);
wasFancy = 0;
if (fancy)
glLineWidth(3.0);
glIndexi(red);
glBegin(GL_LINE_LOOP);
glVertex2i(anchorx, anchory);
glVertex2i(anchorx, stretchy);
glVertex2i(stretchx, stretchy);
glVertex2i(stretchx, anchory);
glEnd();
if (fancy) {
glLineWidth(1.0);
glIndexi(white);
glBegin(GL_LINE_LOOP);
glVertex2i(anchorx, anchory);
glVertex2i(anchorx, stretchy);
glVertex2i(stretchx, stretchy);
glVertex2i(stretchx, anchory);
glEnd();
glFlush();
pstretchx = stretchx;
pstretchy = stretchy;
void
defaultProjection(void)
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
vx = -1.0;
vw = 2.0;
vy = -1.0;
vh = 2.0;
glFrustum(vx, vx + vw, vy, vy + vh, 1.0, 40);
glMatrixMode(GL_MODELVIEW);
void
mouse(int button, int state, int x, int y)
if (button == GLUT_LEFT_BUTTON) {
if (state == GLUT_DOWN) {
glutSetCursor(GLUT_CURSOR_LEFT_RIGHT);
moving = 1;
begin = x;
} else if (state == GLUT_UP) {
glutSetCursor(GLUT_CURSOR_INHERIT);
moving = 0;
if (overlaySupport && button == GLUT_MIDDLE_BUTTON) {
if (state == GLUT_DOWN) {
help = 0;
clearHelp = 1;
rubberbanding = 1;
anchorx = x;
anchory = y;
stretchx = x;
stretchy = y;
glutShowOverlay();
} else if (state == GLUT_UP) {
rubberbanding = 0;
glutHideOverlay();
glutUseLayer(GLUT_NORMAL);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
#undef max
#undef min
#define max(a,b) ((a) > (b) ? (a) : (b))
#define min(a,b) ((a) < (b) ? (a) : (b))
wx = min(anchorx, stretchx);
wy = min(H - anchory, H - stretchy);
wx2 = max(anchorx, stretchx);
wy2 = max(H - anchory, H - stretchy);
ww = wx2 - wx;
wh = wy2 - wy;
if (ww == 0 || wh == 0) {
glutUseLayer(GLUT_NORMAL);
defaultProjection();
} else {
vx2 = wx2 / W * vw + vx;
vx = wx / W * vw + vx;
vy2 = wy2 / H * vh + vy;
vy = wy / H * vh + vy;
vw = vx2 - vx;
vh = vy2 - vy;
glFrustum(vx, vx + vw, vy, vy + vh, 1.0, 40);
glutPostRedisplay();
glMatrixMode(GL_MODELVIEW);
void
motion(int x, int y)
if (moving) {
angle = angle + (x - begin);
begin = x;
newModel = 1;
glutPostRedisplay();
if (rubberbanding) {
stretchx = x;
stretchy = y;
glutPostOverlayRedisplay();
void
reshape(int w, int h)
if (overlaySupport) {
glutUseLayer(GLUT_OVERLAY);
glViewport(0, 0, w, h);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
gluOrtho2D(0, w, 0, h);
glScalef(1, -1, 1);
glTranslatef(0, -h, 0);
glMatrixMode(GL_MODELVIEW);
glutUseLayer(GLUT_NORMAL);
glViewport(0, 0, w, h);
W = w;
H = h;
GLboolean lightZeroSwitch = GL_TRUE, lightOneSwitch = GL_TRUE;
void
controlLights(int value)
glutUseLayer(GLUT_NORMAL);
switch (value) {
case 1:
lightZeroSwitch = !lightZeroSwitch;
if (lightZeroSwitch) {
glEnable(GL_LIGHT0);
} else {
glDisable(GL_LIGHT0);
break;
case 2:
lightOneSwitch = !lightOneSwitch;
if (lightOneSwitch) {
glEnable(GL_LIGHT1);
} else {
glDisable(GL_LIGHT1);
break;
case 3:
defaultProjection();
break;
case 4:
fancy = 1;
break;
case 5:
fancy = 0;
wasFancy = 1;
break;
case 6:
if (!rubberbanding)
help = 1;
glutShowOverlay();
glutPostOverlayRedisplay();
break;
glutPostRedisplay();
int
main(int argc, char **argv)
//glutInit(&argc, argv);
glutInitDisplayMode(GLUT_RGB | GLUT_DOUBLE | GLUT_DEPTH);
glutCreateWindow("zoomdino");
glutDisplayFunc(redraw);
glutMouseFunc(mouse);
glutMotionFunc(motion);
glutCreateMenu(controlLights);
glutAddMenuEntry("Toggle right light", 1);
glutAddMenuEntry("Toggle left light", 2);
glutAttachMenu(GLUT_RIGHT_BUTTON);
makeDinosaur();
glEnable(GL_CULL_FACE);
glEnable(GL_DEPTH_TEST);
glEnable(GL_LIGHTING);
defaultProjection();
gluLookAt(0.0, 0.0, 30.0, /* eye is at (0,0,30) */
0.0, 0.0, 0.0, /* center is at (0,0,0) */
0.0, 1.0, 0.); /* up is in postivie Y direction */
glPushMatrix(); /* dummy push so we can pop on model
recalc */
glLightModeli(GL_LIGHT_MODEL_LOCAL_VIEWER, 1);
glLightfv(GL_LIGHT0, GL_POSITION, lightZeroPosition);
glLightfv(GL_LIGHT0, GL_DIFFUSE, lightZeroColor);
glLightf(GL_LIGHT0, GL_CONSTANT_ATTENUATION, 0.1);
glLightf(GL_LIGHT0, GL_LINEAR_ATTENUATION, 0.05);
glLightfv(GL_LIGHT1, GL_POSITION, lightOnePosition);
glLightfv(GL_LIGHT1, GL_DIFFUSE, lightOneColor);
glEnable(GL_LIGHT0);
glEnable(GL_LIGHT1);
glutInitDisplayMode(GLUT_SINGLE | GLUT_INDEX);
overlaySupport = glutLayerGet(GLUT_OVERLAY_POSSIBLE);
if (overlaySupport) {
glutEstablishOverlay();
glutHideOverlay();
transparent = glutLayerGet(GLUT_TRANSPARENT_INDEX);
glClearIndex(transparent);
red = (transparent + 1) % glutGet(GLUT_WINDOW_COLORMAP_SIZE);
white = (transparent + 2) % glutGet(GLUT_WINDOW_COLORMAP_SIZE);
glutSetColor(red, 1.0, 0.0, 0.0); /* Red. */
glutSetColor(white, 1.0, 1.0, 1.0); /* White. */
glutOverlayDisplayFunc(redrawOverlay);
glutReshapeFunc(reshape);
glutSetWindowTitle("zoomdino with rubber-banding");
glutAddMenuEntry("------------------", 0);
glutAddMenuEntry("Reset projection", 3);
glutAddMenuEntry("------------------", 0);
glutAddMenuEntry("Fancy rubber-banding", 4);
glutAddMenuEntry("Simple rubber-banding", 5);
glutAddMenuEntry("------------------", 0);
glutAddMenuEntry("Show help", 6);
} else {
printf("Sorry, no whizzy zoomdino overlay usage!\n");
glutMainLoop();
return 0;
File Name : nativtest.java
public class nativetest
     static
          System.loadLibrary("nativetest");
     public native String sayHello(String s);
     public static void main(String[] argv)
          String retval = null;
          nativetest nt = new nativetest();
          retval = nt.sayHello("Beavis");
          System.out.println("Invocation returned " + retval);
}So can anyone help me about this.
or if anyone have any kind of information realted to overlay on webbrowser then also can tell me...so it will helpfull 2 me.
Regards,
Ajay Patel                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

cgicmd.dat is not right place. let me put the whole code here. What I was referring was you need to have front page where you can display the reports links or if you are calling reports from forms you can use this.
A From Forms
1 formsweb.cfg
HTMLbeforeForm=<script>var windowHandle;function openWindowURL(URLString){windowHandle =window.open(URLString,"Forms","location=false,toolbar
=false,resizable,scrollbars");windowHandle.focus();}function closeWindow(){if (windowHandle && !windowHandle.closed){windowHandle.close();}el
se{}}</script>
2 from form use
web.show_document('javascript:window.openWindowURL("'||http://reports url ||'");','_self');
B From Home page /HTML page to call reports/any link
1. Replace ... with <
...html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script>var windowHandle;function openWindowURL(URLString){windowHandle =window.open(URLString,"Forms","location=false,toolbar=false,resizable,scrollbars");windowHandle.focus();}function closeWindow(){if (windowHandle && !windowHandle.closed){windowHandle.close();}else{}}</script>
</head>
<body>
<p align=center>
... a href="javascript:void(0)" onclick="openWindowURL('http://www.oracle.com')">Oracle</a>
<br><br><br><br><br>...a href="javascript:void(0)" onclick="openWindowURL('http://www.alexyscorp.com')">Alexys</a>
<br>
</p>
</body>
... html>
Message was edited by:
RajeshAlex
Message was edited by:
RajeshAlex
Message was edited by:
RajeshAlex
Message was edited by:
RajeshAlex
Message was edited by:
RajeshAlex

Similar Messages

  • How to remove the frame from an ActiveX Web Browser window

    I'm using a web browser window to display content from a web application in my LV front panel.  I'd really like the content to appear as native parts of the front panel rather than being inside a frame.  Is there a method that will allow me to hide or remove the frame from the ActiveX control?  I've tried to make it a custom control and edit the decoration out but that does not seem to work.
    Solved!
    Go to Solution.

    Quite right, in my 8.2 the web browser is already borderless (probably transparent). If your web browser window doesn't look good you should be able to insert it into the activeX one, the other should be a special case.
    /Y
    LabVIEW 8.2 - 2014
    "Only dead fish swim downstream" - "My life for Kudos!" - "Dumb people repeat old mistakes - smart ones create new ones."
    G# - Free award winning reference based OOP for LV

  • "safari web browser has stopped working" ... help?

    So a number of months ago (5, I believe) Safari Web Browser crashed and I tried opening it and a message popped up that said:
    +Microsoft Windows:+
    +Safari Web Browser has stopped working+
    +A problem caused the problem to stop working correctly. Windows will close the program and notify you if a solution is available.+
    Now up until the crash, I was extremely satisfied with Safari and it was my default internet browser. After I kept seeing this message when trying to start Safari, I decided to uninstall it and reinstall it, then tried repairing it several times. It kept showing the same message for a while so I decided to give up for a few months, so I tried again and the same thing happened. Once again I gave up and today I tried again when I updated my iTunes and that same message popped up and Safari didn't work.
    So I decided to post here to see if someone can help me figure out and fix the problem since I prefer that browser to most and never had any problems with it until I froze it and it crashed that number of months ago.
    Thanks and your help is greatly appreciated.

    Hi,
    I'm afraid I'm not familiar with Vista, but in XP the Safari preferences etc. are stored in this location:
    C:\Documents and Settings\YourUsername\Application Data\Apple Computer\Safari\
    If you know where the equivalent Vista location is, rename the Safari directory to be Safari_backup and then retry launching the application to see if one of the files in there is corrupt and causing Safari to crash.
    If it does work after doing that, try moving the files one by one back from the Safari_backup directory to the newly created Safari directory, restarting Safari each time, until you find the problematic one.

  • I recently purchased an older model computer with Microsoft Me from 2000. It doesn't have a web browser and I would like to download Firefox. Where do I find the download compatible with Windows Me and how do I download it?

    I have looked in your web site product downloads and I am unable to find a web browser download that is compatible with Windows Me from 2000. What am I missing? Is there a web browser download that is even compatible? It is just a second computer for my grandsons to use and do homework on, but I am unable to get up the internet.

    Firefox 2.0.0.20 is the last ever version of Firefox for Win98 / SE / ME.
    Get it from here:
    ftp://ftp.mozilla.org/pub/firefox/releases/2.0.0.20/win32/en-US/

  • I downloaded an update for my Safari web browser to "snow leopard". When I click on the .dmg file, a window opens up with a .pkg file but when I click on the .pkg file I get a prompt saying that it doesn't know what program to open it with. with a

    I downloaded an update for my Safari web browser to "snow leopard". When I click on the .dmg file, a window opens up with a .pkg file but when I click on the .pkg file I get a prompt saying that it doesn't know what program to open it with.

    I suspect if you're trying to open a file in 08 that's been opened in 09 the file has been updated to 09 and will not open in 08.

  • How to open a web browser from an windows phone app

    Hi everyone,
    I am pretty new to Windows Phone 7, and now what I am trying to do is to create a simple app. When a user click to start this app, a browser will open and show the content of a webpage from a specific address.
    I tried to use a webbrowser object, but it seems like that doesn't sport cookies. So I need my app to open a real web browser (maybe IE mobile) to do the job.
    Thank you.

    copying from stackoverflow: "If you want to embed a browser window inside your application then use  the WebBrowser control.  Add an instance of the WebBrowser control to  your form then you can reference it in code using the name you
    give  it.  (Default name is "webBrowser1")"
    Microsoft MVP J# 2004-2010, Borland Spirit of Delphi 2001

  • Visual Studio 2013. Viewing a PDF file via the Web Browser control in Windows 8.1

    I am writing a Windows Forms application in which I need to view PDF files via the Web Browser control. When the control is given the Navigate() command, Windows takes over and asks which program I want to open the file with. All was fine with VS 2010 and
    XP. I have un-installed "PDF Complete", which was the default PDF viewer, but I now get asked for an alternative.
    Thanks in advance.
    Mike Saunders

    Hi Mike,
    It seems that we could use Internet Explorer to open a local .PDF file if it has the Adobe Reader. I doubt that the web control would be related to it. Like the MVP's suggset in the following thread, maybe it would be related
    to certain plug-in tools in your side like the adober reader.
    Reference:
    https://social.msdn.microsoft.com/Forums/en-US/a717117e-41ae-4775-9c28-d5a1042b396e/pdf-is-not-opening-in-web-browser-control-in-vbnet?forum=vbgeneral
    Best Regards,
    Jack
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • "Cannot use adobe reader to view pdf in your web browser" error in Windows 7 and Acrobat pro 8.1.7

    I get the error "Cannot use adobe reader to view pdf in your web browser.  Reader will now exit.  Please exit your browser and try again" in Windows 7 x32 and Windows 7 x64 with Acrobat pro 8.1.7.  This happens when trying to open  a PDF file in Internet explorer 8.0.760 or when I open a PDF in Quickbooks 2008.  If I answer ok or cancel the file opens normally.  If I open acrobat 8 first then the pdf files open as expected.  I also tried a copy of Acrobat reader with no difference in the outcome.  Since this happens on two different computers one fresh copy of windows 7 x64 the other an upgrade to windows 7 x32 and they used to work before the change to windows 7, I assume there is some kind of incompatibility with windows 7 and acrobat.  Is this a known issue and will it be fixed in an update to acrobat in the near future?

    tvandersluijs - I'm sorry if that screwed up your machine however:
    1. What version of Adobe Reader are you using because as you can see the registry entry is for Adobe Reader 9, if ur using Adobe Reader 8 then u need to specify ur version as PAllens entry suggested - "E.g. "C:\Program files\Adobe\Acrobat [version]\Reader\AcroRd32.exe""
    2. I've used this solution significantly because I have come across this specific issue for multiple users.
    3. All the registry entry does is tell Windows what program to use by default to open/view PDF documents.
    My intention wasn't to screw up ur machine or anybody elses as I said I've used this solution many times however what I've should gave is the disclaimer to backup ur registry before u make mods so u can revert back in case. Also the ony other thing I can think of is that this solution was for Windows XP using registry editior 5, I'm noticing that the title of this thread is Windows 7.

  • Getting out of memory exception while loading images in web browser control one by one in windows phone 8 silverlight application?

    Hi, 
    I am developing a windows phone 8 silver light application . 
    In my app I am displaying images in web browser control one by one , those images are the web links , the problem is after displaying 2 to 3 images I am getting out of memory exception .
    I searched for this exception how to over come , everybody are saying memory profiling ,..etc but really I dont know how to release the memory and how to clear the memory .
    In some sites they are adding this
    <FunctionalCapabilities>
    <FunctionalCapability Name="ID_FUNCCAP_EXTEND_MEM"/>
    </FunctionalCapabilities>
    by doing this am I free from out of memory exception?
    Any help ,
    Thanks...
    Suresh.M

    string HtmlString = "<!DOCTYPE html><html><head><meta name='viewport' content='width=device-width,initial-scale=1.0, user-scalable=yes' /></head>";
    HtmlString = HtmlString + "<body>";
    HtmlString = HtmlString + "<img src=" + source +" />";
    HtmlString = HtmlString + "</body></html>";
    innerpagebrowser.NavigateToString(HtmlString);
    that image source is the web link for example www.sss.com/files/xxx/123.jpg .
    Note this link is not real this is sample and image is of size 2071X3097
    Suresh.M

  • Why cant i download itunes on my windows 7 pc? i used to have it once but it was not updated for a while and got deleted...i have tried to download it on other web browser but all i got was "thanks for downloaing itunes" and nothing happened

    why cant i download itunes on my windows 7 pc? i used to have itunes on my pc once but it was not uploded for a while and got deleted...and now i have tried to download it and all i got was "thanks for download itunes"...after that i have tired to dwnload it from another web browser and ive got the same thing.....!!

    Perhaps try downloading and saving a copy of the installer to a different PC. (If you're on a 32-bit Windows system, try to download on a different 32-bit Windows system.) Copy the iTunesSetup.exe installer to an external hard-drive, or a large-enough thumb drive or burn it to a CD-R. Carry the installer back to your PC, copy the installer to your hard drive. (Don't run the install from the ExHD, thumb or CD-R.) Start the install by doubleclicking the iTunesSetup.exe file.

  • Issues showing PDF files in web-browser (Windows 7 x64, 32-bit version of AdobeReader X)

    I'm not sure if this is the right way to share my experience, but at least I know Google will discover this thread eventually and maybe someone else will find what I have been looking for the past 3 hours
    I'm deploying the 32-bit based AdobeReader X (http://www.adobe.com/support/downloads/detail.jsp?ftpID=4950) to Windows7 32-bit and 64-bit based machines. This is a MSI deployement done through our Active Directory. Everything goes well - no errors. Except for the x64-based machines having trouble showing PDF-files in the web-browser.
    I used Adobe Customization Wizard X to customize our MSI installation - this showed out to be the solution once again.
    Common for the installation on Windows7 32-/64-bit were that the value in the registry database for HKCR\Software\Adobe\Acrobat\Exe (Default) was set to "C:\Program Files\Adobe\Reader 10.0\Reader\AcroRd32.exe". This is valid for the 32-bit installation as Program Files is situated in C:\Program Files, but since it's a 32-bit edition of AdobeReader that I'm installing on the 64-bit based system as well, it's installed in C:\Program Files (x86) and the reference in the registry database to "C:\Program Files\Adobe\Reader 10.0\Reader\AcroRd32.exe" is therefore not valid - which explains why PDF files could not be displayed in the web browser. Changing the registry to "C:\Program Files (x86)\Adobe\Reader 10.0\Reader\AcroRd32.exe" solved it. Now this is a manual solution which might be useful on 1-2 machines but on a bigger scale it's not the right way to do it.
    I could change it with a batch/vbs script but still this is only a solution of the symptom and not a solution to the core issue. I therefore focused on Adobe Customization Wizard X again.
    The problem was easily solved. I opened the MSI file, loaded the transform file that I've made previously. Went to Registry > HKEY_CLASSES_ROOT\Software\Adobe\Acrobat\Exe . I then changed the (Default) value from "C:\Program Files\Adobe\Reader 10.0\Reader\AcroRd32.exe" to "[INSTALLDIR]Reader\AcroRd32.exe", generated the MST file and replaced my current one for distribution. Problem solved! :-) The entry in the registry now shows : "C:\Program Files (x86)\Adobe\Reader 10.0\Reader\AcroRd32.exe" and PDF files are open without any issues.
    I hope someone can save a bit of time on this one.
    Best regards!
    Alex Mikkelsen

    I was able install and view the files in adobe reader 10.1.1 and in web browser window 7 64 bit machine.  But when I go to Edit-preferences-internet and  unchecking "display PDF in Browser" , I am not able to view the pdf files in ie 9 browser.  I have used this javscript to check for pdf version.
    Immediately after installing adobe--
    when I do adobe test in ie 9---https://courses.worldcampus.psu.edu/public/diagnostics/Acrobat.html--  launches a test pdf file--Acro_Test.pdf
    After unchecking-- it stays in the  https://courses.worldcampus.psu.edu/public/diagnostics/Acrobat.html instead of showing test pdf file--Acro_Test.pdf
    Tried to go back to "display PDF in Browser"--it is showing it is checked(eventhough I did not check it)
    and in ie
    it stays in the https://courses.worldcampus.psu.edu/public/diagnostics/Acrobat.html instead of showing test pdf file--Acro_Test.pdf

  • PDF-in web browser - open link in new window

    I've done a lot of searching for JavaScript code to solve this: if a PDF is being viewed in a web browser, and the user clicks a link in that PDF, the default is to have the linked page replace the original. I would like it to open a new window in the browser. E.g., if there is a link in the PDF to abc.com, then when the user clicks that link, the original PDF stays open and a new window opens to abc.com. Any help?

    In the JavaScript for Acrobat API Reference look up the app.launchURL() method. The second parameter is a boolean value that describes whether or not you want the URL to open in a new window.

  • How I make the Web Browser Control to display a PDF in Windows 8

    I have an application that run ok in previous version of windows,  Where I can load a PDF file and the web browser control automatically use the Reader OCX of Adobe,, After Install windows 8 and download the reader for windows 8 still get and (X) where the document should be displayed.  I use the following command in my program to force the windows 8 to use the same web browser (10) in my web browser control.
    WebBrowser1.Navigate(DocumentName,"",Nothing,"User-Agent:Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0)")
    But still get an  (X). IF I use the URL that is in the property of the (X) and paste in my regular IE10, it open the PDF file.

    Adobe Reader Touch is a Windows Store app and does not install a browser add-on/plug-in for "in-browser" PDF viewing.
    You can either
    Install Adobe Reader XI (desktop app) which installs browser plug-ins for Microsoft IE and Mozilla Firefox
    Use Google Chrome, which has a built-in PDF viewer (enabled by default)

  • Why does email hypertext in PDF open web browser window in addition to email client?

    Using FrameMaker 10, I created the following hypertext: message URL mailto:[email protected] I then printed to PDF. When I click the link in the PDF it opens an email client message window (what I want) but also opens a web browser window with mailto:[email protected] in the address bar (what I don't want). Why would it open both? I don't know if this is a Frame issue (more likely), an Acrobat issue (less likely), or a browser issue (not likely). I hope I'm just missing something easy here.

    Should have given the following info earlier...running Win 7 64-bit with Outlook 2010 and Acrobat X Pro. That being said the path to verify "mailto" is different but it is set up fine. Same with Acrobat X Pro...settings are fine.
    Also, in reply to Harry28586 this is happening with Firefox, not IE (I should have mentioned that as well).
    I've found plenty of threads searching online regarding issues with email links in Acrobat on Win 7 machines with Outlook...many suggest editing the registry. I have no problem doing that but this is a work laptop and we have a don't-fix-it-yourself policy. So I'll keep looking. Thanks for all the suggestions.

  • Open a URL in default web browser's new window

    HI
    As i have posted a question in my previous post
    http://forum.java.sun.com/thread.jspa?threadID=5235957&tstart=200
    I have formulate a code for that as follows :->
    String url= "http://www.google.com";
    String os = System.getProperty("os.name").toLowerCase();
            Runtime rt = Runtime.getRuntime();
            try{
                   if (os.indexOf( "wie" ) >= 0) {
                                        // this doesn't support showing urls in the form of "page.html#nameLink"
                rt.exec( "rundll32 url.dll,FileProtocolHandler " + url);
                 } else if (os.indexOf( "mac" ) >= 0) {
                     rt.exec( "open " + url);
                 } else if (os.indexOf( "nix") >=0 || os.indexOf( "nux") >=0) {
                                  // Do a best guess on unix until we get a platform independent way
                                    // Build a list of browsers to try, in this order.
               String[] browsers = {"epiphany", "firefox", "mozilla", "konqueror",
                                              "netscape","opera","links","lynx"};
         // Build a command string which looks like "browser1 "url" || browser2 "url" ||..."
                    StringBuffer cmd = new StringBuffer();
                  for (int i=0; i<browsers.length; i++)
              cmd.append( (i==0  ? "" : " || " ) + browsers[i] +" \"" + url + "\" ");
                      rt.exec(new String[] { "sh", "-c", cmd.toString() });
                              }catch (IOException e){
                                 System.out.println("OS not compatible");
                                         }but it opens a page in already last opened window...and over writes it ....
    what i required to open it in a new window of the web browser
    so please suggest me the way to do it....
    Thanks
    vivek
    .

    you can open browsers new window using jdic...
    unfortunately Desktop.browse() doesnt allow to do that, but we can do that another way:
            String urlToOpen = "http://forum.java.sun.com/thread.jspa?threadID=5236723";
            BrowserService browserService = (BrowserService) ServiceManager.getService(ServiceManager.BROWSER_SERVICE);
            try {
                // exactly "_blank" allow to open necessary url in a new window :)
                browserService.show(new URL(urlToOpen), "_blank");
            } catch (LaunchFailedException e) {
                e.printStackTrace();
            } catch (MalformedURLException e) {
                e.printStackTrace();
            }

Maybe you are looking for

  • How to make a field un editable in one screen

    Dear Experts, I want to know how to make one field as un editable in one screen.I will explain in detail. I want to make "Reconciliation account" field as un editable in XD02 t-code. Regards, Surendra babu.

  • Bash-completion issues after bash upgrade

    Hi. Is it only me or bash-completion stopped working after bash upgrade (3.2.017-2 -> 3.2.025-1)? I also had to remove ". /etc/profile" from all existing .bashrc files to have it properly interpreting /etc/profile and /etc/profile.d/* files, which wa

  • Domain Controller Upgrade 2008R2 to 2012R2

    Hi One of my customers has an environment with 3 domain controllers. Primary DC resides on premise as well as the secondary. One more Additional DC's resides on DR site and are all running Windows Server 2008 R2. We have now decided to upgrade all of

  • Question POS point to point with no APS

    One side POS1/0/0 SECTION LOF = 0 LOS = 0 BIP(B1) = 0 LINE AIS = 0 RDI = 0 FEBE = 0 BIP(B2) = 0 PATH AIS = 1 RDI = 2 FEBE = 1119 BIP(B3) = 463 PLM = 4 UNEQ = 0 TIM = 0 TIU = 0 LOP = 0 NEWPTR = 0 PSE = 0 NSE = 0 Active Defects: None Active Alarms: Non

  • Audio file "open with" default setting

    Hi, Each time i export a file from Logic, i see the Logic logo, and it says "open with" Logic if i make get info. I'd like to export audio files that would open with QuickTime as the default application. Where is that preference located ? thanks