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
Hi, I have this connction string: [CODE]Private conexion As New OdbcConnection("DRIVER={MySQL ODBC 5.1.50 Driver}; SERVER=localhost; DATABASE=netstore; UID=root; PASSWORD=123456; OPTION=3")[/CODE] I use: Visual Studio 2010 MySQL 5.1.50 When I try to open the connection, this error appears: ERROR [IM002] [Microsoft][ODBC Driver Manager] Data source name not found and no default driver …
Did you try using global variables ? I don't remember but I think stay within postbacks
I have a web page: [url]www.netstorerosario.com.ar[/url], and I now a lot of mistakes I made on it. I decided to correct them all. In order to do that I need to know which option it's the most efficient. In my page, to show product in the index.aspx I use user …
That's a lot of code =P. Try google a little bit first. And then ask for specific parts. Regards,
Hello, this is the web page I'm developing: [URL="http://gtechrosarioco.win-servers.com/"]http://gtechrosarioco.win-servers.com/[/URL] . Problem: In firefox everything it's fine, in Chrome too. But internet exlporer shows the accordion pane in a wrong way and that mess up with the hole page (please check it for yourself and see what I'm talking about). The …
Take out every try/catch block and try again. Line 40 and 112. Regards
Hi. What I do to store and show images it's this: 1. I store the images that the clients upload, in the same folder, always. Remember to validate the extension, type, and any strage caracters that may crash your app (á, é, ñ) or just use the correct charset. 2. …
Hi, this it's my problem. I have a textBox and a label. In the textbox an email address should be written. Then, when you click the label a inline popUp appears (this one to be more specific:[URL="http://orangoo.com/labs/GreyBox/"] http://orangoo.com/labs/GreyBox/[/URL] ) The thing is that I have to send the email address …
This is how I did it: [code] For i = 0 To len - 1 Dim _label As New Label _label.ID = "_label" & i.ToString labels(i) = _label Panel1.Controls.Add(_label) cont += 25 Next Panel1.Height = cont [/code] You can use labels, or another control. Hope it helps!
The End.
smariano77