Hi,
Could someone show me how I could return a value from a wxPython Frame? When the use clicks close, I popup a message dialog asking him a question. I would like to return the return code of this message dialog to my calling function.
Thanks
I'm getting a dialog box asking to enter my apple developer id & password in xcode. It just says something like "To download this update enter your information." then i goes away.
Is this normal? Seems to me that this would be the perfect way for a trojan to get my apple id and pwd!
I need to visualize some scientific calculations. I generally prefer reusing code if there is already a good available instead of inventing wheels each time, that's why I am asking. I need a C# code to draw charts (just outputting a bitmap is ok) of 2d (y=f(x)) and 3d (z=f(x,y)) digital data sets (where any axis can be float, int or datetime), sometimes combined.
Hi,
I have developed a signed plugin for eclipse. I have refered this document http://www.ibm.com/developerworks/opensource/library/os-eclipse-plugin-sigs/index.html
When i am installing that plugin in my system it is ok. and asking for certificate verification .But when i am installing that plugin in other system's eclipse it is giving error. Signed plugin is not getting install in other machine except mine.Why it is like that how to solve that problem please tell???
It seems that StackOverflow is more concerned about programming techniques and coding skills (which is a good thing!)..
But I am asking if anyone knows another "StackcOverflow"-like site, but which is mainly concerned about Machine Learning and AI?
BTW: I have asked this question after nearly a week without an answer for Question
I’m making a simple web browser for work eeh, what I’d like to know is if its possible to save a file of a particular extension to a particular file.
I currently use googels chrome when downloading a file it places this (regardless of extension) in a downloads folder without asking where I ant to download this too.
I want to achieve the same except that downloads with the extension .dwg are placed automatically in a folder named DWG DOWNLAODS…
Dose anybody know how to achieve this in vb.net?
I have two applications, one updates a single table which has constant number of rows (128 rows) using SqlDataAdapter.Update method , and another application that select from this table periodically using SqlDataReader.
sometimes the DataReader returns only 127 rows not 128, and the update application does not remove or even insert any new rows, it just update.
I am asking what is the cause of this behaviour?
Hi,
I've seening quite a few posts on here regarding grids, but nothing specifically asking for a free grid component that supports editing.
Has any body come across such a thing? Is there a JQuery pluggin that I could use?
If not has anybody got any pointers on a good approach to writing my own (using asp.net mvc2 and/or jquery)?
Thanks in advance!
I am using Apache to authenticate users for Django, but I would like to do so without the popup form that Apache uses in its basic configuration.
How do I embed the login form within a page while still using Apache for authentication?
That is, I'd like a page that says "Please login" and provides a form asking for username and password, and passes this information on to Apache for authentication. (I'd do this over an SSL connection, of course.)
I've found, via Google, numerous people asking the same question, but no solutions. The Python Image Library (PIL) has tools for stepping through an already existing multi-page TIFF, but nothing about creating them.
Libraries would hopefully be available on Windows, for Python 2.6.
If there's some freeware out there which will do the trick, I wouldn't mind seeing it, but I was hoping I could accomplish this in Python.
This is a subjective question. For those who are Windows developers coding desktop applications, what are the most beautiful or nice looking GUI you have ever seen or built?
Why am I asking this? I'm looking for good models to follow.
See also:
What is the best UI you've ever used?
Hi,
I like using Visual Basic for C++. I'm a student
I noticed the web development feature in it, and I was wondering if it is any good for web design, maybe if someone has used it or does use it if they can give a few words on weather or not it's worth learning?
I have been using Dreamweaver as my platform for web design.
So pretty much I'm asking Dreamweaver VS Visual Studio for webdesign, pros and cons?
Creative Commons FAQ says their licenses are not recommended for software... I considered GPL et al but they don't exactly fit my needs. is their an alternative to Creative Commons Attribution-No Derivative Works 3.0 for licensing my software...
Sorry for asking a licensing question...
I am writing an iPhone app which will start with asking the user to register with a login/passwd. These should be :
Saved securely locally
Send securely to a remote web-server
What do I need to achieve the above? Say, for local storage, shall I save them in a file or database? Shall I encrypt it? For sending it over, is HTTPS sufficient?
Maybe a strange and green question, but
Is there anything C# can't do what javascript can...
And considering JQuery?
except for the fact that one is clientside, and the other serverside?
Or am I asking a very stupid question now?
If you want to see why I am asking this look at my other question: http://stackoverflow.com/questions/2894615/how-to-display-console-text-in-uitextview
So basically, I need to know if there is an iPhone C compiler that can be installed on the iPhone... Then I need to know what parameter I would put in the system("compile Foo") function. Thanks for the help in advanced.
Hi,
I want to host a WCF Data Service (formerly known as ADO.NET data Service) in windows form.Is it possible? If yes,then is there any blog, which talks about it?
I know WCF can be hosted in Windows Form, but I am not sure about WCF data service, as all the examples I see, is asking to create ASP.NET web project.
-Brajesh
I am trying to determine whether a company has websites built with ASP.NET MVC in their portfolio. Is there a reliable way of determining that without asking them assuming that I can visit the website in question in my browser? This might seem simple, but I wasn't able to find this information online. I would think that the lack of viewstate related stuff in the HTML source and the noun-verb URL structure would be good indicators. Are there any other indicators?
I have read on the internet and found out that jQuery works OK on XUL.
My questions are:
Are there any jQuery plugins that are specially made to work with XUL?
Is there any other jQuery-like library that was specially made for XUL?
I have not yet tested jQuery on XUL, I'm justasking these questions for curiosity.
I recently came across the Kogut language, and was interested by it. However, the only website to gain information from is the sourceforge page that hosts the project. I had no idea how to even attempt to look at the language in more depth.
So what I'm asking is, has anyone here learnt a language that doesn't have the thousands of resources that Ruby, Python etc. have? What would be the best method to do so?
I have a lot of duplicate image files on my Windows computer, in different subfolders and with different filenames.
What Python script or freeware program would you recommend for removing the duplictes?
(I've read this similar question, but the poster there is asking about visual duplicates with differing filesizes. Mine are exact duplicates with different filenames.)
I simply want to create an automatic script that can run (preferably) on a web-server, and simply 'clicks' on an object of a web page. I am new to Python or whatever language this would be used for so I thought I would go here to ask where to start! This may seem like I want the script to scam advertisements or do something illegal, but it's simply to interact with another website.
Sorry for asking, I hope you guys can provide me with some ground to start on!
ok so I am feeling a little stupid for not knowing this, but a coworker asked so I am asking here: I have written a python algorithm that solves his problem. given x 0 add all numbers together from 1 to x.
def fac(x):
if x > 0:
return x + fac(x - 1)
else:
return 0
fac(10)
55
first what is this type of equation is this and what is the correct way to get this answer as it is clearly easier using some other method?
Hi guys
Not sure if anyone has used aadvark but it has a very nice integration with Gtalk.
If you have signed up on aadvark - when any question is posted in your area of expertise - there will be nice pop-up in ur gtalk window asking if you are interested in answering - if you say Yes - it will ask you the question and you can answer in that window itself.
Is that something they are able to do because Google bought them or does google have an API with which we can integrate it with our application to do something similar.
Thanks