Questions tagged [new-window]

224 questions
1
vote
1 answer

How Open a new Window in Mainwindow with PyQT5 in Python?

im totally new when it comes to programming. I want to create a Flashcard Application for Windows. So far i can tell my "programm" works fine, but i cant manage to open a new Window when i click on my widgets. I need to know how i can write the code…
MrZellular
  • 11
  • 2
1
vote
1 answer

display pdf in sepearate window with python tkinter

I have a function checking if a tkinter listbox element is a pdf file. If so, it should be shown via "ShowPdf" in a new window. I only want to view the one pdf I have chosen. Using the function once works fine. But if I switch to another listbox…
Joe
  • 15
  • 6
1
vote
0 answers

How to switch to a window (NOT TAB) in karate?

I have PayPal payment method in my application and on click of the PayPal button, it opens in a new window to enter the credentials I am not sure how to switch to that window in Karate. Can someone help me on this? I assume switchPage() works only…
1
vote
2 answers

ASP.NET I'm creating movie website in C#. My issue is making top navbar buttons target/open in new tab

ASP.NET I am trying to create a movie website in C#. I am having issues with making the nav bar buttons at the top target and open in a new tab. This is what my nav bar code looks like. Where am I going wrong? Button names: Home - Top Movies - All…
aenglish
  • 11
  • 4
1
vote
1 answer

JavaScript problem displaying a new window from client-side code

In Chrome and Edge this simple example results shows a "Click Me!" button that opens a new tab. function test() { var myWindow = window.open("", "_newtab"); myWindow.document.write("hello world"); }
estimpson
  • 113
  • 1
  • 6
1
vote
1 answer

service now giving empty referrer in IE11

trying to see referrer for IE11 by simple code ,but not working with ServiceNow. this code working in chrome but giving empty referrer in IE. here is the code ,please suggest me. First Web Application
1
vote
0 answers

RStudio: Open Source File in New Window Using rstudioapi / navigateToFile

I have a set of helper functions that open groups of related source files. This works great, except for one issue: I would like to open the files in a new window. Here's basic code: ..open.source.files <- function(Group = "OUT_CONFIG"){ …
HoneyBuddha
  • 748
  • 8
  • 15
1
vote
0 answers

How to open props.history.push() in a new window with a state

I want to open my Form Builder preview in a new window on button click. I used the local storage method. I mean I stored the state in local storage then push to the new route and retrieve it. But I am not convinced about the method. Currently, my…
moshfiqrony
  • 4,303
  • 2
  • 20
  • 29
1
vote
2 answers

Showing Crystal Report on a WPF Application(Visual Studio 2008)

In Windows Form application, it was as trivial as Creating a Form and bind the RPT file to the Form. Looks like this option isn't possible with WPF. I would like to show a Crystal Report on a new Window when a button is clicked. How to achieve this…
Shamim Hafiz - MSFT
  • 21,454
  • 43
  • 116
  • 176
1
vote
0 answers

Opening new tab using window.open(), but URL redirects to another page and losing handle

I am using the following code: somepage redirects to another…
user3377627
  • 363
  • 3
  • 7
  • 22
1
vote
1 answer

How to verify element displays in new window after clicking a link on the main window

I am using Cypress to click a link on the Homepage which opens the respective page in the new window. I am not able to identify any element on this page. I am doing this to verify that the click opens the correct page. I saw the link: Access a new…
Sheetal
  • 11
  • 2
1
vote
1 answer

Opening new Window having grid layout in Pyqt5

I know this question has been asked many times but every time i see different case . 1st problem: I can't open new window (Window2) having grid layout. I am trying to open a new window (Window2) in pyqt , this window(Window2) has grid layout . To…
Girl
  • 49
  • 12
1
vote
1 answer

How to open a new popup and change it to new tab

I want to open a new window but instead of having that window as like like it does, i want it to make it as a tabbed view. I have tried the following: var strWindowFeatures = "location=yes,height=570,width=520,scrollbars=yes,status=yes"; var URL =…
mega-crazy
  • 838
  • 2
  • 17
  • 36
1
vote
1 answer

open google map in a new window reverse geocoding

I want to open a new tab showing the google map with specific marker styling and functionality. I am using reverse geocoding since I have the longitude and latitude data. I am able to open the map in same page but not able open it in a new…
1
vote
0 answers

React with redux new window and media query

I use react with redux. In one of my components I open new window by: import { store } from "index" this.detachedWindow = window.open(); this.detachedWindow.store = store; So I have two windows open with same store. The problem is when I open…
Patryk Imosa
  • 785
  • 2
  • 10
  • 31