Click here to Skip to main content
15,899,313 members
Everything / Conversion

Conversion

conversion

Great Reads

by NightWizzard
Convert amounts to their spoken equivalents
by Yisrael Lax
Library that provides custom casting functionality from one type to another between properties with disparate names and types
by ToughDev
Code to set and get current time using the RTCC module on PIC24
by Johannes Bildstein
A library for colormodels and spaces, correct color-conversions and color-difference calculation.

Latest Articles

by ToughDev
Code to set and get current time using the RTCC module on PIC24
by Thorsten Bruning
Converting nearly every type to another type
by Cinchoo
Tip to split large JSON file based on deeply nested array property using Cinchoo ETL
by Cinchoo
Use Cinchoo ETL to deserialize selective XML nodes from large XML file

All Articles

Sort by Title

Conversion 

6 Jul 2015 by Anisuzzaman Sumon
I have searched Google a little bit to find out the logic of converting Gregorian date to Bengali date.However so far I searched I found several software of this kind but I need the logic or calculation behind this.Will someone be enough kind to share me some sort of resources of implementing...
7 Jul 2015 by Andy Lanng
Wow! I am sooo good to you!There is no Bengali calendar in .Net. I think this is an oversight so I made one!!!It's a rough cut but it worksI know, right: I'm frickin' AWESOME!usage:var thisDate = DateTime.Now;BengaliCalendar bCal = new...
22 Feb 2018 by VICK
HI All,After googling alot, I have just landed on CP in search of some guidance to resolve my issue.We have been saving time in our table like 11:33 AM in table as 1133.Now i want to get it back in proper time format i.e. in AM PM format to use in our application.Can any body...
4 Dec 2013 by Maciej Los
Please read my comment first.Generally, to convert data from one type to another, please use: CAST and CONVERT (Transact-SQL)[^][EDIT]Reply to OP comment. No, it's not enough information. There are few version of MS SQL Server. Some of them does not provide time data type.DECLARE @t...
18 Dec 2016 by NightWizzard
Convert amounts to their spoken equivalents
10 Mar 2016 by Member 12135144
I recently started learning about ASCII and what role it plays in C# development and I was wondering how can I convert ASCII characters into a string? For instance if I have (7210110810811132119111114108100) which would print out Hello World, how would I convert these numbers into readable...
10 Mar 2016 by Patrice T
Quote:For instance if I have (7210110810811132119111114108100) which would print out Hello World,You look pretty confused. Forget this for now and learn properly C# instead. the problem (which don't exist) will be resolved by itself.
10 Mar 2016 by Sascha Lefèvre
Your string "7210110810811132119111114108100" is constructed by appending the character values formatted as decimals without leading zeroes. So a single character could be represented by 1 to 3 digits. It's impossible to reverse this to a character sequence (string) because an algorithm couldn't...
10 Mar 2016 by OriginalGriff
Um.That string string string1 = "7210110810811132119111114108100";Isn't ASCII.ASCII is a character set, in much the same way as UNICODe is, but a lot smaller. Each character has a value: H would be 72 decimal, or 48 Hex, or (unusually these days) 110 in Octal. Your string may contain some...
14 Mar 2013 by Member 9910835
Dear all, Do you know any effective way to convert a directory with several *.mif files to shapefiles? Please note that my files are in *. mif format not mapinfo tab one. A solution to convert all to mapinfo tab then to shapefile is also acceptable. thanks in advanceEh237
14 Mar 2013 by fjdiewornncalwe
You may wish to refer to this thread where someone has done this: http://social.msdn.microsoft.com/Forums/en-US/sqlspatial/thread/0cc4b50e-7dcd-4bbf-982f-3e9346b3dcab[^]
18 Mar 2019 by Member 14186325
For convert only: for %%i in (.\mid\*.mif) do ( for %%n in (POINT LINESTRING POLYGON MULTIPOLYGON MULTIPOINT MULTILINESTRING) do ( "ogr2ogr" -skipfailures .\shp\%%~ni_%%n.shp %%i -nlt "%%n" -where "OGR_GEOMETRY='%%n'" ) ) And for add geometry to one shapefile by geometry type: for %%g in...
21 Jan 2018 by Avni Salhotra
#include // library of functions for this chip #include // library containing printf() function #include "configureUSART.h" // library for configureUSART(baud) #include "configuration_bits.h" void printCharAsBinary(unsigned char number); void WaitOneSecond(void);...
21 Jan 2018 by KarstenK
You must understand the so called bit shift operator (>>) which moves the bits of the input to lower side. So a repeating call moves all bits out of the memory. This operator moves the bits of the memory which is interpreted as some variable. To really understand it you must understand that all...
21 Jan 2018 by Avni Salhotra
I have solved this thank you all for help
13 Apr 2015 by jaylisto
i have asp.net c#computing total number of hours.since i will pull the data from a database as a string value, i must convert that string to a datetime which seems not working at all.the value 2015, 4, 12, 22, 28, 20 must be a string ( i will pull the data from a database in a later...
13 Apr 2015 by phil.o
You can try DateTime.Parse() method with all its overloads.DateTime.Parse Method[^]DateTime.TryParse can be an option, too.
13 Apr 2015 by OriginalGriff
Don't.Never store DateTime values in a DB as a string: parse them at point of input (or as close as you can get) because only then can you tell what format the user has input them in, and that they are correct. It's far too late by the time they get to the database as they have lost all user...
30 Nov 2014 by Kinna-10626331
I want to transform a double get it from a slider with format "xx.xxxx" into a double with next format "xxxxxx.xx".Example if receive: 15.678934 I want to convet it in: 156789.34I checked in several places but I only find formulas to round or add ceros before or after...
28 Nov 2014 by OriginalGriff
Try this: double d = 12.345678; Console.WriteLine("{0,8:000000.00}", d); Console.WriteLine("{0}", d.ToString("000000.00"));
30 Nov 2014 by Kinna-10626331
I don't know what I was thinking ! Lately I had to do many parsing and conversions stuff that I didn't realize that for this case the solution were simple maths!!double dconverted=mydouble*10000; d.tostring("######.##");
11 Dec 2015 by Rencyrence
Hello, here's the scenario, i have ID no. which is 2014-11-0001, im trying to convert this text to Int, so that i can i can increment it like 2014-11-0002, is there a way to convert DASH to an Int? Please help
11 Dec 2015 by koolprasad2003
No.Dash is a string literal, and does not have numeric meaning, you need to customize the logic to accomplish your taskSplit variable with - and then convert it to int and then do incrementsee below snippetstring szValue = "2014-11-0001";int iCount =...
11 Dec 2015 by Patrice T
You are taking the problem from the wrong end.You have to answer the question "How is built the reference ?"In your case, the reference is build from a year, a month and a counter.Normal app are keeping track of the components of this reference and only build the reference on...
11 Dec 2015 by BillWoodruff
Looked at from a "different" point of view, I see this as asking the question: "how can I have a .NET object that will behave like this: it will have a counter that is sequential, and is unique for all instances of the object; it will embody a DateTime, and it will 'do the right thing' to...
19 May 2017 by Kodeeswaran V Duraisamy
I have C# code, but while converting it to vb.net (using online convertor) is giving me error. C# code is : await client.SendAsync(new TLI() {user_id = user.id}, "MESSAGE"); and the converted code is : Await client.SendAsync(New TLI() With {Key .user_id = user.id}, "MESSAGE") what is Key...
18 May 2017 by RickZeeland
I think you need to do something like this: Dim temp as new TLI temp.user_id = user.id Await client.SendAsync(temp, "MESSAGE") As I am used to C#, I can not tell you if this is the exact syntax.
19 May 2017 by Kodeeswaran V Duraisamy
I found the answer - Just remove the Key Await client.SendAsync(New TLI() With {.user_id = user.id}, "MESSAGE")
1 Apr 2018 by The_Unknown_Member
Why do I need explicit cast in this case: class Program { static void Main() { bool boolVal = true; Animal a = boolVal ? new Dog() : new Cat(); } } class Animal { } class Dog : Animal { } class Cat : Animal { } At this...
31 Mar 2018 by Mehdi Gholam
Most likely a shortcoming of the compiler processor, i.e. the compiler takes one side of the ':' as the output type (probably the left) and assumes the second (right) must match otherwise throws and error without checking the inheritance tree in the case of Dog and Cat and the left side of the...
1 Apr 2018 by BillWoodruff
When you specify the return Type, and the ternary values that may be returned are of different Types, the compiler must check if a Type conversion is possible. These work because the compiler can determine there is a conversion possible: bool boolVal = true; Animal a1 = boolVal ? new Dog() :...
21 Sep 2015 by Ben Denger
Hello, im able to Convert a Doc file to PDF. But the Way i am doing it is very slow, which makes it nearly unusable.Im doing it the following way: wordDocument = appWord.Documents.Open(path, ReadOnly: false, Visible: false); ...
21 Sep 2015 by Dave Kreskowiak
There is no way to speed that up. The operation is completely out of your control.You can TRY other PDF libraries, such as CutePDF and "printing" the word document to a PDF file, but you'll likely end up with the same problem.
21 Oct 2018 by Daniel Pfeffer
15 seconds of Google found this: General Porting Guidelines | Microsoft Docs[^] Which discusses issues in conversion of 32-bit Windows code to 64-bit. See also the subjects in the menu on the left of the screen.
21 Oct 2018 by Abhijeet Bhurke
I have a c++ program named SBLIB DLL Ver 1.0 for Win32 I would like to convert it to 64 bit. I tried to convert it using VS 2008, but not working. I have the below codes, can any one help me. I want to use this DLL in 64 bit OS. Currently this dll can work in all 32 bit OS Source files as...
21 Mar 2016 by Member 12287104
HiHow to convert the following string to integer or to normal ASCII stringstring input = "3285"; //"3285" not equal to "3285"int no = Convert.ToInt32(input);It will threw exceptionThanksWhat I have tried:string input = "3285"; //"3285" not equal to "3285"int no =...
21 Mar 2016 by AnvilRanger
Of course it will throw an exception. You have white space between each digit in the string. First remove the white space then use the int.TryParse to do your convertions.
21 Mar 2016 by Patrice T
Quote://"3285" not equal to "3285"All is in the comment, the second 3285 is an integer made of digits, but the one is some unicode that look like digits but is not made of digits.the "3" is coded in utf-8 as EF BC 93the "2" is coded in utf-8 as EF BC 92the "8" is coded in utf-8 as EF BC...
14 Oct 2016 by H.AL
I am using Asciistr method in oracle which is supposed to convert given structure to ascii. Arabic characters are converted correctly but english are still the same while in some online converters I can see that numbers like 1 and 2 are converted to 0031 and 0032. Here is my method:create or...
14 Oct 2016 by Richard Deeming
According to the documentation[^], the ASCIISTR function only converts non-ASCII characters.English letters and the standard Arabic numerals (0-9) are all valid ASCII characters. Therefore, they won't be converted.
12 Jan 2016 by AgarwalPriyanka, ErGauravSharma
Challenges faced in data migration testing
26 Apr 2015 by Jamil Isayyed
Hello Folks,i have an exchange server 2010, i want to change the format of the messages to text.i am using currently the RoutingAgent class and trying to change the format through the MIME document, i am not sure if i am in the right direction!but how i can change in the MIME...
7 Nov 2021 by Cinchoo
Use Cinchoo ETL to deserialize selective XML nodes from large XML file
12 Jan 2022 by Cinchoo
Tip to split large JSON file based on deeply nested array property using Cinchoo ETL
4 Oct 2018 by Member 13932087
Currently, I have made an application related to thermal printer which is connected thru USB using MFC in VC++. Now, I need to convert that code in java code, which I need to run in Android Studio 3.2 for Android Application 5.0 (Lollipop). So, is their any conversion software is available for...
4 Oct 2018 by OriginalGriff
No, there probably isn't anything which will do what you want - and even if there was, the code you would end up with would not be "good" java code: MFC and the Java machine are not a good fit, and it wouldn't use Java the language or the Java environment well. Your best solution is to use the...
15 Mar 2013 by Alexandre Bencz
Hi :)I'm try to convert a simple code of C# to C++/CLI, but when I try to build the converted code, i got this erros:Quote:1>------ Build started: Project: Compiler2, Configuration: Debug Win32 ------1> Source.cpp1>Source.cpp(21): error C2143: syntax error : missing ';' before...
6 Jul 2014 by 曦 陈
I am doing a project about Xserver, and I want to reuse its color conversion mechanism. But sadly I couldn't find where that part of codes reside. Does anyone know about it? Or can anyone recommend to me some articles about color conversion or relative code snippets?
24 Nov 2013 by Johannes Bildstein
A library for colormodels and spaces, correct color-conversions and color-difference calculation.
7 Feb 2014 by Smith2014
Hi Guys, Anyone has an idea why this code is generating this error msgMsg 245, Level 16, State 1, Line 5Conversion failed when converting the varchar value 'Jan ' to data type int.DECLARE @Period DATETIME SET @Period = '2013/01/01'SELECT Division, DSCustName, CASE WHEN...
7 Feb 2014 by Richard C Bishop
I believe the declaration of "@Period" as a DATETIME is skewing the data you think you are getting. If "@Period" is not going to be dynamic and will always be '2013/01/01' then I would make it a VARCHAR(15) data type. If it is a dynamic date, then try converting that date into the varchar format...
14 Jan 2013 by sajidali143
I am handling/reading Excel workbook using VB.Net Code.Everything goes OK if worksheet has less than 20000 rows, but if it is more than 20000 then it throws following exception.InvalidCastException OccuredConversion from type 'Object(,)' to type 'String' is not valid.My problem is...
13 Jan 2013 by Abhinav S
This error may actually have nothing to do with the size of the excel. One of the rows after row 20000 may have some data that may be of a different type. It will be worth doing a quick data validation of the Excel file.
11 Oct 2012 by fjdiewornncalwe
The simple reason is that you are trying to install an incompatible 32 bit application on a 64 bit Operating System. Get the 64 bit version of the program. If it is a legal version of licensed software, then the vendor should be able to help you out.
27 Mar 2018 by Member 13750892
The best solution is install 64 bit software at 64 bit and 32 bit software at 32 bit windows.
11 Oct 2012 by ♥…ЯҠ…♥
Hi Friends,My friend download nfs run from internet for his system.I am always fond of nfs so i requested the same and try to install the same in my system.Actually my friend os is windows xp 32 bit it seems.But my os is windows 7 ultimate 64 bit. When i try to install it in my...
4 Sep 2015 by bkelly13
I work on classified systems and we need to copy some source code to an unclassified machine. Using any media other than printed copy is forbidden (no cdrom, thumb drive, etc). I tried PDFXchange and it was out right terrible. I had copied the text from Visual Studio, converted it all to an...
4 Sep 2015 by Patrice T
In a time before internet, I remember Apple exchanging programs between Macs via printed 2d barcode on simple sheets of paper.Would it fit your need ?In any case you need to scan to a lossless picture format, avoid jpeg which downgrade the scan to improve compression, which turn makes it...
4 Sep 2015 by Sergey Alexandrovich Kryukov
I suggest you scan to TIFF (best) or JPEG. Then you can use some OCR software to recognize those bitmap into plain text. PDF is the worst option. Chances are, your scanner does not provide any OCR and save data as bitmap inside PDF. If its software really performs OCR, and you have no options,...
7 Nov 2017 by gacar
I want convert base 3 biginteger value to base 10, and convert base 3 again. How can i do? I am using this code for that. But i am getting wrong result. This code working for short values eg("22222222210222211011111222") What I have tried: Private Sub Button1_Click(sender As Object, e As...
4 Nov 2017 by OriginalGriff
Why are you using strings? That's very wasteful and inefficient. Instead, use the BigInteger Divide and Modulus operations to extract each digit one at a time, and include it in a running total: set powerOf = 1 set total = 0 while input not zero extract lowest digit using modulus 10 ...
6 Nov 2017 by gacar
I found this solution and working now. Thanks to Kornfeld Eliyahu Peter for contributions. ( On-What-Base-Do-You-Stand) Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click Dim BigValue As BigInteger =...
5 Nov 2017 by Patrice T
Your code is a mess of cascading conversions, you need to check that every conversion works as expected, use the debugger to do so. BigValue and TenBase are BigInteger, and you want TenBase = ToTenBase(BigValue, 3) see what you do with ToTenBase ToTenBase does BigValue as BigInteger => ToString...
7 Nov 2017 by Kenneth Haugland
Have you heard of Horner's method[^]? It can remove the need to take the power of numbers, and you generally don't want to do that, since it is very slow. The call and check code is: string input = "22222222210222211011111222011100022001111"; string Base = "012"; ...
17 Nov 2017 by gacar
Converted Kenneth Haugland's solution to vb.net for vb.net users. Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click Dim input As String = "222222222102222110111112220111000220011110000011112222101111222011" Dim Base As String = "012" ...
22 Jan 2015 by Emiliano Musso
A quick method to convert a CSV file in XML
10 Dec 2012 by TuanNGUYEN
Hi all,I am programming a window service (c#), which convert a doc/docx file to html.After test unit, everything is very OK, but when it run it service mode, it throw an exception when saving the doc file to html.Following is my codes:object srcFile = sourceFile;object dstFile =...
28 Jun 2018 by Richard MacCutchan
Classes do not exist in C, so all the class methods must be put into inline functions. Class variables need to be declared wherever they are needed. Unless you are reasonably proficient at both languages this could be a difficult task. You could also try convert c to c - Google Search[^] as...
28 Jun 2018 by CPallini
Quote: I am not a pro at either C nor C++ . I was able to convet the basic protocols which are just a very small part of the code Then change processor. Seriously. Unless it is a very trivial code, you have to be proficient in both C++ and C in order to accomplish the task.
28 Jun 2018 by Member 13890789
Hello all, I have this working code in C++,but I am working on a new prototype with basically same circuit but different processor, for which I need the program in C. I do have a API references and examples in C for the processor , but converting a program is definitely not included in it....
29 Oct 2018 by Sarita B Patil
I have a image with .tiff format in older version.Now i want to convert that image in Newer Version. What I have tried: I have searched on google but all are giving conversion from tiff to pdf or jpeg format or vice versa. But I need conversion from tiff to tiff but with a newer version.
29 Oct 2018 by OriginalGriff
This depend son what you want to do: manually via an app, or programatically - the two are different. Via an app: Open it in your new, shiny image editing program (or Paint, if that's what you have available) Use "Save as" (often hotkeyed to F12) and select TIFF as the output format. Give it a...
14 Jan 2013 by user_code
Hello,I have a HWND in my C++ MFC code, and I want to pass this HWND to a C# control and get it as IntPtr.What Is wrong in my code, and how can I do it correctly?(I think it's something with wrong using of the CLI pointers, because I get an error that it cannot convert from...
19 Jan 2014 by Amruth Raj
I am trying to convert an image to SVG File. For this I am using color_trace_multi.exe which traces multiple color images using potrace. The command line argument which I am using iscolor_trace_multi.exe -i src D:\Demo\temp.png -c 16When I run the above code, I am getting an error...
11 Dec 2013 by Manish Kumar Namdev
Hi friends I am trying to convert json data to my Class in a generic list but I am getting this error Cannot convert type 'System.Collections.Generic.Dictionary' to 'string'Please guide me I am confused where I am lacking or how can i get this data.string result1 =...
11 Dec 2013 by Maarten Kools
Either use Newtonsoft.Json or Microsoft's JavaScriptSerializer, not both.What you do now with the line jss.Deserialize(result1) you create an IDictionary, where each object is again an IDictionary.To use Newtonsoft.Json, do something like...
22 Nov 2013 by Tom West
Hi,Has anyone converted a PDF to a MHTML document (yes the depeciated MS only format)?I have the following scenario. We are requesting two reports from reporting services and then merging the results. We then need the option to output it as HTML with the images etc embedded and present...
1 Jan 2020 by Richard MacCutchan
1. Learn C++ 2. Write the application in C++. Sorry, but this site does not provide free coding or conversion services.
1 Jan 2020 by OriginalGriff
Even if we provided such a service (which we don't) I'd strongly suggest that you don't do it. When you translate languages, what you end up with isn't "more efficient"; quite the reverse, it's normally less efficient than the original because it isn't designed to work well in that language....
6 Jan 2020 by Stefan_Lang
How about solving the actual problem instead of trying to convert it? I don't know python, but if I understand this part of the code correctly: n = int(input()) numbers = [int(i) for i in input().split()] edges = [] nodes = [Node(count) for count in range(n + 1)] for i in range(n): nodes[i]...
15 Aug 2020 by Alpit_Abrol
import RPi.GPIO as GPIO class keypad(): def __init__(self, columnCount = 3): GPIO.setmode(GPIO.BOARD) # CONSTANTS if columnCount is 3: self.KEYPAD = [ [1,2,3], [4,5,6], ...
28 Mar 2020 by OriginalGriff
We are not a code conversion service: in addition translating code for one language to one using a totally different framework never gives "good code" in the target language. Instead, find some code that is in the correct language, or learn both...
29 Apr 2013 by bobb024
Hello,looking for a way to convert "10/10.00" to decimal.
29 Apr 2013 by bobb024
public static decimal FractionToDouble(string fraction) { decimal result; if (decimal.TryParse(fraction, out result)) { return result; } string[] split = fraction.Split(new char[] { ' ', '/' }); ...
28 Nov 2014 by Kinna-10626331
Hi ! I searched how to convert an string into time format in c# but I am not obtaning the desired result.The string received follows next format "hhmmss.ms" and I want to toconvert it in hh:mm:ss or hh:mm:ss:msSome of the things that I checked with no success were:1) double ConvTime...
28 Nov 2014 by Ainy Mughal
Try this.TimeSpan time = TimeSpan.Parse(timeString)
28 Nov 2014 by OriginalGriff
Try:TimeSpan ts;if (TimeSpan.TryParseExact("143522.666", @"hhmmss\.fff", CultureInfo.InvariantCulture, out ts)) { Console.WriteLine(ts); }
16 Apr 2018 by Shah Parth P
I have one Word File containing MCQs and I want to convert them into Excel File. I want my excel file like this: RAW-> A B C D E F DATA->Question A B C D Correct Answer. Please Help me with some tools or technique. What I have tried: I tried online tools but it's not giving...
16 Apr 2018 by OriginalGriff
What does this have to do with development? Ignoring that we have no idea how the data is organised in your Word file - and that would be critical to any computer based approach - we aren't here to write code for you; this is not a code-to-order service. We are here to help developers with...
16 Apr 2018 by Shah Parth P
I need it for the database uploading purpose only. I am not a data entry operator.
6 Sep 2012 by MitchG92_24
Hi All,I have a DLL which outputs a BitmapImage for me, however i need a BitmapFrame.I've tried to use BitmapFrame.Creat... to no avail.Any ideas on how to convert a System.Windows.Media.Imaging.BitmapImage to System.Windows.Media.Imaging.BitmapFrame?Thanks in advance!
6 Sep 2012 by Amund Gjersøe
According to Microsoft you should be able to use BmpBitmapDecoder (or the decoder of choice). I've tested, and it worked:Stream bmpStream = new System.IO.FileStream("smiley.bmp", FileMode.Open, FileAccess.ReadWrite, FileShare.ReadWrite);BmpBitmapDecoder bmpDecoder = new...
7 Mar 2015 by Sergey Alexandrovich Kryukov
Yes and no. No, because you are totally confused, and, formally, the questions don't even make sense. You cannot say "conversion" and "extract source code". There is nothing to extract. Source code is not contained in the assembly modules. It is not "kept". You just don't understand.At the...
7 Mar 2015 by manchanx
In addition to what Sergey wrote and answers to the questions in your comment:Quote:You say .Net Assemblies, i say .Net Application, same thing?.Net Assemblies are either Executables (.exe) or Dynamic Link Libraries (.dll) which are being used by Executables. Usually you refer to an...
14 Jun 2022 by Ziya1995
I have read about "Converting .exe into a readable source code".Is it really true? It writes "Yes".Now i am making an app to sell its source code on a marketplace, what stops buyers from turning my .exe app into a readable source code?I mean, i show my app for free and they may buy its...
16 Jan 2020 by Member 13198628
Hi, Greetings Fellow Programmers. How can i convert this 190118 int to Date > January 01, 2018 using RDLC Report Expressions. Thanks. What I have tried: I've tried using this expression : =Format(Fields!DCDATE.Value,"MM/dd/yyyy") But i Get "#Error" from report viewer.
16 Jan 2020 by Wendelius
Obviously the best way would be to use a date format for the field in the database. This way you could focus on formatting the date properly without any need to do conversions. However, if the format in the database is currently DDMMYY you could perhaps use something like the following to...
30 Apr 2015 by Jamil Isayyed
Hello Folks,I have implemented a transport agent to convert all the HTML messages to plain text, the transport agent works fine with all external messages, where i convert the body and change the content type through the MIME part.but with the internal messages its not working fine, i...
27 Feb 2018 by #realJSOP
Spell it out! No! Wait!
6 Mar 2018 by Sridhar0203
Hi, I just want to know is there any tool or online website to convert vbscript code into C#.