• Member Avatar for AleMonteiro
    AleMonteiro

    Replied To a Post in how to call function with parameter

    You said that F_Get_Desc is a function, but you're trying to call it as an stored procedure. Try using CommandType.Text instead.
  • Member Avatar for AleMonteiro
    AleMonteiro

    Gave Reputation to Reverend Jim in VB.NET

    I don't use data tables but I think it should be `ds.Tables` not `ds.Table`. Also you have a typo in `da.Fill(ds, "EmMasater")`.
  • Member Avatar for AleMonteiro
    AleMonteiro

    Began Watching jQuery question getElementById

    Hi all, just a quick question. I believed that `$('#value')` was a jQuery function equivalent to `document.getElementById('value')` however, in the code below, only the second function gives the desired result. …
  • Member Avatar for AleMonteiro
    AleMonteiro

    Replied To a Post in jQuery question getElementById

    Just so you know: $('#value') // jquery object //set value as $('#value').val(1); $('#value')[0] // DOM object // so you can also set the value as $('#value')[0].value = "1"; // This …
  • Member Avatar for AleMonteiro
    AleMonteiro

    Began Watching toggle switch with ajax update

    Hi I am trying to update the ON / OFF status through the below code. If i change the OFF status to ON, its getting a value is OFF. can …
  • Member Avatar for AleMonteiro
    AleMonteiro

    Replied To a Post in toggle switch with ajax update

    Or you can just use the change listener instead of the click. When the change is fired the checkbox state has already been updated.
  • Member Avatar for AleMonteiro
    AleMonteiro

    Began Watching Java Applet and asp.net webpage

    Good day all, Please, I have an asp.net page and i have a java applet which i want to embed in the asp.net page. I have added all necessary files …
  • Member Avatar for AleMonteiro
    AleMonteiro

    Replied To a Post in Java Applet and asp.net webpage

    Modern browsers have disabled applet support and Oracle already announced that Java Applets will no longer be needed and so it'll be discountinued. The best option is to find some …
  • Member Avatar for AleMonteiro
    AleMonteiro

    Began Watching call js function from form action

    I am working on integrate some php file with my platform. The platform using HTML for interface and js file for functionality. I try two appraches: First approach: I call …
  • Member Avatar for AleMonteiro
    AleMonteiro

    Replied To a Post in call js function from form action

    It's realoding the page because your button it's a submit button, that means it will submit your form to the action url. Just change the button type from **submit** to …
  • Member Avatar for AleMonteiro
    AleMonteiro

    Began Watching Help with the plain HTML form with JavaScript

    Hi, I'm new to javascript that i didn't learn in college. My form can validate the first name, last name, and address line 1, but cannot validate the phone number …
  • Member Avatar for AleMonteiro
    AleMonteiro

    Replied To a Post in Help with the plain HTML form with JavaScript

    I suggest using jQuery validation plugin, quite easy to use and really helpfull: http://jqueryvalidation.org/
  • Member Avatar for AleMonteiro
    AleMonteiro

    Began Watching Validation of JSP form

    I have cretaed a JSP page that has 4 textboxes that need to be validated. 2 are text and 2 are integers. I have tried using the jQuery validation tool …
  • Member Avatar for AleMonteiro
    AleMonteiro

    Replied To a Post in Validation of JSP form

    Was this the one you tried? http://jqueryvalidation.org/ It works great. You just have to config it properly. ie.: you need to add **required** to the textboxes that are required and …
  • Member Avatar for AleMonteiro
    AleMonteiro

    Began Watching how to return true or false of this javascript function?

    How to make below function to return true if success, otherwise false. I have make return on it but the result is **'undefined'** when i call it to other javascript …
  • Member Avatar for AleMonteiro
    AleMonteiro

    Replied To a Post in how to return true or false of this javascript function?

    You can't. But let me explain. First, the function onloadCallback does not have any return. You can make it return true or false, but this value will never respect the …
  • Member Avatar for AleMonteiro
    AleMonteiro

    Began Watching how i can track images clicks + hide link destination ?

    hello great community, i hope my question is clear .... i use banner rotator for my site but i want to see which banner get better ctr (click through rate) …
  • Member Avatar for AleMonteiro
    AleMonteiro

    Replied To a Post in how i can track images clicks + hide link destination ?

    I agree that hiding the destination link it's not a good ideia, but anyway, here's a way you can count the clicks: https://jsfiddle.net/alemonteiro/5pqb8dz3/1/
  • Member Avatar for AleMonteiro
    AleMonteiro

    Began Watching database connection

    i did creat vb.net code for .aspx files, now i am looking for sql database connection for my project. exapmle: databasename: demo1 table_name: State user id: sa Password: 123 default.aspx …
  • Member Avatar for AleMonteiro
    AleMonteiro

    Replied To a Post in database connection

    Here you can find any connection string that you may need: https://www.connectionstrings.com/ And here you can check out how to use them properly on asp.net: https://www.connectionstrings.com/store-connection-string-in-webconfig/ Cheers!
  • Member Avatar for AleMonteiro
    AleMonteiro

    Gave Reputation to stevexavior in Best Anti virus for my PC

    List of best anti-virus for PC are as under: • Kaspersky Anti-Virus (2015) • Webroot SecureAnywhere Antivirus (2015) • Emsisoft Anti-Malware 9.0 • F-Secure Anti-Virus 2015 • Malwarebytes Anti-Exploit Premium …
  • Member Avatar for AleMonteiro
    AleMonteiro

    Replied To a Post in Question on JSON best practices

    It's easier if you get all the data in a single json but the band consumption is lower if you don't load the same data twice. If some data(one address …
  • Member Avatar for AleMonteiro
    AleMonteiro

    Began Watching I want to pass a variable instead of aResource id...?

    Hello All; I want to to enter myImage image to every different value that variable 'kare' takes. Th values of the ImageViews are like a8,b8, c8... etc (the coordinates of …
  • Member Avatar for AleMonteiro
    AleMonteiro

    Replied To a Post in I want to pass a variable instead of aResource id...?

    Your error is not when setting the image, is getting the ImageView object. R.drawable.kare is not the ImageView Id, it's a drawable. If you get the ImageView correcly then you …
  • Member Avatar for AleMonteiro
    AleMonteiro

    Began Watching Android layout center question

    Hi, I am struggling with xml layout in my android app... please help here is what I want: I have to display two poarts in one activity - image part …
  • Member Avatar for AleMonteiro
    AleMonteiro

    Replied To a Post in Android layout center question

    One way you can do it it's by defining two layouts, one for portrait and another for landscape. Basically you need to create a new layout folder named *layout-land/* and …
  • Member Avatar for AleMonteiro
    AleMonteiro

    Began Watching JS noob

    function otherfunction (arg){ console.log(arg); } function executeFunction(otherfunction){ } executeFunction(otherfunction( "hello") ); This seems redudant , suggestions??
  • Member Avatar for AleMonteiro
    AleMonteiro

    Replied To a Post in JS noob

    Just a note: the function 'executeFunction' is not executing anything. In your code, the argument recieved as otherFunction in the executeFunction will be the return of execution of the defined …
  • Member Avatar for AleMonteiro
    AleMonteiro

    Began Watching google map marker ,link in the marker

    hello , I running google map api with multiple select of category (checkbox), everything fine working , but I dont know how to link(when u click on marker) form market …
  • Member Avatar for AleMonteiro
    AleMonteiro

    Replied To a Post in google map marker ,link in the marker

    Are you talking about a link inside a InfoWindow? Take a look at this link, it may help: https://developers.google.com/maps/documentation/javascript/examples/infowindow-simple
  • Member Avatar for AleMonteiro
    AleMonteiro

    Began Watching Question on JSON best practices

    I am trying to find information on best practices for json data. I am working on a client server app that will contain family information. For purposed of this question, …
  • Member Avatar for AleMonteiro
    AleMonteiro

    Replied To a Post in Question on JSON best practices

    There's no magic to be done. You should load at first what you'll display right on to your users, details can be loaded latter. Example: If your home screen is …
  • Member Avatar for AleMonteiro
    AleMonteiro

    Created C# Custom Web / Media Server(Streaming)

    Hello my friends, I'm re-thinking my project and I'd like some opnions... Goal: An WebServer/Stream Server easially deployed in any Windows or Linux(Using Mono), with no dependecy on previous installed …
  • Member Avatar for AleMonteiro
    AleMonteiro

    Began Watching C# Custom Web / Media Server(Streaming)

    Hello my friends, I'm re-thinking my project and I'd like some opnions... Goal: An WebServer/Stream Server easially deployed in any Windows or Linux(Using Mono), with no dependecy on previous installed …
  • Member Avatar for AleMonteiro
    AleMonteiro

    Began Watching Is it possible to apply CSS to half of a character/word?

    CSS to half of a character/word?
  • Member Avatar for AleMonteiro
    AleMonteiro

    Replied To a Post in Is it possible to apply CSS to half of a character/word?

    I never saw it, and did no research, but at the topt of my head I'd say: No. But you can always split the word with something like: <p>Wo<b>rd</b></p>
  • Member Avatar for AleMonteiro
    AleMonteiro

    Began Watching Bitmap Path from String Array

    Hi, I am attempting to iterate through all image files in a folder and it's subfolders to check for the EXIF property of DateTimeOriginal. For the life of me I …
  • Member Avatar for AleMonteiro
    AleMonteiro

    Replied To a Post in Bitmap Path from String Array

    Glad to know that you work it out yourself, and it was pretty quickly! =) Pls, just mark the tread as solved =)
  • Member Avatar for AleMonteiro
    AleMonteiro

    Began Watching How can I progress on web development?

    Hi, I want to advance my experience in web development. I know the basics of PHP, jQuery, CSS, HTML, and MySQL. I have no problems with CSS, HTML, and MySQL. …
  • Member Avatar for AleMonteiro
    AleMonteiro

    Replied To a Post in How can I progress on web development?

    About jQuery... if you don't, you should have a good base of knowlodge about JavaScript. If you undertand JS well, you'll take much more advantages of jQuery. After that, one …
  • Member Avatar for AleMonteiro
    AleMonteiro

    Began Watching How to Auto type and submit

    Hi Dw. I would like to know how can i auto type and submit a form using vb.net, I'm not using Webbrowser or should I use it? I just saw …
  • Member Avatar for AleMonteiro
    AleMonteiro

    Replied To a Post in How to Auto type and submit

    Yes, you should use WebBrowser, and the post that clicks the button would help you, because you need to type the text and then click the button, right?
  • Member Avatar for AleMonteiro
    AleMonteiro

    Began Watching cutting opimization code..

    hi i'm developing my app which be done by vb.net for calculating aluminum measures and profile cutting list now i connect results with database and get list of different sizes …
  • Member Avatar for AleMonteiro
    AleMonteiro

    Replied To a Post in cutting opimization code..

    You need help with the code or with the logic of the optimization? Maybe if you explain the logic somebody can help with the code.
  • Member Avatar for AleMonteiro
    AleMonteiro

    Began Watching iframe height woes

    Hey, I'm trying to (using bootstrap btw), have a page with a header and an iframe. I want the iframe to take up the remainder of the page's height and …
  • Member Avatar for AleMonteiro
    AleMonteiro

    Replied To a Post in iframe height woes

    You could: 1. Make the height of the frame smaller 2. Make the header fixed or absolute so it will on top of the frame 3. Plan your interface with …
  • Member Avatar for AleMonteiro
    AleMonteiro

    Began Watching Is it possible to embed code in to message board picture signatures?

    I just need to know if its possible and how. I had an incident once on a message board I frequented where someone's signature displayed info about my PC and …
  • Member Avatar for AleMonteiro
    AleMonteiro

    Replied To a Post in Is it possible to embed code in to message board picture signatures?

    Yes, it's possible. If not handled properly many input text accept the <script> tag. Then that JS is saved on the DB and when the signature is displayed the javascript …
  • Member Avatar for AleMonteiro
    AleMonteiro

    Began Watching How to send a mail in php using onclick function

    When I click on the button it is not working but when i refresh the page the mails are going.Please suggest me how to solve this problem. <button type="submit" title="<?php …
  • Member Avatar for AleMonteiro
    AleMonteiro

    Replied To a Post in How to send a mail in php using onclick function

    Whats the action on your <form> element?

The End.