Hello everyone,
I am using MacBook Pro Mac OS 10.5. I am new to this development environment. I am previous working on Windows. I am wondering whether there is similar function like "show desktop" (shortcut is Windows Key + D) on Mac to Windows, which will hide all applications and show a clean desktop? THis function is very convenient for my development on Mac.
thanks in advance,
George
Hello,
we have an web-application built in flash (it's actually just getting built :D) where is very important to be notified, when user closes his window.
Since it's in flash, we do not worry about Javascript, we do not support non-javascript users.
What is the safest (meaning it's 100% sure it gets called) X-browser way to call php script to close session, make some db changes, etc.?
Thank you
Hello there,
What I want to do is issue a click event, preferably with jQuery, on an anchor element, causing the browser to follow that link. I know that my anchor selectors are correct, as they are returning 1 from .length.
Here's what I've tried:
$('#awesomeLink').click();
But it won't follow the link.
How am I doing it wrong?
Thanks!!
Hello,
I have a multithreaded application written in c#. What i noticed is that implementing thread synchronization with lock(this) method slows down the application by 20%. Is that an expected behavior or should i look into the implementation closer?
Hello,
I want to dynamically create controls in my bean. I am using JSF 2.0
HtmlOutputTag objHtmlOutputTag = new HtmlOutputTag();
Now which property of HtmlOutputTag should I set to set the content of HtmlOutputTag?
Hello!
In a project that I'm currently working on, we use the System.Web.Security MembershipProvider as our provider for membership and roles.
Now, we do not only use this for a web application, but also a WCF & WPF application.
So my question is: Where do I put the configuration of the MembershipProvider so that it applies for both web and WPF?
The configuration I'm talking about is stuff like RequiresQuestionAndAnswer, RequiresUniqueEmail, PasswordFormat etc.
Hello!
I'm using this code to format a date from a string:
NSDateFormatter *dateFormat = [[NSDateFormatter alloc]init];
[dateFormat setDateFormat:@"EEEE, dd MMMM yyyy"];
NSDate *dateStart = [dateFormat dateFromString:[thisEvent dateEvent]];
[thisEvent dateEvent] contains this date: Saturday, 09 April 2011
I don't know why dateStart contains 2010-12-31 23:00:00 +0000
where I'm wrong?
Thank You!!
Hello. I'm working with Microchip's TCP/IP stack and the host name of my device is not being broadcasted, although I can access it using its DHCP assigned IP.
So the question is, what is the protocol that a network device uses to broadcast its host name, so that when I see a list of devices in a network I can identify it by name?
Is it the NetBIOS name service or something else? Thanks in advance.
Hello,
I'm looking for a way to increase the click size so when I click, it would effectively count as a click on anything that is in a 100px by 100px radius around the click.
Any help would be great, I couldn't find anything online for this.
Thanks a lot!
Hello everyone
In one project, I hope to change UIBarButtonItem and style in runtime
editBarItemButton links to a UIBarButtonItem which original status are
style:UIBarButtonItemStyleBordered
title:Edit
if I press the bar item button, it will execute the codes below:
[editBarItemButton setStyle: UIBarButtonItemStyleDone];
[editTarBarItemButton setTitle:@"Done" ];
but neither the style nor title has changed.
Welcome any comment
Thanks
interdev
Hello all...
I am working with delphi, I want a list of all files of a directory when I execute openpicturedialog.
You can even suggest me for getting directory name from FileName property of TOpenDialog
Thank You.
Hello
I'm trying to show contents of two websites in one another , someone suggest me to use RSS reader but my question is :
is there anything else i could try to show the contents , beside using rss !?
i thought i can connect to the database of another website , but that didnt work /
thanks in advance
Hello Frierndz u r very helping.............
plz help me as i am doing my project
where i have to search the user input from all the text files of hard disk in c++
i am not able to do so....
plz help what i have to do.
which library will be helpful for me to pick text files directory from hard drive
i m using visual studio C++
Hello,
I have written the Dijkstra's algorithm many times in C++ - I need there set or priotity_queue, both give me possibility to add an element and find the least one (using specified comparator). Now, I've got a problem when trying to write Dijkstra in C# - is there any structure which could be useful for me? I need adding and finding or erasing the least element.
Using Visual Studio '08
Hello
In my project my project manager says me to make 'state' the field required if the country is united states and make the city field optional if the country is not US.
How to accomplish it? Any help?
Hello,
I'm writing a stored procedure. This procedure has a case where if it is met, I want to stop executing the procedure and return -1. How do I do this? Currently, I'm trying the following:
IF @result <> 1
BEGIN
SELECT -1
END
However, SELECT is not a typical "return". As you can imagine I spend most of my time in code which is why i'm looking for something like a "return".
Thank you,
can anyone tell me why gets(abc) works with char[] but not with int?
int abc;
char name[] = "lolrofl";
printf("Hello %s.\n",name);
printf("\n ");
fflush(stdin);
gets (abc);
printf("\n die zahl ist %i.\n",abc);
system("Pause");
return(0);
Hello,
in C++, is there any convention to either "uppercase" or "lowercase" the first letter of source code file names?
For example if I have the class "MyClass" in a header file, should I name the file as
MyClass.hpp
or
myClass.hpp
?
Hello,
Consider this as my SubView
UIView *subViewObj;
and this as MainView
UIView *mainViewObj;
i need to make MainView as root View
can i don it in this way?
[mainViewObj addSubview:subViewObj];
is this correct?i need to do it programitically, without using Interface builder.
Hello can anyone please let me know a function for 3D printing in OpenGL. I had to print a string and was using glutBitmapCharacter() but this is not printing it.
Thankx in advance. :)
Hello,
i'm using mootools.js, i have this code:
this.html.chat_title = new Element('span', {'id' : 'chat_title', html : 'this is the title'}).inject(this.html.container);
The problem is:
span id="chat_title" html="this is the title"
as you see it doesn't put the text inside the HTML of the tag but as an attribute.
What is wrong?
Thank you so much!
Hello,
I'm looking for some easy to use cross-platform threading library written in C/C++.
What's your opinion on boost::thread or Pthreads?
Does Pthreads run only on POSIX compliant systems?
What about the threading support in the Qt library?
Thanks for any hints.