No announcements
Found 1488437 threads
-
4 Votes
CreateObject equivalent function in c#
\\private$\\ecomail" lngMovedMessages = objMessageMover.MoveMessages Can ...Answered | 8 Replies | 43195 Views | Created by Surya Ghanathe - Friday, September 29, 2006 4:09 PM | Last reply by Raj Anu - Thursday, May 6, 2010 1:37 PM -
3 Votes
CreateObject("cast.cipher") equivalent function in c#
The C# equivalent of VB CreateObject is something like this: dynamic objExcel ...Answered | 8 Replies | 4032 Views | Created by siddheswaran periyathambi - Saturday, December 24, 2011 9:39 AM | Last reply by Martin_Xie - Friday, January 6, 2012 11:43 AM -
3 Votes
Equivalence of CreateObject("Microsoft.XMLHTTP") in c#
Activator.CreateInstance(Type.GetTypeFromProgID("Microsoft.XMLHTTP")) Or you could find an equivalent class to do the same ...Answered | 2 Replies | 7192 Views | Created by elie el alam - Wednesday, February 1, 2012 6:19 PM | Last reply by Louis.fr - Thursday, February 2, 2012 1:39 PM -
0 Votes
CreateObject equivalent function in csharp
This will look something like: dynamic fso = Activator.CreateInstance(Type.GetTypeFromProgID("Scripting.FileSystemObject")); string someValue = ...Answered | 7 Replies | 1796 Views | Created by Noobville - Wednesday, April 17, 2013 3:14 PM | Last reply by Noobville - Wednesday, April 17, 2013 5:01 PM -
0 Votes
Problem Understanding CreateObject Function
I am having a problem understanding the CreateObject function (Access 2010).Answered | 2 Replies | 3278 Views | Created by charliegp - Tuesday, July 17, 2012 6:37 PM | Last reply by Dirk Goldgar - Tuesday, July 17, 2012 7:41 PM -
0 Votes
VC++ equivalent of this.Controls.Add function in C#
If you want to add a control in this way, you will call CreateWindow() function.Answered | 3 Replies | 3985 Views | Created by LogDaya - Monday, May 16, 2011 9:47 AM | Last reply by Jesse Jiang - Thursday, May 26, 2011 5:52 AM -
5 Votes
Convert Vb.net "CreateObject("Excel.Application")" into C#.net
You can do more and convert Vb.net/C#.net "CreateObject("Excel.Application")" into Vb.net/C#.net Google Spreadsheets.Answered | 13 Replies | 27211 Views | Created by ashuthinks32 - Tuesday, September 20, 2011 6:46 AM | Last reply by nimble015 - Friday, May 27, 2016 1:43 PM -
1 Votes
Visual C++ 6.0 functions equivalent to MS-DOS functions
There isn't a direct equivalent to coreleft(), and I suspect you should just comment out the code so that the logical simply flows through it unimpeded.Answered | 2 Replies | 2330 Views | Created by Ulikson - Wednesday, January 30, 2013 8:20 PM | Last reply by Bordon - Thursday, January 31, 2013 5:24 AM -
4 Votes
Is there an equivalent to PHP's tempnam() function?
Is there an equivalent in C# to PHP's tempnam() function?Answered | 3 Replies | 3771 Views | Created by wwelchj - Monday, June 15, 2009 5:15 PM | Last reply by wwelchj - Monday, June 15, 2009 7:19 PM -
0 Votes
Functional Equivalent of DISPLAY_FOLDER in VS2005?
Apparently there is no functional equivalent to DISPLAY_FOLDER which exists in AS 2005.Answered | 2 Replies | 4698 Views | Created by mindscape777 - Tuesday, April 20, 2010 4:42 PM | Last reply by Darren Gosbell - Tuesday, April 20, 2010 8:51 PM -
0 Votes
GetObject and CreateObject in VS2010
As far as I know, there is no VS2010 version article for this function.Answered | 5 Replies | 2716 Views | Created by ytsheng - Tuesday, July 10, 2012 7:58 PM | Last reply by Armin Zingler - Wednesday, July 11, 2012 11:21 AM -
0 Votes
Winrt equivalent functions for directory handling?
THis can be the Isolated Storage (available through the ApplicationData class) or dictories that the user give you permission to with the FolderPickerMicrosoft Certified Solutions Developer - Windows ...Answered | 1 Replies | 887 Views | Created by pete275 - Monday, September 15, 2014 4:24 AM | Last reply by Dave Smits - Monday, September 15, 2014 8:15 AM -
10 Votes
C# Equivalency of VB function "DoEvents"
The DoEvents method is not the best solution for C#.Answered | 11 Replies | 93966 Views | Created by Vinces - Thursday, March 16, 2006 7:54 PM | Last reply by Dogopoly - Monday, July 16, 2012 10:02 PM -
0 Votes
C# equivalent of C's scanf()
There is no direct keyword equivalent of scanf in C#.Answered | 1 Replies | 2216 Views | Created by BHarmath - Tuesday, January 5, 2016 9:09 AM | Last reply by Sezhiyan Thiagarajan - Tuesday, January 5, 2016 9:28 AM -
3 Votes
Equivalent in C# of Asc & Chr functions of VB
The following has the same behavior as the VB6 functions.Answered | 12 Replies | 90259 Views | Created by Vinodonly - Thursday, March 27, 2008 6:48 PM | Last reply by Louis.fr - Wednesday, September 1, 2010 9:51 AM -
0 Votes
Equivalent c# code of this C++ code
Also you should know that there already is a c# api for this, but in my case i need CharacteristicValueHandle and that isen't exposed in the c# api.Answered | 7 Replies | 2465 Views | Created by phanitk - Thursday, March 21, 2013 8:53 AM | Last reply by Petoj87 - Thursday, April 13, 2017 6:53 AM -
0 Votes
what is the equivalent to vb modules in c#
There is no real equivalent of a VB.Net module in C#, a longer answer can be found ...Answered | 1 Replies | 2672 Views | Created by itm - Thursday, August 1, 2013 1:29 PM | Last reply by Magnus (MM8) - Thursday, August 1, 2013 2:09 PM -
0 Votes
VB6 - Call a function with CreateObject ( Type )
Hello, I have a dll ( vb6 ) containing a public class with a public Type ( named Test ) and finally a public function that wants a variable passed by ref of Test type.Answered | 5 Replies | 4986 Views | Created by Scremaz - Wednesday, September 1, 2010 7:21 AM | Last reply by Martin_Xie - Thursday, September 9, 2010 8:52 AM -
1 Votes
UTILDEFS.H equivalent in c#
The convention is that declaration (functions, classes, etc) are in .h files which are #included in implementation (definition), or .cpp files.Answered | 2 Replies | 625 Views | Created by P Nandhan - Wednesday, July 1, 2015 1:21 PM | Last reply by Kristin Xie - Thursday, July 2, 2015 9:06 AM -
2 Votes
C# Equivalent of C++ linked List
What class library are you using in C++?Answered | 2 Replies | 5349 Views | Created by Gopala Krishna - Sunday, August 1, 2010 1:26 PM | Last reply by pvdg42 - Sunday, August 1, 2010 1:45 PM - Items 1 to 20 of 1488437 Next ›
No announcements