Topic profile page for function.
This page has aggregated data from forum posts, threads, listings, online discussions, newsgroups, messageboards, and other online sources which contain user generated content for the term: function.
Topic "Function" was discussed 1,195,839 times on 20,996 sites in last 3 months
Started 17 hours, 7 minutes ago (2009-11-30 12:46:00)
by jjlang
I've got a list of clothing items in one column and the date of purchese in the next column. Can you someone please tell me how to write a Countif function so i can calculate how many of the same item has been purchased in a given month, for example the number of hats bought in the whole month of August. Thanks
Started 19 hours, 13 minutes ago (2009-11-30 10:40:00)
by Aandaleeb
Hi, I am first year B.Sc.It student. I just started learning c++ language. When reading c++ book I stop at friend function . I unable to understand this concept. If you any of you have any idea or example about friend function please help me.
Started 6 days ago (2009-11-25 05:36:00)
by super_noobie
looping function in form hey all this is problably a simple answer that I'm just missing. I have this form that I added a paypal button (from this site) function on top of the regular submit form function. both work but the paypal function seems to loop and opens paypal pages until my browser crashes, i was wondering ...
Started 5 days, 5 hours ago (2009-11-26 00:46:00)
by ibsen
Arbitrary Expressions in Function Calls I have several custom functions that I import as .as files, but I frequently have to modify them to suit projects, which makes standardization and version tracking harder. Is there a way to pass arbitrary expressions to a function when it's called? For example, if I write the function,...
Started 6 days, 18 hours ago (2009-11-24 11:11:00)
by SilverSands_IT
BHow can we display the name of the day, when selecting a date? Ex. Select with the datepicker 22-11-2009, thefield should show Sunday Excel has such a function, InfoPath not. So this is the way how to do it, out of the box Read the steps on http://blueinfopath.wordpress.com/20...n-in-infopa th/ Frederik Van Lierde Do you follow us already? http://Twitter.com/SilverSands...
Started 5 days, 1 hour ago (2009-11-26 04:32:00)
by Modestas
Hey. I bumped to another issue with C++. When I tried to use a function which returns a pointer, that function can not use private class members, while all other functions can. There is an example: class Dot {private: int x; public: int *bang(); }; int Dot::*bang(); {cin >> x;} //the variable x can not be accessed here, because it's not defined, though still can not use it even...
Started 5 days, 17 hours ago (2009-11-25 12:29:00)
by peter1234
In the example below I have chosen to define the input variable in a text box called Text_year. The function is run from a for with a Toggle Button. The text box in the same form. My purpose in to invite user to input a year in the text box to obtain the number of days in that year. The error message given reads: Control can't be edited ; it's bound to the expression 'DaysInYear([Text_year...
Started 1 week ago (2009-11-23 12:54:00)
by spydaios
I have my local DB say "HD" on my machine and remote server say "RM-S/2005" has DB "R-DB", in R-DB there is scalar valued function "Function1(EmpId)" In my local DB i need to create a view using Function1(Empid) view is say , "view_ProjAccToEmployee" as follows, SELECT A.ProjectID, A.ProjectName, [RM-S/2005].[R-DB].dbo.Function1(B.EmployeeID) AS EmployeeId FROM...
Started 4 days, 18 hours ago (2009-11-26 11:48:00)
by pacerier
ok basically i've got a delegate ByVal function_to_execute As dele0 but instead of invoking it, i wish to add it to an eventhandler Code: Public Sub test(ByVal function_to_execute As d0) Dim t As Timer = New Timer() AddHandler t.Tick, AddressOf function_to_execute.address end Sub ok obviously this doesn't work but just to show you what im trying to do. this is the full code...