I want to draw different 2D objects in OpenGL for example a path/Road ,is there any program i could draw them using a GUI then transfer them to points so i could use them in my program ?
Hi,
I am developing a website.Now,this site has some applications including a blog.For blog I am using wordpress.My confusion is,how to create a web design which I can apply to blog also,to keep consistent.Or,the design of the blog can be different?
I have 2 <iframe> on my main HTML form.
These <iframe> are loaded from different external domains. Sometime external server goes offline and user see The page can't be dispayed message on my page.
Is there a way to hide these <iframe> when target server is not available?
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
.
Hi guys, i wanted to make a double border but with no space in between and the double border should be of different color. I tried using image instead but i thought css could probably perform this job for me, i searched the net but hardly find anything close.
What i wanted is total of 2px dotted border with top color of #a4a4a4 and bottom color of #474747.
Any idea how i can do this instead of creating 2 divs?
I have a dll in the GAC. I browse to this same dll in a different place then referenced in the GAC using the file dialog of add reference.
Visual studio repoints it to the gac location.
Boom my build blows up on the build server that doesn't have this dll in the gac or at that location.
What is the best way to fix this?
Hello,
I have a relatively large Conceptual Data Model in PowerDesigner.
After generating a Physical Data Model and seeing the DBMS data types, I need to update all of data types(NUMBER/TEXT) for each data item.
I'd like to either do a find/replace within the Conceptual Data Model or somehow map to different data types when creating the Physical Data Model. Ex. Change the auto conversion of Text - Clob, to Text - NVARCHAR(20).
Thanks!
I would like to have my GWT application use different constants when debugging or developing vs when deployed. What is the right way to do this? My web searches turn up a lot of pages about debugging GWT applications, which isn't what I'm looking for.
What's the reason Java doesn't allow us to do
private T[] elements = new T[initialCapacity];
?
I could understand .NET didn't allow us to do that, as in .NET you have value types that at run-time can have different sizes, but in Java all kinds of T will be object references, thus having the same size(correct me if I'm wrong).
What is the reason?
Say that I have a query of the form
SELECT * FROM MYTABLE WHERE MYCOL in (?)
And I want to parameterize the arguments to in.
Is there a straightforward way to do this in Java with JDBC, in a way that could work on multiple databases without modifying the SQL itself?
The closest question I've found had to do with C#, I'm wondering if there is something different for Java/JDBC.
I'm completely stumped on this one. I have three different lists that need to be displayed on the screen.
I've tried using a ScrollView with a LinearLayout child, and putting my ListViews in the LinearView, but all of the ListViews lock to a fixed height with scroll bars. Using other kinds of Layouts means no scrolling.
I have a class that in order to do it's job needs to have 8 different property values set.
I want to make sure that all 8 properties are set before trying to execute a method.
I currently have all the parameters passed in and set via the constructor.
Is there a better way to do this?
This is a difficult question to search in Google since it has other meaning in finance.
Of course, what I mean here is "Drawing" as in .. computer graphics.. not money..
I am interested in preventing overdrawing for both 3D Drawing and 2D Drawing.
(should I make them into two different questions?)
I'd like to build an infrastructure that will monitor a server and check ping, response time, and more.
The catch is that future checks (for example: does a certain file exist) will be added without recompiling the infrastructure.
How do I build it in such a way that will enable me to attach inherited classes with different functionality, and execute them without recompiling?
Thanks!
I've written a subscription based web app that I want to charge (by credit card) a monthly fee. There are 3 different plans and once they sign up, they should be billed that amount, automatically, every month until they cancel. Is there an easy way to set this up (some sort of online service maybe?).
Hi,
I have a git repository in 1 hard drive. And I would like to relocate that to a different hard drive. What is the safest way to do that?
1. cp -r?
2. tar ball??
3. git clone (but what is the URI for that)?
Thank you.
hi,
I m working on this ror application, need to setup priviledge on different user account. anyone know how to do that? any good links to recommend? Thanks.
Is there any way to manually or programmaticaly set the UI Language so that in my tests I can get a different results from GetUserDefaultUILanguage? Or anyone know the settings within Windows where I can change this?
I'm uisng a RichTextArea to display my html content in SL 4,I want to underline the content displayed by the control ( without modifying the html) and also attach an event of Onclick on the text . I tried different options i.e using RichTextArea in the content template of a Hyperlinkbutton but as the content of RichTextArea cannot be set directly, this was ruled out. Any suggestions ?
I have a page create-quote.aspx. I want to open this page in different modes, depending on whether a querystring parameter is present or not.
My question is at which event should I check, If I have a querystring parameter or not.
I think, it should be preinit, what do you say.
I have an iframe i put on a page using a bookmarklet, i want this iframe to close its self when a i navigate to a certain page inside this iframe.
How to do that using javascript?
Note: iframe and container page are in different domains.
Is it possible for a function to return two values?
Array is possible if the two values are both the same type, but how you return two different type values?
Thank you very much.
Why does extern int n not compile when n is declared (in a different file) static int n, but works when declared int n? (Both of these declarations were at file scope.) Basically, why is int n in file scope not the same as static int n in the same scope? Is it only in relation to extern? If so, what about extern am I missing?
I have a base class for some plugin-style stuff, and there are some methods that are absolutely required to be implemented.
I currently declare those in the base class as virtual, for example
public virtual void Save
{
throw new NotImplementedException();
}
and in the descendand I have a
public override void Save()
{
//do stuff
}
Is it a good practice to throw a NotImplementedException there? The descendand classes could for example be the modules for handling different file formats. Thanks