conversion

LinkedList<T> (2.0): removing items iteratively

Hi guys! I need to iterate through a LinkedList<T> (in .NET 2.0) and remove all the items according to a given criteria. It was easy way under Java, since I could do the following: Iterator<E> i = list.iterator(); while (i.hasNext()) { E e = i.next(); if (e == x) { // Found, so move it to the front, i.remove(); ...

access to excel conversion

I have an access database in which the field type is text and it contains 26 numbers. I converted it to excel, but it has only the first 5 numbers Text in database: 91234612345678912345678912 Text in excel : 9.12346E+25 How to get the entire field from database to excel? ...

3gp to wav file Android

Hi, i want to convert 3gp file to wave file can i do it programmatically . As the headers are different is it possible .Any help would be appreciated Thanks in advance. ...

Convert milliseconds to seconds in C.

Simple C question, how can I correctly and succintly convert milliseconds to seconds. There are two constraints: I've no floating point support in this tiny subset-of-C compiler I need the seconds rounded to the nearest second(1-499ms rounds down,500-999ms rounds up. Don't need to care about negative values) int mseconds = 1600; // sh...

Mysql bad date (data) in string field how to find/validate?

I have a string field in Mysql (date fields imported from from MSSQL) and I'm using the following to convert the string value and place it in a new (MYSQL) date-time field, Update Table_name set STATUS_DATE= STR_TO_DATE(substring_index(SSTATUS_DATE," ",1),'%c/%e/%Y'), somewhere in the table I have bad data and the query stops and ...

PDF to JPG Conversion in COCOA

In my cocoa application , I need to save each page of the pdf as a jpg .. How can i proceeed using Objective C ...

How to "apply" backspace characters within a text file (ideally in vim).

I have a log file with backspace characters in it (^H). I'm looking through the file in Vim and it can be quite hard to see what's going on. Ideally I'd like to be able to "apply" all the ^H on a given line/range so that I can see the final result. I'd much rather do this within Vim on a line-by-line basis, but a solution which convert...

How to convert an address into a Google Maps Link (NOT MAP)

After looking (Googling) on the web for a while I can find nothing that takes a address like: 1200 Pennsylvania Ave SE, Washington, District of Columbia, 20003 and converts it into a clickable link: http://maps.google.com/maps?f=q&amp;source=s%5Fq&amp;hl=en&amp;q=1200+Pennsylvania+Ave+SE,+Washington,+District+of+Columbia,+20003&amp;s...

Prescriptive advice on minimally invasive conversion from Remoting to WCF

Is the advice given in this oft-cited MSDN article still considered sound for converting a .NET Remoting application to WCF? I notice that the article references the deprecated ServiceBehavior attribute ReturnUnknownExceptionsAsFaults, so I question whether people have found other discrepancies or other approaches better suited to intr...

How to get rid of 'System.Web.DynamicData.DynamicValidator' is not defined error during web application conversion

I am trying to convert a web project to Web Application. After conversion I am getting 'System.Web.DynamicData.DynamicValidator' is not defined error. Any idea how to solve this. Three references needed for dynamic data are in the bin but still giving this error on designer files. ...

Long to Object implicit converions broken?

I have this code: DateTime d = DateTime.Today; long l = d.ToBinary(); object o = (long)l; d = new DateTime((long)o); When I execute this code, I get an error on d = new Date..(the last line). It says the argument is out of range; that it is out of the range of max and min ticks. Which does seem probable, as using a debugger l is a hug...

Convert a pointer to an array in C++

Hi, The CreateFileMapping function returns a pointer to a memory mapped file, and I want to treat that memory mapping as an array. Here's what I basically want to do: char Array[] = (char*) CreateFileMapping(...); Except apparently I can't simply wave my arms and declare that a pointer is now an array. Do you guys have any idea how...

Why use !! when converting int to bool?

What can be a reason for converting an integer to a boolean in this way? bool booleanValue = !!integerValue; instead of just bool booleanValue = integerValue; All I know is that in VC++7 the latter will cause C4800 warning and the former will not. Is there any other difference between the two? ...

ASP.NET 2.0: Cannot Convert VarChar to Int

I have an ASP.Net form, where it grabs a value from a textbox: <asp:TextBox ID="txtID" runat="server" maxlength=9></asp:TextBox> The ID HAS to be 9 numbers. After it grabs it, I want to insert it into a database (SQL Server 2005), so I build a parameterized string, 'The Query cmd.CommandText = "insert into table (aid) values ('@aid'...

C: char to int conversion

From The C Programming Language (Brian W. Kernighan), 2.7 TYPE CONVERSIONS, pg 43 : "There is one subtle point about the conversion of characters to integers. ... On some macines a char whose leftmost bit is 1 will be converted to a negative integer. On others, ... is always positive. For portability, specify signed or ...

How to convert double to string without the power to 10 representation (E-05)

How to convert double to string without the power to 10 representation (E-05) double value = 0.000099999999833333343; string text = value.ToString(); Console.WriteLine(text); // 9,99999998333333E-05 I'd like the string text to be 0.000099999999833333343 (or nearly that, I'm not doing rocket science:) I've tried the following variant...

Convert String containing several numbers into integers

I realize that this question may have been asked several times in the past, but I am going to continue regardless. I have a program that is going to get a string of numbers from keyboard input. The numbers will always be in the form "66 33 9" Essentially, every number is separated with a space, and the user input will always contain a d...

cvs2svn include single branch and head ?

Hi, I'm using cvs2svn to convert my repository. I've done it with success in one repository, and now my new problem is a second repository. In my new conversion, I want to convert only the HEAD and one branch. cvs2svn only have "exclude" function for branches, but not "include". I have many many branches and excluding each and every on...

Resources and guidelines for porting an object database + data to a relational database

Does anyone have any pointers to information on techniques for object database to relational database conversion? I've done the standard searches and have only come up with Data Conversion from Object-Oriented to Relational database so far. It's a good paper, but I was hoping for more.... ...

Issues around converting ASP Website to ASP Web Application

We have a web site built as an 'ASP.NET Website' type project, rather than the 'ASP.NET Web Application' type. Aside from the obvious debugging advantages that the app type offers and access to the designer files for each page: What, if anything, can be gained by switching from website project type to app? Are there performance los...