Search:

Type: Posts; User: Samir_1

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Re: Reliance GSM V/s Tata indicom GSM (TATA Docomo)

    Tata Indicom in CDMA space. CDMA has 25% market share. Now they enter in GSM market with attractive tariff plan and offers compare to reliance they launched there service very well. Outgoing rates...
  2. Replies
    4
    Views
    3,948

    Re: Bsnl 3G V/s Mtnl 3G

    I think BSNL working good on 3G service because they launched 3G service in more then 4 circles where as MTNL still not launched service in 2 circles. MTNL is very slow compare to BSNL. Hope next...
  3. Replies
    2
    Views
    5,980

    Re: If / else / else if / switch box in Java

    The switch / case:

    The switch is useful when you need to manage a lot of if / else if / else. It has a shorter syntax and is more appropriate for this type of case.

    Operation:


    switch...
  4. Replies
    2
    Views
    5,980

    Re: If / else / else if / switch box in Java

    Example Instruction else:


    public class Test
    (
    public int variable = 15;

    public Test ()
    (
    if (variable = 20)
  5. Replies
    2
    Views
    5,980

    If / else / else if / switch box in Java

    A condition will allow you to execute a portion of code or not according to the result of Boolean variables, ie you can say "if X is false then I do that, if this and if any of the previous n 'is...
  6. Replies
    2
    Views
    688

    What is a MySpace Editor?

    A MySpace editor is an online HTML editor especially designed to quickly and easily handle your MySpace profile background, etc.

    Most publishers MySpace require no prior knowledge of HTML,...
  7. Replies
    2
    Views
    1,194

    Re: How to include files in PHP

    The code is of course very simplified, we consider that the est_member () is higher in the code) The only goal is to understand what can cause the lack of inclusion of sensitive files. Here, we use...
  8. Replies
    2
    Views
    1,194

    Re: How to include files in PHP

    Require inclusion with

    the structure of language require works the same way include. However, there is a difference between these two methods. When you try to include a file if the file is not...
  9. Replies
    2
    Views
    1,194

    How to include files in PHP

    The code itself is very simple. It uses the structure of language "include". It may not take parentheses. This structure will allow you to include a PHP file to interpret. Here is an example to...
  10. Replies
    3
    Views
    1,331

    Re: What is SQLite ?

    SQLite implements most of the SQL-92 standard for SQL. For example it has partial support for triggers and supports most complex queries, but it silently ignores referential integrity constraints...
  11. Replies
    3
    Views
    1,101

    Re: How hard is it to learn c++

    it varies dramatically from person to person based on the skills and talents they bring to the table and based on their own tastes and desires. Maths plays important role in programming. Programming...
  12. Replies
    3
    Views
    2,263

    Re: PHP suppress warnings

    Which error you are getting if you are getting display_errors This determines whether errors should be printed to the screen as part of the output or if they should be hidden from the user. Value...
  13. Thread: What is GDI+ ?

    by Samir_1
    Replies
    4
    Views
    1,923

    Re: What is GDI+ ?

    Brushes (Brush)

    This class is the basis for derived classes 5:

    SolidBrush painting united

    HatchBrush painting with hachures

    TextureBrush painting with a texture
  14. Replies
    1
    Views
    5,696

    Re: do...while loop in C programming

    Sometimes we would like to evaluate the condition or at the beginning or the end of the loop, but somewhere in the middle. The trick then is to create an infinite loop (condition always true) and use...
  15. Replies
    3
    Views
    1,914

    Re: How to Create image in PHP ?

    Don't use gif unless you have an old version of GD (I doubt it) use png instead. heres a simple example:
    <?php
    header("Content-type: image/png");
    $image = imagecreate( 200, 200 );...
  16. Replies
    2
    Views
    1,507

    Re: Whats the best way to learn oops

    See this : http://forums.techarena.in/software-development/1091041.htm it will help you..
  17. Re: Experts Say : "India's examination system is faulty"

    The existing Examination system and procedure of judging one’s ability is so unnatural and faulty that a mediocre student can secure distinction marks and an intelligent may cut a sorry figure....
  18. Replies
    1
    Views
    744

    Re: Problem with Php date function

    Did you try to set LC_TIME without the quotation marks like this:

    setlocale (LC_TIME, "fr");
    $ hour = date ( "H: i");
    $ JourL = strftime ( "% A");
    $ Day = strftime ( "% d");
    ...
  19. Replies
    4
    Views
    1,586

    Re: How to make Multithreading games ?

    Multithreaded programming doesn't seem as hard as it used to, but it's still challenging to wring the greatest amount of performance out of multiple processor cores.
  20. Replies
    2
    Views
    1,077

    Classes in VB.NET

    Classes in VB.NET
    Classes are types and Objects are instances of the Class. Classes and Objects are very much related to each other. Without objects you can't use a class.


    Public Class Test
    ...
  21. Thread: opengl project

    by Samir_1
    Replies
    3
    Views
    1,997

    Re: opengl project

    You can download Nigel’s opengl devpak from Here. From the list on the page Download glut.3.7.6+.DevPak to a local folder.In Dev C++,open the package manager: Tools->Package Manager.Here,you can...
  22. Replies
    4
    Views
    8,160

    How to Get Current Username in VB.NET

    This code demonstrates how to retrieve the username of the current windows user in VB.NET


    Declare Function GetUserName Lib "advapi32.dll" Alias _

    "GetUserNameA" (ByVal lpBuffer As...
  23. Replies
    2
    Views
    2,025

    Re: What is Visual C++ ?

    To begin to understand how to use Visual C++, you must first be familiar with using C or C++ in a text-based environment. If you're not, I suggest first picking up a good introductory book on...
  24. Re: how to create sql temporary table for xml format using vb.net

    Temporary tables can be created like any table in SQL Server with a CREATE TABLE or SELECT..INTO statement. To make the table a local temporary table, you simply prefix the name with a (#). To make...
  25. Replies
    0
    Views
    934

    ASP.NET Working with Buttons

    The following example demonstrate the technique to create two buttons on a page.Buttons are used to trigger actions. Without buttons, we cannot do any sort of work on the form. Button is a Webform...
  26. Replies
    3
    Views
    1,337

    Re: Which is easy to learn ASP Or PHP ?

    The PHP syntax is very similar to Perl and C. PHP is often used together with Apache (web server) on various operating systems. It also supports ISAPI and can be used with Microsoft's IIS on Windows
  27. Replies
    2
    Views
    5,408

    Re: Calculator in C programming

    I am having this Calculator code


    #include<stdio.h>

    float add(float,float);
    float sub(float,float);
    float product(float,float);
    float divide(float,float);
  28. Replies
    2
    Views
    1,866

    Re: Is GUI same like Visual Basic ?

    A GUI offers graphical icons, and visual indicators, as opposed to text-based interfaces, typed command labels or text navigation to fully represent the information and actions available to a user....
  29. Replies
    2
    Views
    1,038

    Re: How to create Tables in HTML ?

    Tables are defined with the <table> tag. A table is divided into rows (with the <tr> tag), and each row is divided into data cells (with the <td> tag). The letters td stands for "table data," which...
  30. Replies
    1
    Views
    1,156

    Re: New channels on Reliance bigtv

    I have no information about that from where you got this info that this channels coming on big tv
  31. Replies
    2
    Views
    1,015

    Re: Information about MySQL UPDATE Query

    You modify table by using SQL UPDATE command. This will modify any field value of any MySQL table. Here is generic SQL syntax of UPDATE command to modify data into MySQL table:
  32. Send FREE National or Local SMS on virgin mobile

    Virgin Mobile, India’s first national youth-focused mobile services brand, introduced yet another revolutionary youth focused proposition by making SMS the new voice of the youth by ushering in...
  33. Replies
    5
    Views
    2,978

    re: ORACLE is a DBMS or RDBMS

    The Oracle Database (commonly referred to as Oracle RDBMS or simply Oracle) consists of a relational database management system (RDBMS) produced and marketed by Oracle Corporation.
  34. Replies
    1
    Views
    1,121

    Re: Choose your ISD/STD operator

    TRAI had earlier said introduction of calling-cards for making STD and ISD calls is the best alternative to the carrier selection code (choice of operators) as this would save cost, which can be...
  35. Replies
    0
    Views
    4,407

    Features of Airtel IPTV

    Features & Advantages Of Airtel IPTV

    Digital TV interactive from Airtel makes your TV viewing experience magical! Going beyond what you watch at home. digital TV interactive puts the control in...
  36. Replies
    2
    Views
    8,215

    Re: Is TATA indicom launched 3G services ?

    No TATA indicom not launched 3G services. Only MTNL launched 3G services in some part of delhi not even in Mumbai. BSNL also going to launched 3G services in India.
  37. Replies
    2
    Views
    1,608

    Re: Nokia N73 showing USB option

    Install Nokia N73 drivers. Before downloading and installing the driver, make sure the cable is disconnected from your PC.
  38. Replies
    1
    Views
    1,013

    Re: Code for returning the QueryString

    htm file : process.htm


    </HEAD>
    <BODY style="font-family:arial">


    <SCRIPT LANGUAGE="JavaScript">
    <!--
  39. Replies
    1
    Views
    1,013

    Code for returning the QueryString

    The three files given below must be kept in same folder. The file controls.xml must be opened in browser.
    The output will be the form generated through xslt. When user clicks on submit the file...
  40. Replies
    3
    Views
    15,792

    Re: What is differance between Kbps and KBps

    1 kb/s = 1000 bits per second
    1 KB/s = 1024 bytes per second

    A Kilobit is one thousand bits. It is used to measure the amount of data transferred per second. Kilobits per second is shortened to...
  41. Replies
    2
    Views
    12,105

    Re: Free Hello Tunes on Airtel

    Is this offer valid for everyone? means old customer also.
  42. Replies
    3
    Views
    1,394

    Re: dll error : winspool.drv

    Properly reinstall the drivers for your printer.
  43. List all Files and Directories in a Directory

    We can list all the files in a directory. If we come across a directory our program should again explore it and find files within that directory.



    using System;

    using System.Drawing;
    ...
  44. Re: High-speed broadband brings entertainment revolution at a cost

    The downside to this rich-media revolution is that high-resolution, quality video files and streams require more data to be downloaded than ever before meaning broadband provider download allowance...
  45. High-speed broadband brings entertainment revolution at a cost

    Online rich media is on the cusp of a revolution as average UK broadband download speeds reach 5Mbs for the first time, according to Top 10 Broadband the UK’s largest independent broadband...
  46. Replies
    2
    Views
    1,805

    Want some info on TATA Wimax

    I want some information about TATA Wimax. If any one know about TATA Wimax tariff plz provide me info thanks
  47. Replies
    1
    Views
    2,868

    Re: TATA Sky DTH in Mumbai

    TATA sky provides good service in Mumbai. There Scheme all are very good compare to others.
  48. Replies
    8
    Views
    11,767

    Re: Download Vodafone ringtone

    You want vodafone ringtone. sorry friend i am having Hutch ringtone ie. U and i.....
  49. Re: How to Convert uppercase characters into lowercase characters in C++

    Here is the Program that will convert lower case letters to upper case



    #include<iostream.h>
    #include<conio.h>

    void main()
    {
  50. Replies
    1
    Views
    3,317

    MTNL Dolphin tariff plan

    MTNL Dolphin Plan C

    Activation Charges : Rs.250
    Monthly service charges : 550
    Free Talk Value : Rs.350

    O/G Local Calls

    To Dolphin/Trump/Garuda : Rs. 0.40
    To Other Cellular Network/WLL ...
Results 1 to 50 of 54
Page 1 of 2 1 2
Page generated in 1,711,650,095.33871 seconds with 17 queries