converting

Parser Error Message: The file '/TestSite/Default.aspx.cs' does not exist.

Short story. This site was created by a friend of mine, who did not know that much C# or asp. And was firstly created in VS 2k3. When i converted it to VS 2k8 these errors started to crop up, there was also other issues with compiling that i managed to sort out ( Seemed to be released to VS 2k8 wanted design files ) Error message gotten...

What is the best way to convert an Address object to a String?

I have an Address object that has properties AddressLine1, AddressLine2, Suburb, State, ZipCode. (there are more but this is enough for the example). Also, each of these properties are strings. And I'm using C# 3.0. I'm wanting to represent it as a string but as I'm doing that I'm finding that I'm creating a method with a high cyclomati...

How can I convert an RSS feed to Atom, inline?

I admit to being a bit behind the times when it comes to understanding RSS/Atom feed issues. All I know is, I want to have an Atom feed converted to an RSS feed inline. Meaning that I want to specify an option somewhere that says use this xsl or whatever to convert the Atom feed to an RSS feed. Is there some way to accomplish this tha...

Video Conversion to WMV

A project I am currently working on at work requires the ability to convert videos from other formats to the WMV format. We need to be able to convert virtually any video format that is commonly used to a WMV format. I am looking for a solution allot like On2's flix engine converts other video types to .flv videos. I am aware of the enco...

std::string to float or double

Hello, i'm trying to convert std::string to float/double. I tried: std::string num = "0.6"; double temp = (double)atof(num.c_str()); But it always returns zero. Any another ways? You could see debugger result in this screen: ...

C# to VB.NET Event Conversion

Porting an application from C# (1.1 framework) to VB.NET (3.5 framework), and I have this one last event based issue I cannot get my head around. This is the original C# code public delegate void SpecialEventHandler(object sender,SpecialEventArgs e); public event SpecialEventHandler SpecialEvent = null; _SpecialLogWriter SpecialWrite...

how to convert a value type to byte[] in C#?

I want to do the equivalent of this: byte[] byteArray; enum commands : byte {one, two}; commands content = one; byteArray = (byte*)&content; yes, it's a byte now, but consider I want to change it in the future? how do I make byteArray contain content? (I don't care to copy it). ...

Looking for some sample code audio conversion with the iPhone caf=>m4a

Hi Developers, I am struggling with converting a recorded pcm/caf file (recorded via the AudioQueue) to a m4a file. I should be possible somehow with the "AudioConverter.h" but doesn't seem to be easy at all. If you have seen an example or have a code snippet it would be great if you can post it. Thanks for your help Tom ...

PCM wav to vox file

I want to convert between audio files of format 8 bit Mono PCM wav to ADPCM vox file.. Can anybody suggest me how to convert it by using our own source code rather than any converter software.. The format of win32 dll would be very helpful for me.. ...

Issues with links while trying to converting HTML to XML

I am trying to convert an html file to xml. It is working for the most part. The issue I am having is with links. Right now it seems to be completely ignoring the link in my test file. Here is the convert code: <?php ini_set('display_errors', 1); ini_set('log_errors', 1); ini_set('error_log', dirname(__FILE__) . '/error_log.txt'); e...

Converting HWND object to other object type

I want HWND object to be converted to my user defined object..may i know how can i archive this? Below is my sample code : File1.cpp { XYZ(*this); } File2.cpp { XYZ(HWND hwnd) { // Here i want to access instance of File1.So can i type cast the HWND object } } } ...

After VS2008 to VS2010 project upgrade getting "manifest signing certificate" error

I created a test project with VS2008 C# Express on computer 1 (Vista). I converted it to VS2010 C# Express on computer 2 (Windows 7). The converted project gives me this error: Unable to find manifest signing certificate in the certificate store. I've found articles about signing project certificates etc. but they are not that ...

Python website convert into Adobe Dreamweaver CS3

Comfortable in Adobe Dreamweaver CS3, is there a way to convert a website written in the Python language www.qingdynastyimports.com into Dreamweaver for those who aren't familiar in writing in code? thanks for any comments. ...

MS Word documents to rtf documents

Hi all, I've a problem: my application must convert ms word documents (imported from another system) into rtf documents, in order to be manipulated with OOo APIs and to be immune from mistakes (for coding incompatibility reasons). I ask you: how can I manipulate ms word documents directly from my Java application? There are APIs (like...

Converting a .NET object to (byte*)

Is there a way to cast a System.Object to byte*? ...

Converting operator in enum

Hi, I wrote class like this: #pragma once #include "stdafx.h" struct Date { private: int day; int year; enum Month {jan = 1,feb,mar,apr,may,jun,jul,aug,sep,oct,nov,dec}; Month* month; enum date_state { good,err_flag, bad_day, bad_month, bad_year, }; //I would like to define converting operator from enum to char Date::date_state::oper...

how to convert pdf to txt in C#

i need to convert a pdf file to txt file (or doc, but i prefer txt) in c# can someone tell me how can i do it? i saw something about it when i searched i Google but i didn't understand where i should put the file. so can someone tell me what references i need to do and what files do i need to add and where and what the code for the conve...

Converting uploaded videos to .flv and having them added to my website

I plan to open a smaller and more specialised Youtube like site where users can upload their videos in a variety of formats and it will be converted to .FLV, and then posted on the website. Most of the code I can handle myself, but I wanted to get some feedback on the uploading and converting stage of this. I'm planning to have the conv...

Making a simple assembly emulator

Dear All, I am working on project that is detecting unknown Viruses, so i am going to build my small emulator that emulates the assembly code of the executable so i can detect whether it is a virus or not by emulating it to virtual registers then observing what happens. so i need help in getting the code of every assembly instruction in...

How to convert VC++ 6.0 project to eMbeddedVC++ 4.0 project?

I got a project written on VC++ ...