Interesting questions
-
1
votes0
answers60
viewsError while Sending E-mail
How do I deal with that mistake ? This error is when I try to send an email via Localhost on Laravel. Online works. But I’m afraid that online error will happen too. I want to be able to handle;…
laravelasked 9 years, 11 months ago Diego Souza 16,524 -
-1
votes1
answer96
viewsImplementation of a catalog with Turn js, using Ajax
I am implementing a flipbook in which you need to load the sheets dynamically, so I am using Ajax. When I implement the flipbook in a static way it works perfectly. And I can also call all images by…
-
5
votes1
answer1115
viewsInput loading data from Modal
Good afternoon! I’m trying to make a modal to fetch the products and assign it to the input. Idea: When I click on the input, it opens the modal. Then I choose the product in the modal and it loads…
-
0
votes0
answers21
viewsDirect to a particular gallery using Javascript
I have 3 galleries being represented in Javascript, each of the galleries shows 4 main photos with the option "see more" next. I want you to click on the option, open a new window showing all photos…
-
0
votes1
answer71
viewsPopular Gridview with Access Data
I managed to do this in VB.NET, but now I need to do it in C#and I can’t turn the code the right way. I have this Gridview: <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False"…
-
1
votes1
answer68
viewshow to access the webview inside the onBackPressed method on android
Hello, I’m trying to implement the back to the home of my applicator, my app is all built inside the webview, I need to call the javascript Function to return home, because when I click on the back…
-
0
votes0
answers66
viewsConvert a variable to a reflect. Type
I started learning Go recently. I want to be able to save one type of data into one variable, and convert another variable to it. I know that one way to save a data type is by using reflect.Type. i…
-
0
votes1
answer71
viewsNo Resource Identifier found for attribute 'tabIndicatorColor' in package 'Authorizer.Android' Authorizer.Android
I had several errors, which I was eliminating, with the installation of the packages. However, this three I still could not eliminate. The interesting thing is that everything was working and out of…
-
1
votes2
answers261
viewsInheritance in the Entity Framework
I am now reading about cross domain inheritance in EF. I came across this example: public abstract class BillingDetail { public int BillingDetailId { get; set; } public string Owner { get; set; }…
-
-4
votes1
answer51
viewsHow can I get this code to display the first 100 even numbers not multiples of 10?
#include <stdio.h> #include <conio.h> int main () { int count; for (count=0;count<200;count=count+2) printf ("%d \t ",count); if (count%10==0) { count++; } getch(); return(0); }…
-
0
votes1
answer19
viewsError in return of database users
[RESOLVED] I am selecting the compos id, user_nicename and display_name of the database, in this I create a foreach to show the result, but the right one would return me all users but returns the…
-
0
votes2
answers173
viewsC# - Filter Include - Context
In the method below, I return some records of my entity Consultintramexrules, where it has relation with the . INCLUDE ("Emails and Parameters"). Aware that EF does not allow filtering in . INCLUDE,…
-
2
votes1
answer266
viewsWinston Node creates log file but does not save: Attempt to write logs with no Transports
I have a problem in Winston, follow my settings: const logger = winston.createLogger({ level: 'info', format: winston.format.json(), transport: [ new winston.transports.File({ filename:…
-
0
votes1
answer35
viewsReturn of incorrect bank values when filling a Jtable
I have a Registration Class, which is responsible for the View. I have this code: public void listarTabela(){ DefaultTableModel val = (DefaultTableModel) jTable3.getModel();…
javaasked 8 years, 6 months ago Pedro Anselmo 35 -
0
votes0
answers74
viewsVSS 2005 Internet Access and IIS 7 - I can’t set up for remote access
Guys, I searched several tutorials and nothing works. I followed every step of that link and when it comes to: Now click "Server" -> "Configuration" -> check on "Enable Sourcesafe Internet for…
-
2
votes1
answer341
viewsRelationship N to N with 4 tables in Laravel 5.6
Good afternoon, you guys, I started using the framework Laravel a little while ago and I’m having difficulties in implementing a relationship N/N using 4 different tables. The scenario is as…
-
0
votes1
answer154
viewsmodal multiple > Bootstrap/JS/PHP
I used this link as a reference for creating my Modal: Open Multiple Bootstrap Modals. After opening a modal and clicking outside the modal box, when we return to page, an automatic style of…
-
-1
votes1
answer221
viewsNodejs update
I am currently with V8.10.0 and wanted to update it to 10.16, but when using: sudo npm cache clean -f I get the following answer: using --force I sure Hope you know what you are Doing. How to solve…
-
3
votes0
answers195
viewsPHP with PDO returning BLOB records with foreach
Good afternoon guys, I’m new here (first question), but Stack has already helped me in several situations. That’s the problem: I am developing an application and on a given page there is a user…
-
9
votes1
answer666
viewsMulti-step form, losing values of variables when page changes
We have three PHP pages with html form. In the first page we have the fields showing the values of the variables and the fields Hidden containing the values of the variables like this: <input…