Class Date Programming Software Development by janito2008 …'m trying to figure out how to get it to dislplay the last 2 forms. Below is what I have so… vb6.0 combo box Programming Software Development by newto_vb …; property is read-only. runtime error '383'. i want to dislplay FIND record details and rest LIST Items also, so that… Unable to call ajax function in a loop Programming Web Development by gshockneo … to track progress of a database operation . and want to dislplay percentage progress on page asynchronously. Process.jsp - In this i… Firebird and PHP (or help with PHP Generator) Programming Web Development by coolmike I need help with using php to dislplay data from a firebird database. I've tried various methods … retrieve data from mysql and display as popup notifications Programming Web Development by ratanji when new row inserting into mysql, then i want to dislplay some popup notification for few seconds in some page. so pls help me anyone ? thanx in advance :) How to read in strings from a file convert to byte code and save in array Programming Computer Science by queenofdrama365 JAVA How to read in strings from a file convert to byte code (unicode) and save in array for hashing? how to use hashing (using list of strings) to find longest chain? (from text file dont print the output in a file just dislplay.) show slow array into textbox c# Programming Software Development by Jose_12 … like a process roundd 1 //wait a few seconds to dislplay another line for (i = 1; i <= r; i++) { label3… Re: newbee VB coder needs help with login forms. . . . . Programming Software Development by CPUTcoder …[/I] and when I ran it, it did not even dislplay the login form it just displayed the form that I… Re: Problem in Try and Catch..need help Programming Software Development by jemz … then enter array of names of five then it will dislplay search names and then search keyword... but the code that… Re: Use user's input to set the decimal format Programming Software Development by Start4me … okay that I have so many lines of code to dislplay a single line: out.print(" ("); out.format(formatX… Re: Class Date Programming Software Development by iamthwee >The problem is that I am having trouble figuring out how to get to to display all three forms I need. Couldn't you store the months as strings in a vector or map, and use the integer 1-12 to spit out the corresponding month. Ps, use code tags Re: Class Date Programming Software Development by Ancient Dragon why are year, month and day doubles? why not int or long? if you use the functions in <ctime> it would make your class a lot smarter -- for example the formatting you desire can be easily accomplished with strftime(). Once you know year, month and day, fill in a struct tm object, call mktime() to get the size_t time variable then call … Re: vb6.0 combo box Programming Software Development by QVeen72 Hi, Unlike ListBox, u cant set the "Text" Property of a ComboBox, especially when its Style property is set to DropDown List. U have to loop thru the List Items and make it selected. Check this : [code] Dim i As Integer Dim str1 As String str1 =RS1.Fields(7) For i= 0 To Combo1.ListCount -1 If Trim(Combo1.List(i)) = Trim(… Re: vb6.0 combo box Programming Software Development by newto_vb hi veena, Thanks veena, logic works fine. regards, ummer [email]shee_ru@yahoo.co.in[/email] Re: vb6.0 combo box Programming Software Development by anto_nee u can do it in a alter(simple) way Combo1.additem rs1.Fields(7) combo1.listindex=combo1.listcount-1 Re: vb6.0 combo box Programming Software Development by QVeen72 Hi Anto_nee, Why add one more Item to the List , When already that item is present in the List..? More over ur logic will not work, if the Combo's Sorted property is True, Coz, after adding to combo, u cannot gaurantee that the added item will be the last or first item, Combo re--sorts itself.. Regards Veena Re: vb6.0 combo box Programming Software Development by anto_nee yah veena i just forgot about the sorting and the combo already have those values i thought he need to add and show so it should come last to the combo sorting - i missed this item and found wrong in my statement sorry veena take care Re: Unable to call ajax function in a loop Programming Web Development by masijade This may be a JSP producing this javascript, the error is, seemingly, in the javascript, however, so the question is better asked in the javascript forum. Re: vb6.0 combo box Programming Software Development by PriyaPD Hai, i am priya,i have a doubt in VB6.0 with Access,How to create a ComboBox,and it want to add his field value to display in the combo box... And Other Doubt i have that how to create a CrystalReport with Excel...in VB6.0 Re: retrieve data from mysql and display as popup notifications Programming Web Development by ratanji aha not like this. i mean while positing status in fb, we see some popup notifications bottom of the page for few seconds. like that i want when row inserted into mysql without refreshing... Re: retrieve data from mysql and display as popup notifications Programming Web Development by adam.adamski.96155 So the new row is inserted before the page is built, and PHP writes the result (success/failure) to a hidden form element. Use <body onload=""> to activate a javascript fucntion that shows the image for desired amount of time. Or use ajax to insert data via a separate php file and show the message on return of the ajax response. Re: retrieve data from mysql and display as popup notifications Programming Web Development by rayidi Dear ratanji, You can take the advantage of jQuery. Ofcourse it might possible with only with jQuery or ajax. So follow the steps. > Step 1:- Create a PHP page that can able to search the database for the new post. > Step 2:- Use some interval to call a function the function contains `$('#result').load('ajax/updates.php');` WHere #… Re: How to read in strings from a file convert to byte code and save in array Programming Computer Science by JamesCherrill 1. Unicode is not a byte code. 2. The web is full of examples of how to read a file 3. That's enough. This is not a free "we do your homework" service. We help people who are making a genuine effort, we don't help people who are too lazy or selfish to type a Google query for themselves. Re: show slow array into textbox c# Programming Software Development by ddanbe Don't know exactly what you are trying to achieve. Line 1 should be `for (int i = 1; i <= r; i++)` Same for j on line 6. Unless you declared i and j as `int` elsewhere. Line 4 `Convert.ToInt32(i)` should be` i.ToString()`, same with all other converts. i and j are integers, why convert them to integers? Re: show slow array into textbox c# Programming Software Development by Jose_12 all is integer Convert.toInt32, the string is a mistake, I need that the result of the code ^(up) is display slow line by line like it: mean that the label where I deployment unfolds each result waiting 3 seconds to display each line Re: show slow array into textbox c# Programming Software Development by ddanbe Guess [this](https://www.dotnetperls.com/sleep) can help you.