Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
S

Satheesh1546

@Satheesh1546
About
Posts
26
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Suggestions on format - XML, JSON, XXX...
    S Satheesh1546

    Hi, It is better to use XML way, which is more understandable and easy.But JSON is much efficient and fast.

    Linux, Apache, MySQL, PHP database sysadmin csharp php

  • A Question about Inline CSS
    S Satheesh1546

    Hi, Change the div like this

    Thanks,

    Web Development html css question

  • Rounding a calculation to the nearest 0 or 5
    S Satheesh1546

    Hi, Try Math.floor() Thanks,

    JavaScript javascript tools help learning

  • problem with api messagebox
    S Satheesh1546

    Hi, The problem is with your conversion.. Cheers

    C / C++ / MFC question help json

  • PHP
    S Satheesh1546

    Hi, 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

    Linux, Apache, MySQL, PHP php html database tutorial question

  • Accelerators not working in MFC dll
    S Satheesh1546

    Hi, May be the following link will help you. http://social.msdn.microsoft.com/Forums/en-US/vcmfcatl/thread/8bbdbd37-8034-4489-bd86-2351f0febb37 Cheers

    C / C++ / MFC csharp c++ visual-studio help question

  • MFC, c++ windows programming audio books
    S Satheesh1546

    Hi, You can find more books here. http://ebooks.allfree-stuff.com/eBookShow.php?tEbookID=890&tCatid=45&tCatName=Visual+C%2B%2B Cheers

    C / C++ / MFC c++ help question

  • c++ win32 , equivilent to DateTime.Now() in asp.net
    S Satheesh1546

    Hi, 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

    C / C++ / MFC csharp c++ asp-net database sql-server

  • error has occurred while establishing a connection
    S Satheesh1546

    Hi, Please enable the remote connection option..

    Database help sql-server sysadmin database

  • CProgressCtrl- Marquee Mode
    S Satheesh1546

    Hi, Set the Marquee property to "True". Regards, Satheesh

    C / C++ / MFC beta-testing question code-review

  • c++ win32 , equivilent to DateTime.Now() in asp.net
    S Satheesh1546

    Hi, You can use GetLocalTime().. SYSTEMTIME st; GetLocalTyme(&st); Thanks, Satheesh

    C / C++ / MFC csharp c++ asp-net database sql-server

  • SMPP for PHP
    S Satheesh1546

    Hi, Hope this link will help you.. http://www.ozeki.hu/index.phtml?ow_page_number=142[^]

    Linux, Apache, MySQL, PHP php question

  • container inside container
    S Satheesh1546

    Hi, 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..

    Web Development docker architecture

  • How to change my application (Client-Server using TCP/IP Sockets) to internet based application
    S Satheesh1546

    Hi, 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.

    C / C++ / MFC sysadmin csharp c++ database visual-studio

  • Capture mouse over event on trayicon aplication
    S Satheesh1546

    Hi, This link will help you. http://www.codeproject.com/KB/shell/ctrayiconposition.aspx

    C / C++ / MFC c++ json question

  • Invoke ENTER KEY
    S Satheesh1546

    Hi, try to run this program from the windows command prompt..

    C / C++ / MFC question

  • Cake PHP
    S Satheesh1546

    Hi, 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

    Linux, Apache, MySQL, PHP question php tutorial

  • No Character encoding
    S Satheesh1546

    Hi, Please declare this on top of the page

    Web Development php question

  • How to fill several comboboxes with for loop?
    S Satheesh1546

    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 () ); } } }

    ASP.NET tutorial question

  • Using database
    S Satheesh1546

    Hi, 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..

    Database question php database design
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups