Search results

  1. S

    I want to leave x10hosting

    Hi, I want to close my account at x10hosting as I have moved my site somewhere else. Can someone tell me the process of making a 'Delete Request' for my account? Thanks Sumit
  2. S

    My Account Disabled

    Respected, My site has been there for the past 4-5 years but now suddenly its suspended and disabled. Pls let me know the reason for it and pls restore it and let me know if there were any violations so that I can take care of it. I can't even login to CPanel. My domain was...
  3. S

    EMail problem after domain change

    Hye guys Recently I got my domain changed from sumitmehta.x10hosting.com to sumitmehta.co.cc. The problem is that now the domain works fine, the e-mail id that I was using before has stopped working. The user name of the id is sumitfe2. Earlier the id was sumitfe2@sumitmehta.x10hosting.com but...
  4. S

    Problem related with domain

    Hye guys I recently signed up for co.cc domain and having a little problem configuring it. I hope anyone can help me here. I explain you all the procedure that I have followed till now and pls tell me where I went wrong. Firstly I signed up for co.cc domain and made it point to nameservers...
  5. S

    Mathematical recipes: Runga-Kutta Method

    Below is the program illustrating R-K Method in C#. using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace RKMethod { public partial class Form1 : Form {...
  6. S

    Moving text in IE statusbar

    Here is a simple tutorial in javascript on moving text in IE statusbar. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type"...
  7. S

    Mobile Undocumented Tips

    Hye Guys I found a document on mobile tips. I don't know where I found it but I found it dumped into my hard disk. It is a long document so I will post in parts. Hope you will like it. NOTE: Please note that I will not be responsible for any kind of damage to your mobile, if caused by...
  8. S

    Status Labels

    Hye I noticed some status labels or messages below the usernames of other members like x10 Elder, x10 Somophore, x10 Lieutenant. Can anybody tell me how do we get promoted from x10 Member to these and what is their relevance. Thanks
  9. S

    Your Favorite Programming Language

    Hye Guys Let's see which programming language turns out to be the most famous language. Tell us which is your favorite programming language and why? Let us start with me. My favorite is C#.NET. I think it provides many powerful features and provides a very good combination of Java, VB and C++...
  10. S

    Run exe file from php script

    Sometimes it is necessary to execute exe files from a php script Below is the code used for that. <?php $data = array(); // define array exec('dir', $data, $ret); // execute command, output is array echo "<pre>"; if ($ret == 0) { // check status code. if...
  11. S

    Mathematical Recipes: Newton Raphson Method

    Here is a program in C# for Newton Raphson Method. Hope it is useful for somebody. using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace NRMethod { public partial class...
  12. S

    Mathematical Recipes: Lagrange Interpolation

    I hope this program is useful for you people. using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace LagrangesInterpolation { public partial class Form1 : Form {...
  13. S

    Mathematical Recipes: Bisection Method in C#

    Hye Bisection method is the most basic method in root computations. Here is the full implementation in C#. Credits or reps are welcome. using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using...
  14. S

    Collection of C programs

    Hye Guys I am starting this thread to share some of the useful C Programs developed in C. I developed these programs during my exam practice. Most of the programs are runnable. Only a few programs are there which I might have got from somewhere else. These programs are quite important for...
  15. S

    C Program

    Hye Guys I developed some useful and very basic C programs. I would like to share them with you. Here I am posting the first program. Pls let me know if I continue. These programs won't make much sense for experienced C programmers but they will be very useful for the beginners and intermediate...
  16. S

    Saving image in ms sql database

    Saving image in ms sql database using asp.net in vb.net code Hye Guys. I hope this is useful for someone. Imports System.Data.OleDb Imports System.Drawing Imports System.Drawing.Imaging Partial Class RSell Inherits System.Web.UI.Page Protected Sub btnSubmit_Click(ByVal...
  17. S

    A nice article on Windows Services

    Hye Guys. I found a wonderful article on creating Windows Services in C#.NET. I thought to share it with you all. If you like, pls do rep me. First let's take a closer look at Windows Service classes. You can create Windows Services with the help of the ServiceBase class in...
  18. S

    Credit details

    Hye Guys does anybody know the link to any page that tells me how many credits we earn for a particular task. For e.g, no. of credits for posting a msg, starting a new thread, through referrals etc
  19. S

    Pls Help

    Hye I am planning to make a shopping site in asp.net but before planning that project, I uploaded a simple asp.net page to test whether it's working or not. Unfortunately, it's not working. In IE, it shows a blank page while in FF, the script of the page is displayed. So pls help. I have found...
  20. S

    php mail() problem

    Hello everyone I have been trying to send mails through php's mail() function since last two days but that doesn't work.Every e-mail I send bounces back with 'unroutable domain' error.This script was working earlier on but stopped working suddenly which suggests that the script has no coding...
Top