This page is a NO-INDEX summary of comments posted in this blog.
Total 849 Comments (20/34 Pages) - Newer Comments - Older Comments
476. 2017-01-28 17:55:45 kamrun naher Comments on Coding Exercise - Timus Online Judge - 1000 - A+B Problem - C/C++ solutions with Assembly:
#include
main ()
{
int a,b;
scanf("%d%d",&a,&b);
printf("%d",a+b);
return 0;
}
477. 2017-01-27 10:59:13 ACMer Comments on Lost Era, Microsoft DOS, .COM Assembly, Print Letters using Loop:
not sure what do you mean
478. 2017-01-27 10:58:47 ACMer Comments on Lost Era, Microsoft DOS, .COM Assembly, Print Letters using Loop:
16 bit DOS only has a few registers, so for nested loops, it is better to create a sub routine e.g. push and pop.
479. 2017-01-27 10:34:54 Sammy Comments on Lost Era, Microsoft DOS, .COM Assembly, Print Letters using Loop:
how about loop in slant?
480. 2017-01-23 22:33:58 ACMer Comments on How to Compute Numerical integration in Numpy (Python)?:
Good work, thank you!
481. 2017-01-23 21:39:17 Nico Schlömer Comments on How to Compute Numerical integration in Numpy (Python)?:
I recently created quadrature, a numerical integration package for Python https://github.com/nschloe/quadrature. It contains many schemes for 1D-integration, so perhaps that could be of interest here.
482. 2017-01-23 09:59:40 ACMer Comments on Using Absolute Keyword in Delphi to Remove Unnecessary Assignment Function:
Glad this is helpful to you.
483. 2017-01-23 08:42:12 Adrian Grayson Comments on Using Absolute Keyword in Delphi to Remove Unnecessary Assignment Function:
This is a great article mate 🙂
484. 2017-01-17 13:27:45 ACMer Comments on Duplicate a MySQL table - Copy Table / Duplicate Database / PHP Script:
sorry. Cpanel is not my expertise... I only know how to do it at command line/console
485. 2017-01-17 13:24:58 Gauri K Comments on Duplicate a MySQL table - Copy Table / Duplicate Database / PHP Script:
I just need to make a copy of database on same server.I have cpanel. can You please tell from where I can do this? 🙁
486. 2017-01-17 13:21:27 ACMer Comments on Duplicate a MySQL table - Copy Table / Duplicate Database / PHP Script:
This generally means that you don't have permissions, you could ask your Database Administrator to grant you permissions on e.g. creating new database.
487. 2017-01-17 13:19:11 Gauri K Comments on Duplicate a MySQL table - Copy Table / Duplicate Database / PHP Script:
I am getting access denied for the new database. can you guide me with this?
488. 2017-01-10 09:29:07 ACMer Comments on How to Run HTA as Administrator (Elevation)?:
Thanks! Problem fixed.
489. 2017-01-10 07:58:33 Guest Comments on How to Run HTA as Administrator (Elevation)?:
Thanks for the tip! A small correction: there are wrong double quote symbols in the post, I had to re-type them from keyboard to get it to work.
490. 2017-01-06 18:52:11 ACMer Comments on How to Fix - Visual Studio Reports "is not a valid value for property Width" and Fails to Start?:
Thanks!
491. 2017-01-06 17:51:00 bob Comments on How to Fix - Visual Studio Reports "is not a valid value for property Width" and Fails to Start?:
Put the following in a file called Fix-VS2015.reg
___________________________________________________
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\14.0]
"MainWindow"="1 5 15 1689 1094 1"
492. 2017-01-04 13:27:09 ACMer Comments on Make Sure Run Script under 32-bit cscript.exe or wscript.exe when 32-bit COM object is required.:
I guess the only way you can do is to install 32-bit Excel instead of 64-bit.
493. 2017-01-04 13:07:20 Shobhit Comments on Make Sure Run Script under 32-bit cscript.exe or wscript.exe when 32-bit COM object is required.:
No, i really need to open an excel file and run the vbscript as macro. The macro is actually for fetching data from HP ALM tool. So for that i must login first. And thats where i am getting stuck.
494. 2017-01-04 12:38:14 ACMer Comments on Make Sure Run Script under 32-bit cscript.exe or wscript.exe when 32-bit COM object is required.:
You can use the WScript.Shell COM object to Run the external command, and specify the 32-bit of cscript.exe e.g. C:\Windows\SysWow64\cscript.exe However, this requires the scripts written in external *.vbs file.
I guess that is not completely what you want e.g. You might want to interact with the current open sheet in Excel. However, as independent *.vbs script files, you can also create Excel.Application object to handle the excel files without requiring Excel to open.
495. 2017-01-04 12:13:23 Shobhit Comments on Make Sure Run Script under 32-bit cscript.exe or wscript.exe when 32-bit COM object is required.:
Hi,
I have an excel macro developed in 32 bit version of Office. Now i want the same macro to run in the 64-bit version of office. How do i do that? How do i make the excel macro run on 32-bit version of vbscript?
496. 2016-12-28 19:59:03 ACMer Comments on Does TeamViewer Support Multi Screens (Monitors)?:
No, I am afraid this is not possible via any software . Why not just get another standard monitor?
497. 2016-12-28 19:03:44 Lu Comments on Does TeamViewer Support Multi Screens (Monitors)?:
I want to do this differently. I have two laptops side-by-side and I want the inferior laptop to work as a second screen. The only way to connect these two devices is via TeamViewer, so I ask how can I set it such as to instead of controling the other laptop, it runs as though it was a second monitor.
498. 2016-12-21 18:31:57 ACMer Comments on C# LINQ: Possible Multiple Enumeration of IEnumerable (Resharper):
Glad you like it.
499. 2016-12-21 18:30:56 Harry Vu Comments on C# LINQ: Possible Multiple Enumeration of IEnumerable (Resharper):
Simply the best explanation on this topic. Thanks.
500. 2016-12-07 00:50:59 Liu312 Comments on Code Refactoring - C/C++ Unnecessary Loop Replaced with Math Expression:
Thanks for sharing.
I learned a a lot from this.
Newer Comments - Older Comments
–EOF (The Ultimate Computing & Technology Blog) — 46 words