Questions

Open Excel file for reading with VBA without display

I want to search through existing Excel files with a macro, but I don't want to display those files when they're opened by the code. Is there a way to have them open "in the background", so to speak?...

14 Jan at 08:47

How do I include a file over 2 directories back?

How do you include a file that is more than 2 directories back. I know you can use `../index.php` to include a file that is 2 directories back, but how do you do it for 3 directories back? Does this m...

13 Nov at 18:46

RSA Public Key format

Where can i find some documentation on the format of an RSA public key? An RSA public key formatted by `OpenSSH`: > ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQB/nAmOjTmezNUDKYvEeIRf2YnwM9/uUG1d0BYsc8/tRtx+RGi7...

How to add a line break in an Android TextView?

I am trying to add a line break in the TextView. I tried suggested \n but that does nothing. Here is how I set my texts. ``` TextView txtSubTitle = (TextView)findViewById(r.id.txtSubTitle); txtSubTi...

21 Jul at 06:54

What does the "+" (plus sign) CSS selector mean?

For example: ``` p + p { /* Some declarations */ } ``` I don't know what the `+` means. What's the difference between this and just defining a style for `p` without `+ p`?

28 Nov at 17:25

What is the difference between active and passive FTP?

Can someone tell me what is the difference between active and passive FTP? Which one is preferable?

7 Apr at 13:2

Select first empty cell in column F starting from row 1. (without using offset )

This is one query that I am really confused with. Coz I have looked for this so many times but I always find the codes related to finding the last used or first non empty cell. Tried at below codes. d...

9 Jul at 19:34

How to get relative path of a file in visual studio?

I am trying to get the path of an image file which I added in solution explorer in Visual Studio, but I couldn't get the relative path of that image. H is the file structure of my project: I can ge...

18 Sep at 05:52

Pandas Merging 101

- `INNER``LEFT``RIGHT``FULL``OUTER``JOIN`- - - - - - `merge``join``concat``update` ... and more. I've seen these recurring questions asking about various facets of the pandas merge functionality. Most...

31 Jul at 17:38

How do I create a numpy array of all True or all False?

In Python, how do I create a numpy array of arbitrary shape filled with all `True` or all `False`?

SQL Error: ORA-00942 table or view does not exist

I use SQL developer and i made a connection to my database with the system user, after I created a user and made a another connection with that user with all needed privileges. But when I try to proc...

1 Aug at 04:46

Open a Web Page in a Windows Batch FIle

I have a that does a bunch of things and at the end needs to to a page. Is there a way to, in essence, call `ShellExecute` on a to open the web page? Windows Command Prompt

6 Oct at 20:39

VSCode Change Default Terminal

I am using Visual Studio Code on my Windows 10 PC. I want to change my default terminal from Windows PowerShell to Bash on Ubuntu (on Windows). How can I do that?

how to access iFrame parent page using jquery?

I have an iframe and in order to access parent element I implemented following code: ``` window.parent.document.getElementById('parentPrice').innerHTML ``` How to get the same result using jquery? ...

5 Jul at 13:43

How to get First and Last record from a sql query?

In PostgreSQL I run a query on it with several conditions that returns multiple rows, ordered by one of the columns. Example: ``` SELECT <some columns> FROM mytable <maybe some joins here> WHERE <var...

10 Apr at 21:55

C dynamically growing array

I have a program that reads a "raw" list of in-game entities, and I intend to make an array holding an index number (int) of an indeterminate number of entities, for processing various things. I would...

21 Aug at 03:23

What is the C# Using block and why should I use it?

What is the purpose of the `Using` block in C#? How is it different from a local variable?

26 Feb at 21:0

What are the differences between WCF and ASMX web services?

I am totally confused between WCF and ASMX web services. I have used a lot of web services in my earlier stage, and now there is this new thing introduced called WCF. I can still create WCF that fun...

20 Aug at 02:45

get current date with 'yyyy-MM-dd' format in Angular 4

How i can get the current date with a specific format 'yyyy-MM-dd', for today by example i with that the result be: '2018-07-12', with using just the command ``` myDate = new Date(); ``` thanks a l...

12 Jul at 07:42

Change image source with JavaScript

So I'm new with JavaScript (this is actually my first attempt to make something work) and I'm having a bit of trouble. I thought I had enough knowledge to make this work, I've even googled for tutoria...

13 Feb at 21:49

Android ADB devices unauthorized

### Configuration: - - - ### Problem I installed the Samsung drivers as it is said to do. When I run the ADB devices command, it said . ### Already tried: 1. I've done everything that'...

6 Oct at 08:41

How to reference Microsoft.Office.Interop.Excel dll?

I had developed a system that deals with excel sheets in 2006 using MS VS 2005. Now, I can not use the same reference with MS VS 2012. ``` var app = new Microsoft.Office.Interop.Excel.Application();...

How to Git stash pop specific stash in 1.8.3?

I just upgraded Git. I'm on Git version 1.8.3. This morning I tried to unstash a change 1 deep in the stack. I ran `git stash pop stash@{1}` and got this error. > fatal: ambiguous argument 'stash@1...

22 Aug at 11:21

How do I interpret precision and scale of a number in a database?

I have the following column specified in a database: decimal(5,2) How does one interpret this? According to the properties on the column as viewed in SQL Server Management studio I can see that it m...

27 Dec at 20:55

Display HTML form values in same page after submit using Ajax

I have a HTML form and I need to display the form field values below the form after user clicks the submit button. How can I do this using HTML and JavaScript Ajax?

5 Apr at 12:5