Hey All
i have a image gallery and i want to limit the set where is shows 4 images in each row at a max of 3 columns, if its possible how is it made, and well it be easy using php,
Hey All. Atm im working with native API calls and i have to get RtlInitUnicodeString to work.
The way i use:
const WCHAR wcMutex[] = L"String1";
UNICODE_STRING unicodeMutexBuffer;
RtlInitUnicodeString(&unicodeMutexBuffer,wcMutex);
now my problem the project doesnt compile , i get this error:
Error argument of type "UNICODE_STRING*" is incompatible with type of "PUNICODE_STRING"
but in my old Driver kit , i used same way to initialize the unicode string struct
Hey Folks,
I am trying to Call the webservices in my app and while checking it in console it's showing the number of objects. (as i am using the Mutable array) and then while trying to display the name of the objects (here it's location) it's giving me an error in this line
for (SDZArrayOfLocationWithLatestGrades* location in a) {
NSLog(@" - %@", location.Name); // error here and a is the mutable array
}
PLease help me with this and Happy New Year to All!!!!!!
Thanks,
Hey,
i'm searching for an WYSIWYG Editor tool which i can run as normal Windows Application and wihich generates for me the TWIKI "Code".
Is there any Application/Software that provides this functionality?
THX
Hey all
so i wehnt ahead and opened up my .gitconfig file and manually input the
[core]
editor = 'C:/Program Files/Notepad++/notepad++.exe'
which would allow me to execute command:
(im trying to setup my .gitignore list)
"C:/Program Files/Notepad++/notepad++.exe" .gitignore
im JUSt not interested in typing this out every time that i need to make a file
SO ive heard something about editing PATH to allow me to replace the above with something like:
npp .gitignore
any help would be aprpeciated!
Hey,
How can i pass (and access) using C, not c++, multiple parameters into a function?
void foo(char* mandatory_param, char* optional_param, char* optional_param2...)
thanks
/fmsf
Hey can someone help find a list of what some good looking fonts are that are not really standard but like
I'd find a font that is common to gnome or w/e
and mac and windows. So then I have 3 different fonts for css or like a big number and id order them in how much i like
.
Hey all,
About my question, I'm asking a theoretical question here about Base case or the halting case in a recursive method, what's its standards?
I mean, is it standard not to have body in it, just a return statement?
Is it always like the following:
If(input operation value)
return sth;
Do you have different thoughts about it??
Hey guys,
Something really weird is happening: when I call foo(100*1.0f), somewhere along the line that becomes 0. To verify I put a breakpoint on foo(), and it indeed is zero and it indeed gets called with 100*1.0f. The code is in Obj-C++.
Here is the calling function in XCode's GDB frontend, as you can see, score*scoreMultiplier is 100.
And here is the called function in XCode's GDB frontend, here _score is 0.
Hey,
I have a need to mirror a byte's value around the centre of 128. So, example outputs of this function include:
In 0 Out 255
In 255 Out 0
In 128 Out 128
In 127 Out 1
In 30 Out 225
In 225 Out 30
I'm driving myself nuts with this, I'm sure I'll kick myself when I read the answers.
Cheers
Hey guys,
i've got 2 GeoPoints given to show them on the map with markers...
so far so good...
how can I get the optimum zoom level for the MapController in order to focus the middle of both points, but also have them on the map.
The whole thing should work at different screen resolutions.
Sorry for asking that silly question, I know thats not very difficult, but at the moment my head is boiling :/
Hey guys,
We're getting a QA for the first time in our project. We're not sure how to best use him.
We work in an Agile environment. Pair programming, user stories, short sprints (two weeks), daily stand-ups, retrospectives, planning meetings, quick releases etc.
One obviously way to use a tester is to verify bugs fixes and user stories every sprint. Are there any better ways for an Agile team to utilize a tester.
Thanks,
Sri
Hey, I'd like to write to a text file to record a set of scores. However, everytime I write to it it overwrites what was originally in the file. Please can someone tell me how to not let it overwrite what is there or how to make it start writing in an empty space. Thank you in advance.
Hey all,
I currently use iLog Elixir calendar component, and I am not entirely happy. It is buggy, support sucks and I can't play around with the source.
Does anybody know of a good, well maintain flex library project which has a decent calendar / date chooser component?
Thanks,
Sri
Hey all,
I am trying to put together a query that will display one specific record (found by the record's primary ID) at the top, and display all other records below it, sorted by date (I have "date_added" as one of the fields in the table, in addition to primary ID).
I could do this with a UNION (first select would locate the record I want, and the other select would display all other records), but I'm wondering if is there perhaps a better way?
I'm using Oracle, by the way.
Hey,
This one has me stumped.
Is it possible at all to change the background color of a UIButton in Cocoa for iphone.
I've tried setting the background color but it only changes the corners. SetBackgroundColor seems to be the only method available for such things.
Please refer to my screen shot
[random setBackgroundColor:[UIColor blueColor]];
[random.titleLabel setBackgroundColor:[UIColor blueColor]];
Hey,
I want to use a method of an object.
Like $myObject->helloWorld().
However there are a couple of methods so I loop through an array of method names and call the method like this:
my $methodName ="helloWorld";
$myObject->$methodNames;
This works quite nice but some objects don't have all methods.
How can I tell wether $myObject has a method called helloWorld or not?
hey ,
I'd like to make a recursive function using C++
I make this class
class linklist
{
private:
struct node
{
int data;
node *link;
}*p;
void linklist::print_num(node* p)
{ if (p != NULL) { cout << p->data << " ";
print_num (p->link); }
}
in the main program what should I write ...
Hey guys,
I have the following code in an action:
@user = @current_user
@user.votes[1430]='up'
@user.update_attributes(params[:user])
Votes is a string type, there is no default value - I just want to set it for the first time when this action occurs.
Unfortunately I get this error:
NoMethodError
You have a nil object when you didn't expect it!
The error occurred while evaluating nil.votes
any ideas what I'm doing wrong?
Hey. How can I get a total number of rows in a file (do not want to do it with loop). I'm reading CSV file.
Example 1
CSV.open('clients.csv', 'r')
Example 2
FasterCSV.foreach('clients.csv')
Thx.
Hey,
I have a Handler object that functions kind of like a service. It has a public init method defined in the Implementation but not the Interface. This Handler is also being autowired via Spring. How does the init method get invoked? Is it via Spring or does Tomcat call this?
hey guys
I had made one application in java-swing,
Now what i am getting problem is,
i want to minimize my jframe when it is deactivate and then to maximize i want to activate that window.
So for maximize, i want to activate any jframe using java code.
So how to activate and deactivate any jframe, so that i can do something on window listeners?
thanks in advance.
Hey guys,
I tried to add these views to list view using this kind of factory but everytime I try and add the view to a ListActivity, it comes up with nothing. What am I doing wrong? I set my list views like so:
List<View> views = new ArrayList<View>();
for(int x =0;x<tagg_views.size();x++)
{
lv.addHeaderView(views.get(x));
}