PopUp Variable Window not appearnig in Toad - toad

I using TOAD 9.7.2 with oracle10g database . Unexpectedly popup windows of variables is not appearing upon execution of code for passing parameters and showing empty results.
What could be the reason?
Regards

Check the TOAD options: View -> Toad Options... and make sure that the Prompt for substitution variables is checked in the Execute/Compile section.

Related

Intellisense autocompletion of expressions to watch in watch window or debug console

Is it possible while debugging, and a breakpoint has been hit, to autocomplete variables in the current scope in the Debug Console or the Watch Window?
An example gif is attached of where I would hope to get some auto-completion suggestions.
Essentially, on typing just long, I would like to autocomplete to work here so that it suggests longish_variable_name that I can then possibly tab complete.
VSCode has, by default, CtrlSpace mapped to triggering autocompletion suggestions, but this only seems to work in the editor window.
Use the variable once in the debug window, and auto-complete will do the rest of the work for you ever after (given the variable name shouldn't be changed, or you need to use it in the debugger console again to get auto-completion suggestion.)
I have a test variable named very_very_long_var — but the debug window didn't suggest anything on the first go. It was presented once I used it the first time in that window.

How can I Close a popup window, after execute Update SQL. (Oracle APEX 21.1)

I created a pop-up page. That pop-up window has a radio button, a text box, and an execute button. I want to work that page working like... when pressing the button, run a update SQL with the values of the radio button and text box, and close itself.
I tried that answer in the following link. But the pop-up page just reloaded and the page stayed open. How to close popup window in Oracle-apex?
If possible, I would like to validate the value of the text box. If it was an incorrect value then break the process with a message. If path that validation, run a update SQL and close the pop-up window.
Thank you for your kindness for read this confusing question.
You should be using a "Close Dialog" process type after your Save Process.
Make sure that you also set the server side condition accordingly so that the dialog only closes after your save process.
I GOT RESOLVED IT!
Not use any close method, redirect util is fine work like this APEX_UTIL.REDIRECT_URL (APEX_PAGE.GET_URL(p_page => 7));
Thank you to all ppl for look this page :)

TOAD exiting dialogue box?

I started TOAD the first time and when I exited it a dialogue box appeared asking for a choice. I didn't really read it but just pressed ok anyway. After restarting TOAD and exiting it again the dialogue box didn't show up. What dialogue was it and how can I make it appear again?
It was most likely the Toad Improvement Program participation opt-in.
In Toad 13.1 and newer...
Launch Toad's Options window from the main View menu
Select the Online node on the left
Review the Toad Improvement Program groupbox on the right and set your preference accordingly
In Toad 13.0 and older...
Choose Product Improvement Program from Toad's Help menu
When opted in Toad sends anonymous statistics to track basic feature usage and exception logs.
Looks like "Confirm before closing Toad" option; it is located in Toad Options under the "General" node. I guess it is now unchecked.

Variable Code Completion in Netbeans without Ctrl+Space

Is it possible to enable auto code completion for variables in Netbeans?
I see a similar question here, but it doesn't work on variables (correct me if I'm wrong).
This is my current code completion setting:
This worked for me:
In NetBeans select Tools -> Options -> Editor -> Code Completion tab -> Language: C/C++
As given in this SO answer, set the content of the Auto Popup Triggers... field to contain the following string:
.;->;.;->;::;new ; ;a;b;c;d;e;f;g;h;i;j;k;l;m;n;o;p;q;r;s;t;u;v;w;x;y;z;
Click the Apply button, then click OK.
Here's a screenshot:
The change should be immediately effective. After doing that you can type the first letter of any variable in your C++ source code and eligible variables should be listed in the prompt which automatically appears.
The screen shot below is a contrived example where there are several variables starting with 's'. All I did was type the letter 's' and the prompt appeared instantly, listing all of the local and global variables starting with 's':

How to make SAS to open with maximized window?

How to make SAS to open with the main window and the editor window automatically maximized?
One way to do this is to push the command AWSMAXIMIZE at startup. You could place this statement in your autoexec.sas
dm "awsmaximize";
I was also able to do this by editing the start menu entry and adding to the end of the SAS command: -initstmt "dm 'awsmaximize';"
More here: http://support.sas.com/documentation/cdl/en/hostwin/63285/HTML/default/viewer.htm#a000115355.htm#win-af-wincmds
Not sure if you can do this automatically at startup, but you can set a hotkey to do it.
Tools -> Options -> Keys
Choose a key and type this into the command:
AWSMAXIMIZE ON; WPGM; ZOOM
"AWSMAXIMIZE ON" is the SAS for Windows command to maximize itself.
"WPGM" is the command to bring focus to the Enhanced Program Manager
"ZOOM" is the command to maximize the in-focus window.