Hi all, Im trying to make the slideshow using javascript, the images will be available in the folder. My requirement is the images can be replaced at anytime in the folder, according to that the script retrives the available images from the directory and should play the slide show. Please let me know how to achieve and also provide if any code snippet if you have. Thanks Kanna
Dotnetkanna
Posts
-
How to make slideshow using javascript -
How to submit the below form using Javascript?Hi All, I would like to submit the below URL in a interval of every one minute. http://positions.vistracks.com/facts/factsformparser?payload=FACT,12345,-88.04,42.0,2009-12-15T00:00:00Z, SensibleSensor-Q42,,45.5,184,,temperature=18.5,Doorstate=open This URL will contain with a PostFact button this should submit for every one minute, How to submit this using javascript? Thanks Kanna
-
Change SQL Server dateformat?Hi, By default sql server will accept date format of mdy.is it possible to change the format to dmy. SET DATEFORMAT dmy GO INSERT tDateOrder (d) VALUES ('31/1/04') GO INSERT tDateOrder (d) VALUES ('2/28/04') by executing the above statement im getting the below error. (1 row(s) affected) Msg 242, Level 16, State 3, Line 1 The conversion of a char data type to a datetime data type resulted in an out-of-range datetime value. The statement has been terminated. is it possible to change the database format as dmy permanently? and also it should change only for this particular database. Regards Kanna
-
Date Format Problemyes.i agree. the exact message is "String was not recognized as a valid DateTime"
-
Date Format ProblemIM using MS Sql Server 2005 db.
-
Date Format ProblemNo Yaar,that code will convert to desire format.but while inserting the record im geeting the error.string was not recognized as valid datetime. for this what i have to do.
-
Date Format ProblemHi, I finished developing the .net windows application.problem is in date format.the application developed with the date format of "MM/dd/yyyy" with this appication working fine.but now i want to change the dateformat to "dd/MM/yyyy" by setting this format im getting the folling error "String was not regcognized as valid date format". i have to change the format in one place so that it gets effect in all over the application. i have tried withe the below code.but its not working. CultureInfo culture = (CultureInfo)CultureInfo.CurrentCulture.Clone(); culture.DateTimeFormat.ShortDatePattern = "dd/MM/yyyy"; culture.DateTimeFormat.LongTimePattern = ""; System.Threading.Thread.CurrentThread.CurrentCulture = culture; Regards Kanna
-
Combobox SelectedValue Problem.Hi, Im using windows form combobox, binding the value using Binding object,after retreving from the database,im using Combobox.selectedvalue="2"; after the form load completion the selected value is not get retaining. im using combobox style as dropdown. Regards Kanna
-
Reg: Crystal ReportYes.im using rtf formmat only.but the rtf content display only in one page remaining text is not appearing in the next page.what i have to do? regards kanna
-
Reg: Crystal ReportHi eddy, Thx man.if the rtf file content is more than one page then the content is not displaying in the next page. i have adding these content through OLEObject. any idea? Regards Kanna.
-
Reg: Crystal ReportHi, How to display RTF file in crystal report? and also is it possible to display any no. of pages in crystal report and is it possible to create RTF file without having microsoft word installation? Regards Kanna.
-
Open source LMS?Hi Everyone, Is their is any Open Source for Learning Management System(LMS) available in ASP.NET? if there plz mention the URl or details. Thnx Kanna.
-
How to access Network File In IIS?Thnks. Its not in another server.it will be in another machine.for example another machine d:test.pdf ,This machine will be connected as network.
-
How to access Network File In IIS?Hi Everyone, I have hosted my appication in IIS,some of my PDF files are in other system.but before configuring in IIS its working fine.my questionis how to acces PDF files after hosting in IIS. My Path is some thing like this.. \\inlogicpc17\dotnetkanna\test.pdfRegardsKanna Rgrds Kanna
-
How to import mails??Hi, Thnx could u able to send me the link plz... rgrds Kanna
-
How to import mails??Hi, Thnx could u able to send me some of the link plz... rgrds Kanna
-
How to import mails?? -
help in xps?Hi everyone, i am trying to export listview data to xps using c#.net3.5, wpf. is it possible to export to xps? if it is possible means give me some samples. regards Kanna
-
XAML form opening problem?Hi, Im using framework3.5 WPF using C#,i have designed with three main menus namely client,product and order this menu is designed in mainform and im having client.xaml,product.xaml and order.xaml. in main form im having stackpanel.when im clicking the client menu the client.xaml form it should be open within the mainform stackpanel and product,order correspondigly..how can i achieve this?? Rgrds kanna
-
Stackpanel visibility problem??Hi, Im using WPF for designing the form.im having a dockpanel in the dockpanel i have splited into two regions by using the following code <Border Height="50" x:Uid="Left" CornerRadius="0,0,40,40" Background="#81a4d1" BorderBrush="#4D6C82" BorderThickness="1" DockPanel.Dock="left"> </Border> <Border Width="200" x:Uid="Right" Background="#b2ccec" BorderBrush="#4D6C82" BorderThickness="1" DockPanel.Dock="right"> </Border> Then im having two buttons namely Client and Product in the left border and im having two stack panel with some controls related to client and product.now if im clicking client button means the client information related stackpanel should be visible and if i click product button means the product related stackpanel should be visible, how can i achieve this? i have tried the below code but its getting hidden but the alternate panel is not getting visible.. private void BtnClient_Click(object sender, RoutedEventArgs e) { StkClient.Visibility = Visibility.Visible; StkProduct.Visibility = Visibility.Hidden; } private void BtnProduct_Click(object sender, RoutedEventArgs e) { StkProduct.Visibility = Visibility.Visible; StkClient.Visibility = Visibility.Hidden; } Rgrds Kanna