Help with functions - basics Programming by verrandhack … first time in vscode using c++. i'm want to declare functions and having trouble understanding some things. i'm very… forth but i know i need to learn them to declare functions. any tips on how to use these and what… VB2010: how use CopyMemory() API function? Programming Software Development by cambalinho How use and declare CopyMemory() API function VB2010? Re: A reliable way of detecting AI content? Hardware and Software Cloud-based Apps by jkon … to do , while the bigger ones (having many lawyers) will declare that this doesn't apply to them (as have done… Re: Help with functions - basics Programming by rproffitt Rather than dive into c++ like that, try tutorials like we see at https://www.w3schools.com/cpp/cpp_functions.asp Re: Help with functions - basics Programming by jkon It seems that the issue has nothing to do with C++ or with functions. If you are new to programming why not try some tutorials in an easy accessible language (like JavaScript for example) and when you understand a few basics ( like null , functions , variables , loops , conditions ) move to a C++ tutorial for beginners ? Re: Help with functions - basics Programming by learnerya Starting from the basics, I have just started learning Re: VB2010: how use CopyMemory() API function? Programming Software Development by rproffitt Take a look at the example at https://www.codeproject.com/Articles/8641/Equivalent-of-CopyMemory-in-NET Re: VB2010: how use CopyMemory() API function? Programming Software Development by cambalinho that link\tutorial have some errors: VB2010 don't have the 'any' type Re: VB2010: how use CopyMemory() API function? Programming Software Development by cambalinho correct me: the Bitmaps.lockbits() and Bitmaps.unlockbits(), for change the pixels(all pixels), are more faster or like DIB's speed or more slow? Re: VB2010: how use CopyMemory() API function? Programming Software Development by cambalinho understood ;) thanks for all... using the VB2010 is best use GDI+... if i need change all pixels, we must use lockbits() on a Bitmap declare and assign value to variable at runtime in C# Programming Software Development by amitkumarmailid declare and assign value to variable at runtime in C# variable names are stored in database(sql server). how can i able to declare varible with these name during runtime. after that assign value... thanks. amit DECLARE and SELECT multiple variables in SQL Server Programming Databases by JeremyJ …ntext = (SELECT Field1 FROM cltClients WITH(NOLOCK) WHERE ClientNumber=@Template_Account) DECLARE @Field2 ntext = (SELECT Field2 FROM cltClients WITH(NOLOCK) WHERE …bit = (SELECT Checkin1 FROM cltClients WITH(NOLOCK) WHERE ClientNumber=@Template_Account) DECLARE @Sandbox1 ntext = (SELECT Sandbox1 FROM cltClients WITH(NOLOCK) WHERE … Re: DECLARE and SELECT multiple variables in SQL Server Programming Databases by ryantroop … use a decimal for a ClientNumber? Doesn't matter, though.. DECLARE @Template_Account decimal(10,0) = 8, @Field1 nvarchar(max), @Field2 nvarchar… Declare Global List problem Programming Software Development by Lukezzz … says: [I]syntax error : missing ';' before '<'[/I] Should I declare the List in any other way than this ? (The code… the declaration of the List. Also if I try to declare the List within an eventhandler of ex: a button like… declare variable to open file Programming Software Development by hdquang … me some hint to call it. Here is what it declare in the class. [CODE] Maze::Maze(const string& fileName…), mouseRow(0), mouseCol(0), cheeseRow(0), cheeseCol(0), squaresVisited(0) { // declare variable to open file etc. ifstream inmaze(fileName.c_str()); if… Re: declare variable to open file Programming Software Development by hdquang …), mouseRow(0), mouseCol(0), cheeseRow(0), cheeseCol(0), squaresVisited(0) { // declare variable to open file etc. ifstream inmaze(fileName.c_str()); if… don't know how to open the input text using declare variable and open it in main. not sure this is… Re: Declare Array in pseudo code Programming Computer Science by deceptikon Pseudocode has no standard definition, just make something up. It could be as free form as: declare an array of 20 integers Or more rigid like an actual programming language: declare array(20) of integer Declare number of elements to vector Programming Software Development by Jennifer84 … managed type. My question is how it is possible to declare a number of elements as you do for native like… Re: Declare number of elements to vector Programming Software Development by Radical Edward > My question is how it is possible to declare a number of elements as you do for native like … Declare a 3D vector Programming Software Development by Lukezzz … to have a 3D vector but dont know how you declare a 3D vector. As seen I have put 500 as… Re: Declare a 3D vector Programming Software Development by Lukezzz …, that is true. I tried to follow the pattern. I declare a 2D and a 3D here: [code] //2D vector<… Declare 2D vector Programming Software Development by Jennifer84 … set to 0. What I want to do is to declare all of these elements to: -1 how this is possible… Declare pointer value inside a function Programming Software Development by shaynerossum Hi, I'm trying to declare a pointers value inside of a function, and then manipulate … Declare 2 Dimension for List<String> Programming Software Development by Darth Vader I am trying to declare dimensions like this but this example does not compile. I … Re: Declare 2 Dimension for List<String> Programming Software Development by ddanbe Never did this but you could declare a List of List : [B]List<List<string>> dim2 = new List<List<string>>();[/B] Declare function with calling convention Programming Software Development by prakashjoshi010 Hi, I would like to declare function with calling convention. But getting following errors on CentOS … Declare a List<String^> Programming Software Development by Lukezzz I have a problem to re declare a List<String^>. The first line compiles fine … declare operator overloading function as a friend function Programming Software Development by y2kshane can i declare operator overloading function as a friend function? i did it … Re: declare operator overloading function as a friend function Programming Software Development by volvo877 [QUOTE]can i declare operator overloading function as a friend function?[/QUOTE]You can, but you need function woth two parameters: [CODE=cpp]friend time operator + (time& left, time& right);[/CODE] Declare an integer array. Fill elements with values that the user types in? Programming Software Development by Falcon25 … on this question, any help would be great [U]"Declare an integer array of 10 elements. Fill the elements with…