Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~456 People Reached
Favorite Tags
Member Avatar for radujit

Hi, I am using one of the built-in jquery slider scripts. Everything works fine in explorer, but in Firefox, Opera and Chrome is messed up. Here is the style: [CODE]<style type="text/css"> .clear { clear:both } #gallery { position:relative; height:237px } #gallery a { float:left; position:absolute; } #gallery a img { …

Member Avatar for matricol
0
77
Member Avatar for radujit

Hi I need a little bit of help on this one: I have a csv file (date, hour, country, indicator, current, previous) Please help with the code that will allow me to display the events that will occur in the next 4 hours Thanks

Member Avatar for kvprajapati
0
53
Member Avatar for radujit

Hi, I have this newsletter code, that takes emails from the recordset Tonews and sends a specific message + attach [CODE]dim cdoConfig Set cdoConfig = CreateObject("CDO.Configuration") With cdoConfig.Fields .Item(cdosmtpserverport) = 26 .Item(cdoSendUsingMethod) = 2 .Item(cdoSMTPServer) = smtpserver .Item(cdoSMTPAuthenticate) = 1 .Item(cdoSendUsername) = musername .Item(cdoSendPassword) = mpassword .Update End With dim …

Member Avatar for ArtistScope
0
84
Member Avatar for radujit

Hi, I develop in asp a html page parser, and I would need some help. Here is my code: [CODE]<% Dim objXmlHttp Dim strHTML Set objXmlHttp = Server.CreateObject("Msxml2.ServerXMLHTTP") objXmlHttp.open "GET", "http://somepage", False objXmlHttp.send strHTML = objXmlHttp.responseText %>[/CODE] Everything works fine, and the result is: [CODE]<table> <tr> <td>EUR</td> <td>4.23</td> </tr> <tr> …

0
60
Member Avatar for radujit

I have two tables Banks(Bank_id, Bank) FX (ID, Bk_id, currency, trans, value) Banks and FX are innerjoined on Banks.Bank_id=FX.Bk_id. in the original table in database: [CODE]Code: ID Bank Transaction type Currency Value 1 X Buy EUR 1 2 X Sell EUR 2 3 X Buy USD 3 4 X Sell …

Member Avatar for smantscheff
0
112
Member Avatar for radujit

Hi, I have a tabel in access db fx(bank,currency,operation(buy or sell). I created 4 recordsets that pick data as follows: recordset1 (Bank, EUR, Buy) recordset2 (Bank, EUR, Sell) recordset3 (Bank, USD, Buy) recordset4 (Bank,USD,Sell). Now I want the data to be dispalyed using classic ASP on a page as follows: …

0
70