No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
9 Posted Topics
**The problem:** Our "thankyou" page (goal page) is not recording all of our conversions. For instance, our analytics account is showing 19 conversions for yesterday, but we actually had 34 conversions. **The situation and the Code:** Our thankyou page is being called dynamically from the checkout page through a jquery/ajax … | |
Re: I would also add to the good answers above, that you can also do the following to change the behavior of a hyperlink click event with jQuery: $('#my_a_tag_id').click(function(e) { e.preventDefault(); // this will prevent the browser from following the link // perform whatever action you desire }); | |
Re: [QUOTE=johmolan;1640762]I am trying to export a datagridview ti excel, but i get an error I do not quite understand. I have made two click-events using two buttons looking like this: [CODE] Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim cnn As SqlConnection Dim sql As … | |
I am trying to save a Collection of form controls (Labels and TextBoxes) in my project's settings (My.Settings). During runtime everything appears to be working as expected. I can save and retrieve the Collection of controls, but when I close and restart the application, the settings are gone. I am … | |
Re: [QUOTE=socheata;1640864]Hi all of you; Can you guys me how to insert data from form1 to other form2? Thanks before hand![/QUOTE] Can you be a little more specific in what you mean? If you just want to do something like show data from one form to another, you can do so … | |
Can anyone give me any insight on how to perform a [B]lookup[/B] on a key/definition hashtable? This is the method that I am trying to use to perform the lookup: [CODE] const Object & lookup( const HashedObj & key ) const { return theLists[ hash( key ) ]; } [/CODE] … | |
Can someone tell me the benefit of header files in C++? I believe there must be good reason for it, but I don't quite understand why. Why would I want to create some code in two seperate files, somewhat repetitive, when I can write it all one time, in one … | |
Re: Python hasn't really been used for the commercial market like other languages. It's not really designed for that, although you can still make just about anything with it. Python is more of a backend system programming language IMO. I view Python as the Programmers programming language, if that makes sense. … | |
First let me just say that I'm a student seeking help on an assignment, but I am not asking for anyone to just hand me the answer. I am asking for help on understanding how to solve this problem. I'm stumped, and I don't quite understand it. I've done a … |