All Questions

2
answers

Communication of C # and C ++

How can I make C # code call a variable that is in a C ++ file for example. Knowing I'm using Visual Studio. C ++ code: #include "stdafx.h" #include <iostream> int main() { int test = 10; return 0; } but how can I access...
asked on 24.07.2018 / 19:05
0
answers

Generate PivotTable with TCPDF

Good afternoon, I'm using TCPDF to generate an evaluation report, and I need this report to be divided into the weeks the user has activity. The report is currently WhatIneedistogothroughthearray,startingonMondayandendingonSunday,wh...
asked on 12.11.2018 / 18:38
0
answers

Load XML file stream into XRRichText

In my application, I get an array from bytes from an XML file. With it I create a stream , but when I try to load it and insert it into XRRichText , nothing happens. However, if I write the stream into a file on the user's compute...
asked on 04.06.2018 / 16:46
2
answers

SlideShow with images from URLs

I was developing a slideshow uploading images from URLs I found a library developed by a Russian, the Universal Image Loader , but this slideshow will be used in the app in the tablet version. In the mobile version I use a listview ....
asked on 30.01.2014 / 18:00
0
answers

How to customize a page's unicode (emicode)?

In Windows operating systems when using emojis the font used by browsers usually is Segoe UI Emoji    Note: in Firefox it has its own "emojis system", I think it uses Twemoji Mozilla :   - link       What makes Firefox have...
asked on 19.09.2018 / 19:26
1
answer

Read files in a directory sorted by creation date

I have the following code to include all the PHP files I find in a directory: if (is_dir(CONF_REL_PATH_BANANAS)) { foreach (glob(CONF_REL_PATH_BANANAS.'/*.php') as $file) { require_once($file); } } When sending the files there, I...
asked on 13.01.2014 / 21:19
1
answer

Is it possible to access a shared variable with another thread with no concurrency problem?

I have this code List<Object> myList = new ArrayList<>(); public void RunOperation(){ myThread = new Thread() { @Override public void run() { for (int i = 0; i < ReallyHighNumber; i++) {...
asked on 23.12.2018 / 00:54
1
answer

How to expose a method as a bean to use the spring dependency injection

I need to expose a method as a bean in Spring% with% to use it in the injection of an attribute, which has more than one implementation. What I did was the following: I added the method that will create my object using the ApplicationCon...
asked on 28.05.2018 / 17:12
2
answers

GET request is not answered correctly by the backend

The project is an Angular 6 front end, which connects to a Java back-end for communication with a SQL Server BD. The server that receives the file .war , containing the back as the front, is Tomcat 8.5.32. The structure for logging i...
asked on 17.08.2018 / 18:19
1
answer

Infinite Scroll ASP NET MVC C #

Good afternoon, I'm implementing an infinite list in asp net mvc and I have some doubts about what is the best way to do this. I implemented using partial view, making a request via ajax and return this partial view and give an append to my html...
asked on 11.09.2018 / 20:24