The Incredible Arrogance of Being Eric Schmidt Digital Media Digital Marketing Search Engine Strategies by Techwriter10 In [URL="http://mediamemo.allthingsd.com/20091007/live-from-new-york-google-cofounder-sergey-brin-meets-the-press/"]wide ranging interview[/URL] with Peter Kafka of the [URL="http://allthingsd.com/"]Digital Memo Blog,[/URL] Google CEO Eric Schmidt and co-founder Sergey Brinn did their best to give people the impression that … Space; Geeks Final Frontier Community Center by tiger86 Richard Garriot; a famous Game developer has just returned from his tour in space on the Soyuz TMA-12 a tourist cruise line in space called “space adventures”. Garriots father Owen Garriot is a former NASA Astronaut; which may have been why Richard Garriot Paid $35 million dollars for his 12 day ticket into space. Richard is the 6th space tourist … Google Feeling Economic Pinch Digital Media Digital Marketing Search Engine Strategies by Brian.oco Lots to talk about today. You've probably already have read about Microsoft's $45 billion buyout of Yahoo. Obviously, Microsoft is giving up on its MSN web portal and throwing it's weight and capital behind Yahoo. For Yahoo, which has seen its stock slide precipitously in the last year, the deep pockets of Microsoft are a welcome balm or a company … Microsoft and Apple Should Follow Google Out of China Hardware and Software macOS by Techwriter10 [ATTACH=right]14127[/ATTACH] [I]We can be Heroes For ever and ever What d'you say ~David Bowie, Heroes [/I] Yesterday afternoon I read with some surprise that [URL="http://www.washingtonpost.com/wp-dyn/content/article/2010/03/24/AR2010032401543.html"]domain registrar Go Daddy was following Google out of China[/URL]. It seems they had had … Comparing string if empty space Programming Software Development by speedy94519 Hey guys. So I basically read in a bunch of data from a file into a data structure. But while I was doing that I included the spaces (which I dont want). So now I want to compare each element to see if it does have a blank space, and if it does i want to ignore it by incrementing some random variable, and if it isnt I want to put it into a new … WapEmpire — mobile affiliate network Digital Media Digital Marketing Search Engine Strategies by SergeyWE Hello everyone, Wapempire is a young but rapidly developing network. Our team has many years of online marketing experience which allows us to provide the best terms of partnership for our publishers. We mostly work with mobile offers such as 1WapClick (adult/non-adult), Dating & iOS/Android apps. But it doesn't end there - we are always … Re: Microsoft and Apple Should Follow Google Out of China Hardware and Software macOS by Techwriter10 Brin takes a different tack in this [URL="http://www.guardian.co.uk/technology/2010/mar/24/google-china-sergey-brin-censorship"]interview with the Guardian[/URL]. He is much more critical of the US government for not taking a role and of rival Microsoft than he was in the NYT interview I linked to in this post. Of course, Brin was willing… Rectangular Marquee Tool Programming Web Development by devaka Hi! Are you javascript developer and looking for some tool like Photoshop rectangular marquee tool on javascript? Or may be you are just interested in Internet novelties? Any way welcome on board to [URL]http://marqueetool.net[/URL]! Marquee tool allows you to select rectangular areas on <DIV> or <IMG> elements for some your actions...… Using MsgWaitObject Programming Software Development by Qpido [URL="http://img442.imageshack.us/img442/3852/programjy5.jpg"]My Program[/URL] The link above leads to a picture of the program I made. This program makes the price show up out of an Excel file for transportation costs. With the help of some on this forum I have gotten this far with the program, and I'm very grateful for that. It's … what command in C# round number Programming Software Development by polo_coins I want to round number for example number 2.8 to 3 and 2.4 to 2.5 how I made so in C# I heard something about Math.Round function but it doesn't work properly Thanks Sergey solve a small encapsulation in C# Programming Software Development by polo_coins i want some encapsulation problem int num; num=int.parse(Console.Readline()); here i have a problem if user enter a string i get encapsulation how can i solve it in easiest way my friends told me some function of try() ..catch() but I don't understood it Thanks Sergey problem with enum list Programming Software Development by polo_coins I have some code bellow enum Part ( center,north,south); ...... how can i to prevent from an user to enter a data out of range of this enum group. I mean if he/she type 3 or 4 Thanks Sergey Re: solve a small encapsulation in C# Programming Software Development by polo_coins I want just to prevent of entering wrong data from user of my program I mean : int num; num="ssss"; this cause encapsulation and I want to prevent it If somebody can put some code here i will be glad to check it Thanks Sergey Use of DataTime method wait to yours opinion Programming Software Development by polo_coins Hi, again about [B]DateTime[/B] method I get to some conclusionns and build a class of my problem that solve the last expired day of some product I get a day od today and number of month when product can used without any problem and the day when product was made and compare these two days... i want to here your opinion about this clas and usinf … Re: problem with enum list Programming Software Development by polo_coins [QUOTE=dickersonka;714179]if you are doing it in code, make the method accept an enum value if you can do that, agree with lizr and validate what is passed in, might want to add an enum value of unknown to your list and use it if an enum isn't valid for the specified int[/QUOTE] Thanks I will try it. Sergey Re: what command in C# round number Programming Software Development by polo_coins [QUOTE=ddanbe;715766]There is as of .NET 2.0 a Math.Truncate function. It migght help.[/QUOTE] double num; num = 2.89; num = Math.Truncate(num); Console.WriteLine(num); I made simple tried and result I get 2 and not 3 like I wanted you gave me a tool to work with double types but it's round it to … have a problem with inheritance Programming Software Development by polo_coins I built two different classes and I want that one class get inherit from another , but when I build Constructions Compiler throw me an Error. I get to conclusion that i must use [B]base[/B] function so I build Constructor like this one : [B]public name_class:base()[/B] my question what do I put between parentheses and if my syntax o.k and … Re: have a problem with inheritance Programming Software Development by polo_coins [QUOTE=scru;716083]Have you tried: [code=C#] public class Child : Parent [/code][/QUOTE] It's O.K. this thing I understand I mean syntax of building Constructors and call for Metgods of parents, I tried a couple things and here what I got : [B]public Name_of Chuld (type_of_variable name_of_it):base(name_of_this_variable_in_Parent)[/B]… question about kind of class Programming Software Development by polo_coins I asked in my studies build a "[B]sealed [/B]" class and I don't really understand it's differents from regular class and what different in syntax it has Thanks Sergey use System.Drawing() Programming Software Development by polo_coins I want use this option do I must know how to add DLL files ? Thanks Sergey:idea: Font style ,in Console Programming Software Development by polo_coins I made project in Console are the any way change font style in it(and there is can I change size too? Thanks Sergey some problem with Interfaces Programming Software Development by polo_coins I have some code bellow and I get an exception what wrong with this code, I'm just started to study with section of OOP so maybe I made a stupid mistake : [ICODE]static void Main(string[] args) { Ishow c1 = new Circle(1, 2, 10); c1.show(); interface Ishow { void show(); } class Circle:… using in lass StringBuilder Programming Software Development by polo_coins I discovered that there is a such class like StringBuilder but I don't find any thing that convince me to use it. Explain me it's advantage and disadvantage and if you gave some examples I like to see them thanks a lot Sergey default choice of ComboBox Programming Software Development by SerogaM Hi,I'm new in WinForms Application help me change my ComboBox to default state of one of Collections I have Thanks Sergey another question about ComboBox Programming Software Development by SerogaM how can i choose in one ComboBox one choice and get a list in a ListBox specific to this choice. Sergey Adding picture like background WinForm Programming Software Development by polo_coins Hi, and happy hollidays to everyone, I start working with WinForms about a week and wonder how could I add a picture like a background to m Form. What kind of files C# can get(*.jpg,*.gif) thanks a lot Sergey some question about login window Programming Software Development by SerogaM I build Log in window where user enter his usernmae and password I still don"t want use SQL and any data keeper, it's only for two users so I check the password and username if it' ok than user must press botton OK and load next window this step I can't over . Are the any suggestions ??? Sergey Re: some question about login window Programming Software Development by SerogaM thanks Ramy and ddanbe your both answer my question Sergey How I use IsMdiConteiner Programming Software Development by polo_coins I want to build one Form that is a Parent window and two windows for child windows but my problem is this a code .I glad to see your suggest for this problem Sergey C++ Statisitcal Method ReInventing Wheel? Programming Software Development by peacerosetx Greeting All, Peace. New to this forum and am confused about how to approach data analysis of variables with C++. My question I is am simply going to do simple descriptive statistics (mean, mode, variance), and a little more complicated chi square / correlation (Pearson). The approach that I am going to take is that I am going to write my own …