-
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. -
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")`. -
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. … -
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 … -
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 … -
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. -
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 … -
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 … -
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 … -
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 … -
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 … -
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/ -
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 … -
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 … -
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 … -
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 … -
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) … -
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/ -
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 … -
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! -
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 … -
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 … -
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 … -
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 … -
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 … -
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 … -
Began Watching JS noob
function otherfunction (arg){ console.log(arg); } function executeFunction(otherfunction){ } executeFunction(otherfunction( "hello") ); This seems redudant , suggestions?? -
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 … -
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 … -
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 -
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, … -
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 … -
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 … -
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 … -
Began Watching Is it possible to apply CSS to half of a character/word?
CSS to half of a character/word? -
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> -
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 … -
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 =) -
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. … -
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 … -
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 … -
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? -
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 … -
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. -
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 … -
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 … -
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 … -
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 … -
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 … -
Replied To a Post in How to send a mail in php using onclick function
Whats the action on your <form> element?
The End.