Can anyone tell me where to find a Java library that does Muslim prayer time calculation based on the city? Maybe a web service? I would prefer a Java library.
I am having one GtkVbox and I am adding it to GtkViewPort. View port is created from Glade file.
Now the problem is that my vbox keeps updating on every second (I keep adding widgets to vbox on every second) this vbox but my screen did not get updated as add widgets to my vbox.
I can't create new vbox every time as I need to keep previously added widgets in vbox.
How can I tell GtkViewPort to refresh list when I add new widgets to my GtkVBox?
Hi, I Want Link Button Property that When i click the Link Button,Label Content is Shown then after reading the content i click the same link button that time the Label content is Disable
Tell Me the Answer
I have two tables that have relationship with UserName field. Based on UserName column, I want to get ID from CarReserve table. Here is my SQL statement:
SELECT CarReserve.ID
FROM CarReserve
INNER JOIN aspnet_Users ON CarReserve.UserName = aspnet_Users.UserName
WHERE UserName = @UserName
Unfortunately, I am getting this warning:
Ambiguous column name "UserName"
Can anyone here tell me what is wrong with my statement?
When I add a control to a form, visual studio assigns various of the properties of that form a value of null in the auto-generated designer code.
I don't want the designer to make the redundant assignment (the value is already null).
Can anyone tell me how to prevent it?
example
MyControl has property
public SomeClass MyProperty
{
get { return m_MyValue; }
set { m_MyValue = value; }
}
designer then autogenerates the following:
myControl1.MyProperty = null;
Hi, I have an application that just only use for show information and search data. and my datatype is text and has larg size. would you please tell me what's the best storage for it. also I don't want to use SQL database.
thaks
I've to import a file from an external source to a postgresql table.
I tried to do it with \copy from , but I keep getting errors (additional columns) in the middle of the file.
Is there a way to tell postgresql to ignore lines containing errors during a "\copy from" ?
Thanks
I am trying to build an aspx page at runtime (by another aspx page which finally redirects to the new one). As far as I understand, aspx pages MUST be precompiled before a user can view them. In other words, the aspx page must be compiled to the DLL in the /bin folder.
Is there a away to tell IIS, or to order it by VB.NET code, to compile a page before I am redirecting my user to the page?
Any help would be greatly appriciated.
Camarades,
My Visual Studio is in trouble in keyboard. I am working normally, when suddenly my keyboard loses its configuration, so where is the "" becomes "/".
Someone can tell me what would be a possible solution? (Yes, I know something is hazy).
Or has left some Pachter fix for problems like this.
Grateful for any help.
Success for all.
Microsoft Visual Studio 2010
Version 10.0.30319.1 RTMRel
Hello,
Can anybody tell me how do i give absolute path of the img tag's src attribute?
The following doesn't work
<img alt="NO IMAGE" src="/home/administrator/tiger-info0[1].gif"/>
I am working On Ubuntu and i am very sure that image exists on this path.
I have basic idea to the html and studying the basic things of java script and applied on it. And also i want to create the download link in my sample website. But i dont have idea of how to create it? Please tell me the procedure..
Thanks in Advance.
I am preparing an Excel sheet in which I have to maintain the version number of different pieces of software developed at our company.
Can anyone tell me what kind of information to save along with the version number in that sheet for different types of software?
I know only one attribute that is version number, and if anything else so please let me know.
Regards
I want to Change default path which is Program Files in windows application When Creating setup. I tried but i couldn't do that please tell me solution.
good morning all :)
was wondering if anyone can tell me how come I cant get my windows form size to go to 1280x 768 in vs 2008?
My resolution that I am working on is 1024x768..but the computer that I am going to be running this program on is a wide screen..1280x768.
I try to change it in properties but it keeps defaulting back to 1036x760.
I've been trying to determine what this function does, however I cannot seem to find it anywhere under the MSDN documentation of the CComModule class.
Could anyone tell me what it is used for?
Hi from time to time , i want to shutdown my site for maintenance ...
How could i do this? I've seen a option in phpbb to block the site by admin and then unblock them..
Is there any apis for this or tell me a method of how to do this?
I'm using php for my website..
My manager has asked me to assess what changes would be required to add multicast support to a socket-based TCP/IP networking program that is part of a trading system.
As far as I can tell, from the perspective of a Java program, it doesn't seem to matter too much whether the program is unicast or multicast.
Doesn't the Java networking API make all of this transparent? By this I mean, wouldn't the change be a simple one of simply adding additional destinations for the outgoing connections?
I'm trying to use a regular expression as below:
preg_match_all('|<table.*</table>|',$html,$matches, PREG_SET_ORDER);
But this is not working, and I think the problem is the new line inside the string $html.
Could someone tell me a work around?
I am trying to write a recursive method to print n number of asteriks in a line and create a new line at the end.
So, TriangleOps.line(5);
would print
*****
This is the code I wrote:
public static void line (int n){
if(n>0){
System.out.println("*");
line(n-1);
}}
instead it prints
*
*
*
*
*
with a lot of space at the end. Can anyone tell me how to remove the line breaks?
Hi,
I have a programming running on linux ubuntu which tries to connect to a server port using TCP.
Can you please tell me how can I find out that is timeout value for a client socket connecting to a server socket for ubuntu?
Thank you.
I have this method for downloading a script:
var script = document.createElement('script');
script.setAttribute("src", url);
document.getElementsByTagName("head")[0].appendChild(script);
This gives me a GET like this:
GET http://127.0.0.1:17315/Scripts/abc.js HTTP/1.1
However I need to add a header:
Authorization: Bearer Ipnsfm9h1MWYIM0n1ng
Can anyone tell me how I can add a header when I am using Javascript to perform the GET?
As far as Google searches tell me, the maximum allowed number of cookies depends very much on the browser, however I cannot find any recent data as to how much cookies are allowed on modern browsers.
I need to store a somewhat large number of user preferences in cookies (for not-yet-registered users), so what would be the best way of doing that? (Also, those cookies would be accessed both via javascript client-side and php server-side)
Hi i'm new to blackberry application development
Please can you tell me how i'm i to customize my components.
for eg i need a verticalfieldManager, which will have a label field, a image, placed one after the other.
Also this verticalFieldManager should be in the center of the screen, it should not start from the immediate left or right of the screen
Also i want a border for this verticalFieldManager.