Hi, It is better to use XML way, which is more understandable and easy.But JSON is much efficient and fast.
Satheesh1546
Posts
-
Suggestions on format - XML, JSON, XXX... -
A Question about Inline CSSHi, Change the div like this
Thanks,
-
Rounding a calculation to the nearest 0 or 5Hi, Try Math.floor() Thanks,
-
problem with api messageboxHi, The problem is with your conversion.. Cheers
-
PHPHi, You can post the username with the redirecting url, and from that page you can access the name by Let the redirecting URL should be like this, URL: http://localhost/home.php?user='Sunu'
$user_name = $_REQUEST['user'];
Cheers
-
Accelerators not working in MFC dllHi, May be the following link will help you. http://social.msdn.microsoft.com/Forums/en-US/vcmfcatl/thread/8bbdbd37-8034-4489-bd86-2351f0febb37 Cheers
-
MFC, c++ windows programming audio booksHi, You can find more books here. http://ebooks.allfree-stuff.com/eBookShow.php?tEbookID=890&tCatid=45&tCatName=Visual+C%2B%2B Cheers
-
c++ win32 , equivilent to DateTime.Now() in asp.netHi, SYSTEMTIME st; GetLocalTime(&st); CString strHour, strMinute, strSecond; strHour.Format(_T("%d"), st.wHour); strMinute.Format(_T("%d"), st.wMinute); strSecond.Format(_T("%d"), st.wSecond); You can use this to get the current time. I f you need to update the time automatically.Use a timer with one second elapse time, and use this code in OnTimer(). Thanks
-
error has occurred while establishing a connectionHi, Please enable the remote connection option..
-
CProgressCtrl- Marquee ModeHi, Set the Marquee property to "True". Regards, Satheesh
-
c++ win32 , equivilent to DateTime.Now() in asp.netHi, You can use GetLocalTime().. SYSTEMTIME st; GetLocalTyme(&st); Thanks, Satheesh
-
SMPP for PHPHi, Hope this link will help you.. http://www.ozeki.hu/index.phtml?ow_page_number=142[^]
-
container inside containerHi, I don't understand clearly. But i would like to explain some thing. If you need to have the "description" inside "Search", it should be like this,
enclose the contents of description here..
then you should apply style for the containers as you need..
-
How to change my application (Client-Server using TCP/IP Sockets) to internet based applicationHi, First you need to convert your Server portion to a web architecture.You can use ASP.Net and SQL Server. Then develop the client in Visual c++ or something else, the client must communicate to the database.
-
Capture mouse over event on trayicon aplicationHi, This link will help you. http://www.codeproject.com/KB/shell/ctrayiconposition.aspx
-
Invoke ENTER KEYHi, try to run this program from the windows command prompt..
-
Cake PHPHi, Cake PHP is a framework for developing and deploying PHP appications. Its like some other frameworks like Joomla, Symfony. You can find more information here http://cakephp.org
-
No Character encodingHi, Please declare this on top of the page
-
How to fill several comboboxes with for loop?Hi, 1.Create a dataset. 2. Populate the dropdown list through the dataset. SqlConnection mycn; SqlDataAdapter myda; DataSet ds; String strConn; private void Page_Load(object sender, System.EventArgs e) { if (!IsPostBack) { strConn="Data Source=localhost;uid=sa;pwd=;Initial Catalog=northwind"; mycn = new SqlConnection(strConn); myda = new SqlDataAdapter ("Select * FROM CategoryTable ", mycn); ds = new DataSet(); myda.Fill (ds,"Table"); DropDownList1.DataSource =ds.Tables [0] ; DropDownList1.DataTextField =ds.Tables[0].Columns["CategoryName"].ColumnName.ToString(); DropDownList1.DataValueField =ds.Tables[0].Columns["CategoryId"].ColumnName.ToString(); DropDownList1.DataBind () ; for (int i =0;i < DropDownList1.Items.Count ;i++ ) { DropDownList1.Items[i].Attributes.Add("style", "color:" + ds.Tables[0].Rows[i]"CategoryColor"].ToString () ); } } }
-
Using databaseHi, PHP-Mysql combination is like bread and butter. First you need to install Mysql. Or use some packages like Wamp server. Then , 1. create a database 2. create a table namely 'feedback', with three fields such as dtTime, name , comment. Create table feedback(dtTime datetime, name varchar(55), comment text); Then on website create a page for entering user feedback. Then on serverside for retrieving these comments, write query according to that..