473,549 Members | 2,982 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Radix 64 (uuencoded files)

Hi,

What libraries does C# have for UUEncoding a file?
Thanks
Jul 21 '05 #1
4 1853
Hi,

There is the MailEncoding enumeration that has a member UUEncode which
Specifies that the e-mail message uses UUEncode encoding , you have to use
the namespace System.Web.Mail .

to encode some data , there is the ATL Function UUEncode
inline BOOL UUEncode( const BYTE* pbSrcData, int nSrcLen, LPSTR
szDest, int* pnDestLen, LPCTSTR lpszFile = _T("file"), DWORD dwFlags =
0 ) throw( );hope this would help
--
Mohamed Mossad
Microsoft GTSC Developer support for Middle East
<di********@dis cussion.microso ft.com> wrote in message
news:em******** ******@TK2MSFTN GP10.phx.gbl...
Hi,

What libraries does C# have for UUEncoding a file?
Thanks

Jul 21 '05 #2
I dont want to mail it I want to save and load it.
"Mohamoss" <Mo************ @egdsc.Microsof t.com> wrote in message
news:OC******** ******@TK2MSFTN GP10.phx.gbl...
Hi,

There is the MailEncoding enumeration that has a member UUEncode which
Specifies that the e-mail message uses UUEncode encoding , you have to use the namespace System.Web.Mail .

to encode some data , there is the ATL Function UUEncode
inline BOOL UUEncode( const BYTE* pbSrcData, int nSrcLen, LPSTR
szDest, int* pnDestLen, LPCTSTR lpszFile = _T("file"), DWORD dwFlags = 0 ) throw( );hope this would help
--
Mohamed Mossad
Microsoft GTSC Developer support for Middle East
<di********@dis cussion.microso ft.com> wrote in message
news:em******** ******@TK2MSFTN GP10.phx.gbl...
Hi,

What libraries does C# have for UUEncoding a file?
Thanks


Jul 21 '05 #3
then , I think you still can use the ATL function UUEncode
it reside in the header "atlenc.h" and it has this definition
inline BOOL UUEncode( const BYTE* pbSrcData, int nSrcLen, LPSTR
szDest, int* pnDestLen, LPCTSTR lpszFile = _T("file"), DWORD dwFlags

if you are a bit familiar with c++ you can write an
small dll that expose this function then reference it in your C# solution
<di********@dis cussion.microso ft.com> wrote in message
news:%2******** ********@TK2MSF TNGP11.phx.gbl. ..
I dont want to mail it I want to save and load it.
"Mohamoss" <Mo************ @egdsc.Microsof t.com> wrote in message
news:OC******** ******@TK2MSFTN GP10.phx.gbl...
Hi,

There is the MailEncoding enumeration that has a member UUEncode
which Specifies that the e-mail message uses UUEncode encoding , you have to

use
the namespace System.Web.Mail .

to encode some data , there is the ATL Function UUEncode
inline BOOL UUEncode( const BYTE* pbSrcData, int nSrcLen, LPSTR
szDest, int* pnDestLen, LPCTSTR lpszFile = _T("file"), DWORD

dwFlags =
0 ) throw( );hope this would help
--
Mohamed Mossad
Microsoft GTSC Developer support for Middle East
<di********@dis cussion.microso ft.com> wrote in message
news:em******** ******@TK2MSFTN GP10.phx.gbl...
Hi,

What libraries does C# have for UUEncoding a file?
Thanks



Jul 21 '05 #4
<di********@dis cussion.microso ft.com> wrote in news:emRtuan3DH A.2556
@TK2MSFTNGP10.p hx.gbl:
What libraries does C# have for UUEncoding a file?


http://www.IndyProject.org/indy.html

Has full UUE capabilities and is free.
--
Chad Z. Hower (a.k.a. Kudzu) - http://www.hower.org/Kudzu/
"Programmin g is an art form that fights back"
ELKNews - Get your free copy at http://www.atozedsoftware.com

Jul 21 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
14151
by: Mike | last post by:
I am sure that I am making a simple boneheaded mistake and I would appreciate your help in spotting in. I have just installed apache_2.0.53-win32-x86-no_ssl.exe php-5.0.3-Win32.zip Smarty-2.6.7.tar.gz on a system running WindowsXP SP2. Apache and PHP tested out fine. After adding Smarty, I ran the following http://localhost/testphp.php
18
4180
by: Kevin Doyle | last post by:
Hi I just found this macro. I want to convert a dword to string using this _ultoa but I don't understand the radix part of the function. what value of radix should I use so as not to effect the value being converted? Cheers, Kevin.
7
10074
by: Foodbank | last post by:
Hi everyone. I'm having trouble with this radix sorting program. I've gotten some of it coded except for the actual sorting :( The book I'm teaching myself with (Data Structures Using C and C++) just doesn't explain things good at all and the tutorials I've viewed don't really explain least significant digit first sorting or show examples,...
2
2398
by: Foodbank | last post by:
Hi everyone, I'm having trouble implementing a supposedly simple Least Significant Digit first Radix Sort. The book I'm using gave me somewhat of a template that I touched up (below), but I'm very unsure of where to start. I know the basic layout (Initialization of memory space, Distribution of numbers in bins, and then Collection of the...
1
8660
by: Foodbank | last post by:
Hi, I'm currently teaching myself C data structures in preparation for a job transition and I've just passed the point in which radix sorting was covered in my book. I've recently finished a radix sorting program and was surprised by its speed. Therefore, I'd like help with a radix tree program in order to compare it with a prior binary...
3
3401
by: Tracey | last post by:
I'm learning C++ and was stuck when writing code to convert a negative decimal number string to a hexdecimal number. For example, suppose the function interface is defined as: int atoi( const char*, size_t radix) One input string is "-1234" and radix is 16. How to get the correct hexdecimal integer? Can anyone help ? Thanks in advance!
1
3611
by: crimson08 | last post by:
does anyone know how to use radix sorting in a linked list???
3
5164
by: aRTx | last post by:
I have try a couple of time but does not work for me My files everytime are sortet by NAME. I want to Sort my files by Date-desc. Can anyone help me to do it? The Script <? /* ORIGJINALI
0
1741
by: Nick Keighley | last post by:
On Oct 25, 1:50 pm, Eric Sosman <esos...@ieee-dot-org.invalidwrote: since the pointer indicates the "last" digit. It indicates how many digits there are. I'm guessing that N is just some large number <snip> -- Nick Keighley
8
6818
by: tejas2991 | last post by:
could someone please gimme the main code for "radix sort" using stack
0
7518
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main...
0
7446
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
7715
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
1
5368
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
5087
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
0
3480
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
1935
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
1
1057
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
757
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.