Posts by rafaelprog • 53 points
10 posts
-
0
votes1
answer644
viewsA: 404 unable to find resource
I solved the problem by adding/idea/ to the virtural directory Ticking override application root URL…
asp.netanswered rafaelprog 53 -
0
votes1
answer644
viewsQ: 404 unable to find resource
I copied a solution from one machine to another, solved all dependencies, does not contain building errors,but, all css files, js, pages and etc get a 404 error I am running the application in debug…
asp.netasked rafaelprog 53 -
0
votes2
answers4406
viewsQ: Insert into with select
I need to do an insertion of the type INSERT INTO your_table SELECT * FROM temp_table; but, I need the id, and the second column which is an id_fk I can set. I need to transfer the tuple to another…
sqlasked rafaelprog 53 -
0
votes1
answer78
viewsQ: How to make the page wait a pop-up?
I created a method to call a pop-up to validate an event, but this event happens along with validation. The pop-up appears and the event fires. how do I wait for the pop-up event?…
javascriptasked rafaelprog 53 -
1
votes0
answers81
viewsQ: Router authentication
I’m trying to get into my Dlink router using C++ and I’m having problems with the login function! I cannot interact with login and password correctly! Sometimes this error or the code appears .html…
-
1
votes1
answer334
viewsQ: Operator & and * in functions
What is the meaning of this & in front of the matrix (my function only works with &, I am overloading Cout<<(matriz1 + matriz2)) And the meaning also of the * in front of the void?!…
-
0
votes1
answer97
viewsA: How to Link to boost library in codeblocks! (linux Fedora)
OK, I managed to make use of the library boost I got the packages on those links https://rpmfind.net/linux/rpm2html/search.php?query=boost-devel…
-
0
votes1
answer97
viewsQ: How to Link to boost library in codeblocks! (linux Fedora)
Hello, I downloaded the boost.tar file, extracted it, compiled it and installed it in my Fedora 23! But I can’t make codeblocks link to these new libraries. How do I link?
-
0
votes1
answer204
viewsQ: Circular Dependency! object creation
The Code is very simple! I have two student classes. h and diciplina. h and need to maintain a circular dependency between them! when I’m a student. h I can create an attribute of the dicipline…
c++asked rafaelprog 53 -
3
votes1
answer294
viewsQ: How to include the same class in multiple files?
Because I can’t include the same class in multiple type files like this: #include "familia.h" class pessoa{ private: familia *f; }; ----- #include "pessoa." class familia{ private: pessoa *p; };…