Posts by Zica • 469 points
45 posts
-
0
votes0
answers7
viewsQ: PDF with link in the body of the text, not opening
Oops, I have an Asp.net mvc application where I use Filecontentresult to render a PDF, however when the user adds a PDF that has hyperlinks inside it, like www.google.com, the system shows the…
asp.net-mvcasked Zica 469 -
0
votes1
answer54
viewsA: Convert odt to pdf
can solve in the Arguments line I added the @ before typing the quotes thus pdfProcess.StartInfo.Arguments = @"--headless --convert-to pdf --outdir C:\temp C:\temp\a.odt";…
-
-1
votes1
answer54
viewsQ: Convert odt to pdf
I need to convert files from the .ODT for .PDF, if I run the following command in cmd it works: cd C:\Program Files\LibreOffice\program> soffice.exe --headless --convert-to pdf --outdir C:\temp\…
-
4
votes1
answer62
viewsQ: LITE ORM problems in saving columns bytes
My app the user can use the camera to take photo and need to save it in the database. To save in the database I convert the image into an array of bytes, however I noticed a problem in this process…
-
0
votes2
answers192
viewsA: Android Activitycompat
Converts the app to android studio and worked the eclipse can no longer work is many bugs.
-
0
votes2
answers192
viewsQ: Android Activitycompat
Hello by I searched from android 7.1, it is necessary to request permission running for user and it is necessary to use the class ActivityCompat for this purpose, my application saves a PDF on disk…
-
-1
votes1
answer129
viewsQ: Kendo ui Chart with multiple graphics - Assincrono
I have a screen that can have 1 or more graphics, so I’m using Kendo Ui Chart, however today this screen is synchronous, however I would like to switch to Asynchronous to get faster. I created the…
-
0
votes1
answer35
viewsQ: Beginform with several button in one form
I have form that has several Buttons, 1 to delete via aja, 1 to edit via ajax, 1 to open report and I have 1 button for when it is clicked I wish to do the post form, the button of the post works…
asp.net-mvcasked Zica 469 -
1
votes1
answer242
viewsQ: Update menu via ajax
When I clicked on the menu item of my application it always updated the page, I am changing to update via ajax the pages however I am having difficulties in relation to functions with names based on…
-
-5
votes1
answer145
viewsQ: Interop.word service
Good afternoon, I am using microsoft.office.Interop.word to convert word documents into pdf in WCF, however the interface simply to work WCF is online only the interface does not work, where it is…
-
1
votes3
answers495
viewsQ: Send email asynchronously Asp.net mvc
I have a return form Actionresult who sends an email after completing the operation. I would like to leave this asynchronous email, because it takes a lot of time, I tried to put in a Task using the…
-
1
votes3
answers2367
viewsQ: Transparent menu with color change when moving the mouse
How do I make the menu effect at the top appear transparent showing an image and when moving the mouse appears a bar with color like this template. Could someone give me a hint? Example:…
-
1
votes2
answers1613
viewsA: Can cause cycles or multiple paths to cascade. Specify ON DELETE NO ACTION or ON UPDATE NO ACTION, or modify other FOREIGN KEY restrictions
I solved using this code: modelBuilder.Conventions.Remove<ManyToManyCascadeDeleteConvention>(); within the OnModelCreating
-
5
votes2
answers1613
viewsQ: Can cause cycles or multiple paths to cascade. Specify ON DELETE NO ACTION or ON UPDATE NO ACTION, or modify other FOREIGN KEY restrictions
I have a class that will have two FK pointing to the same table, so Entity Framework returns the error: Can cause cycles or multiple paths to cascade. Specify ON DELETE NO ACTION or ON UPDATE NO…
-
0
votes1
answer36
viewsQ: Menu item always open
I have a side menu that when the user clicks changes the color of a selected item in the menu through a javascript code, however when an update occurs on the screen the class is removed. Would…
-
6
votes1
answer1448
viewsQ: How to enable Flash Player in Javascript browser?
Is there any way to enable Flash Player via Javascript in the browser like at that link?…
-
0
votes1
answer84
viewsA: Chosen.jquery.js incompatible jquery-1.9.1
The problem is related to jquery ui dialong that does not work with chonsen.jquery. https://github.com/harvesthq/chosen/issues/646…
-
0
votes1
answer84
viewsQ: Chosen.jquery.js incompatible jquery-1.9.1
I am using Jquery-. 1.9.1 in my application and would like to use the Chosen.jquery.js component however this component uses 1.6.4. I want to use this component within the dialog that is opened by…
-
1
votes2
answers818
viewsQ: Block click the menu item after the first click
I’m having a hard time blocking simultaneous clicks on menu items in my application, when the user first clicks I want to block attempts at new clicks, I want to do this because there is a user…
-
0
votes1
answer110
viewsQ: RDS SQL SERVER AWS Amazon
Has anyone ever had a problem with the maximum amount of database that can be created with Amazon’s RDS? From what I checked there is a Trigger that does not let create more than 30 database in an…
-
0
votes0
answers25
viewsQ: 301 redirect of Domain Destination Code
Good afternoon, I own a subdomain which is a wordpress blog, I’m having trouble making redirects. On google Velopers.google.com/speed/pagespeed he is sending me this warning.…
-
2
votes1
answer3557
viewsQ: Video not listed on youtube problems to open using iframe
I am unable to open videos not listed on youtube using the html tag iframe, the following error occurs: Refused to display 'https://www.youtube.com' in a frame because it set 'X-Frame-Options' to…
-
2
votes1
answer867
viewsQ: Update multiple databases using code first without using console
Good afternoon, you guys. I have an application that each client has their database and I am using the code first. To update I am always running in hand the command update-database -force in the…
-
0
votes1
answer991
viewsQ: Pick up Ip and Hostname of visitors who fills in contact form
Good afternoon, gentlemen. I have a web application on Asp.net mvc + Angularjs that has a contact form. I would like to know what the ip of the user and his hostname that is filling this…
-
1
votes1
answer180
viewsQ: Download SQL Server Backup Amazon
Good afternoon, would anyone like to tell me how I donwload my Amazon RDS backup? Entering Sql Server Manager Studio with you appears the option and that the backup is in the directory D: RDSDBDATA…
-
0
votes1
answer129
viewsA: Table with Input Radio - I need to read the values of each line
I found the answer. if ($('input[name='+ cells[2].innerText + ']:checked') != null) { ($('input[name='+ cells[2].innerText + ']:checked').val()); }…
javascriptanswered Zica 469 -
0
votes1
answer129
viewsQ: Table with Input Radio - I need to read the values of each line
Good afternoon, I have a table that has a column with an input radio, I need to read the values of each row of an input radio without interfering in the order of the lines. Example, I have 3 lines…
javascriptasked Zica 469 -
0
votes1
answer2049
viewsQ: Disable button while form is not valid
I need to disable one button to be saved when all fields are validated, the following code: button is always being disabled, but would add a condition to change only if it has been valid in the…
-
0
votes2
answers337
viewsA: Errors Model State Called Ajax
I found an article that explains how to do. I tested and it worked, follow the link: http://www.codeproject.com/Articles/216439/Data-Validation-Using-Annotations-for-jQuery-Ajax…
asp.net-mvcanswered Zica 469 -
1
votes2
answers337
viewsQ: Errors Model State Called Ajax
Good afternoon, I have a registration screen that I am making an ajax call to send the data, however when the user does not fill some field I need to show a field validation error message. In other…
asp.net-mvcasked Zica 469 -
0
votes1
answer1943
viewsQ: Table with Radio input to pick the selected value
Hello, I have a table that has a line where you can select a radio button. When selecting the save button I want to get the values that were selected. I can pick up the radio button text, however…
javascriptasked Zica 469 -
1
votes2
answers71
viewsQ: Adding table line with javascript does not work onchance event of Buttons
Good morning, I am adding lines from a table (tblformacao) using javascript and on this line I add an input and I am listening to the onchange (.upload) event, however it does not fall in the…
javascriptasked Zica 469 -
0
votes1
answer52
viewsQ: Table With Input type Upload File only one line listens to the event
Hello, gentlemen I have a table where in it has a column that has an input type file, when pressing the input only the first line listen to the event, you would know me to tell what I am doing…
javascriptasked Zica 469 -
7
votes3
answers1566
viewsQ: Convert World/Excel to PDF
Does anyone know of an open source api for converting world and excel documents to pdf? I am currently using windows Interop however it only works if I install the office on the server. I need to…
-
2
votes1
answer603
viewsQ: Message de Aguarde when clicking the save button
Hello, gentlemen I’m having trouble putting a message waiting for the user when they click save button and stay waiting for the return of the server. I am using Jquery Dialog and Partial View to…
-
3
votes1
answer233
viewsQ: Automatically upload one server instance on Amazon if the other drops
I am new with aws from Amazon, and I recently had a problem that dropped my instance and to solve I had to create a new instance. Could anyone tell me what strategy I could create so that if I fall…
-
0
votes0
answers44
viewsQ: Html.Dropdownlistfor Add Image at a certain position
Good afternoon, guys. I’m looking to add an image in the second position of the Dropdownlist, would anyone know how to do that? I tried to add one using with the append and it didn’t work.
asp.net-mvcasked Zica 469 -
1
votes1
answer133
viewsQ: Remove "www" from domain by forwarding 301
How do I redirect a www.dominio.com.br for dominio.com.br (www-free)? I’m using Asp.net mvc.
-
1
votes2
answers320
viewsQ: @Html.Dropdownlistfor Default item at first list values
Good afternoon, gentlemen. I use DropDownListFor To load lists, example load all my clients to be selected. However, I need that if a record does not appear in the listing have the option to add a…
-
-1
votes2
answers89
viewsA: Convert PDF To SWF FLASH - Asp Net MVC
I found the answer need to run two commands. The first to generate the swf and the second command to combine the generated swf with some standard model. 1) pdf2swf.exe indicator.pdf -the test.swf 2)…
-
2
votes2
answers89
viewsQ: Convert PDF To SWF FLASH - Asp Net MVC
Good evening, I am generating pdf using Itextsharp and need to send to the client a swf, however I am struggling, in the client is a blank flash screen. I am using this strategy because with flash I…
-
2
votes0
answers575
viewsQ: View word/pdf document in browser
Hello, gentlemen. I need to view documents saved in format, Word and PDF browser, however the user cannot print. This format can be for example in html or flash. I found this project…
-
4
votes2
answers322
viewsQ: Read document array of word bytes in browser
I have a routine of upload and download on a website that is working. However, I cannot do view word type files, directly in the browser, I wish to view as pdf. What I’m doing is saving the document…
-
1
votes1
answer1654
viewsQ: RDS AMAZON - Difficulties to connect in Database
I created a database instance Sql server on Amazon, however I cannot connect to Sql Server Management Studio. I get the message: error 10060 Unable to connect to endpoint address,1433. I am using…
-
1
votes0
answers608
viewsQ: Amazon AWS - Host Site
Good afternoon, I created a plan on Amazon to use the features for free for 12 months. I hosted my application on a windows VM, however I don’t know how to point my DNS from the.br record of my…