Hello all,
I have a ppt file with a slide with an wmf image in it and I want to "ungroup" the image elements in it using VBA.
Can it be done? and if so, how?
Thanks.
Hello,
I have an ANTLR grammar that can parse and evaluate simple expressions like 1+2*4, etc.
What I would like to do is to evaluate expressions like 2+$a-$b/4 where the $ variables are dynamic variables, that come from an external source and are continuously updated.
Is there any design pattern on how to do this using ANTLR, best practices, etc?
Shall I "substring" the $a with the updated value ($a - 4.34)
A nicer way to do this?
Thx
I am trying to translate some of the phrases of my website into various languages. so, in my database, I have a table with rows of
ID//text//dest_language//text_in_dest_language
At the moment, I retreive each translation one by one:
get text_in_dest_language where text="Hello World" and dest_languge="zh"
This results in 40-50 db calls per page, which, on the app engine, is rather slow.
What can I do to mitigate this slowdown?
Hello
I want to run a java program on linux server in profiling mode means I want to profile a java program on linux server.Is there any java profiling software that can profile java program on linux server.
please suggest me what can I do for profiling.
Thanks in advance.
Hello!
How to get FontMetrics without use Graphics ? I want to get FontMetrics in constructor, now I do this way:
BufferedImage bi = new BufferedImage(5, 5, BufferedImage.TYPE_INT_RGB);
FontMetrics fm = bi.getGraphics().getFontMetrics(font);
int width = fm.stringWidth(pattern);
int height = fm.getHeight();
Hello!
I want to write video filter for Adobe Premiere, and I need to print/draw/render some text into the output video frame.
Looking into adobe premiere cs4 sdk I couldn't find a quick answer - is it possible?
Please provide some samples!
Thanks!
Hello, I am getting a compile error, saying that the copy constructor of the scoped_ptr is private with the following code snippet:
class a {};
struct s
{
boost::scoped_ptr<a> p;
};
BOOST_PYTHON_MODULE( module )
{
class_<s>( "s" );
}
This example works with a shared_ptr though. It would be nice, if anyone knows the answer. Thanks
Hello everyone.
I need to bind an enum to a combobox that is inside a DataGridTemplateColumn, but only some of the options that the enum has.
Example:
Enum options:
Unknow, One, Two, Three, Four, All
Bindable ones: One, Two, Three, Four
Any way to do this?
Many thanks.
Best regards
Hello,
Suppose I have a path in a string called '/home/user/directory/HelloWorld.txt'. I would like to remove the HelloWorld.txt, and end up with '/home/user/directory'. What regex would I need.
Hello. Does anyone know how I can create a screen overflow while a program is running? Mainly while a game is running. If anyone has used xFire or Steam, these use this feature. I've created a winform which starts the game/program and then minimizes. Could the overflow be created in the same winform? Thanks for the help! :)
Hello, I want to write a plugin that will pull a sidebar from one Wordpress blog and place it in the sidebar of another blog. Can someone help me with this, please? I know to write a plugin, but actually dont know where to start with this idea.
Hello,
var val = $("#desc").val(); // input box
var val2 = $("#type").val(); // select box
if((val=='') || (val2 == ''))
{
alert("err");
}
else { // codes }
when i select dropdown and not type anything on inputbox, the alert err still comes out?
how to make it when dropdown is selected, it goes to else clause?
Mvalue = MonthName(5, True)
fileL = \bobby\outside\"
myFile = fileL & Mvalue & Right(Year(Date), 2) & "\Goodbye - " & myfdate & ".xls"
Set omail = CreateItem(olMailItem)
With omail
.Subject = "Hello"
.BodyFormat = olFormatHTML
.HTMLBody = myFile
How do I make the.HTMLBody = myFile, into a link within the email that will be sent out
Hello,
Does anyone know how to retrieve a piece of data and display the results in php file?
A similar query that I would enter is something like this:
SELECT 'email' FROM 'users' WHERE 'username' = 'bob'
Thus, the result would be just the email.
Thanks,
Kevin
Hello!
Please visit http://domenadesign.com/istra-bike.com with Firefox browser!
After a few clicks on the links page go crazy but only in Firefox, what's the problem?
I tried to experiment with anything in css (position, float...) but it doesnt work properly..
Thank you for your answer!
Hello everyone,
I want to add twitter like function to my site, like t.mysite.com. Any open source, stable and easy to setup/use twitter software?
thanks in advance,
George
Hello. I have read some info about DSL. But what is it good for? What are situations, where using of DSL is better than another approaches?
And how widespread is using of DSL?
Hello,
Could anyone point exactly where MSDN says thet every user stored procedure returns 0 by default if no error happens? In other words, could I be sure that example code given below when being a stored procedure
IF someStatement
BEGIN
RETURN 1
END
should always return zero if someStatement is false and no error occurs?
I know that it actually works this way, but I failed to find any explicit statement about this from Microsoft.
Hello
I have a enumeration for elements in a JTree
When I find some specific element in this JTree, I want to check it's children. Do the method children() in a Enumeration check it's grandcildren too?
For example, let's supose this JTree, considering the identation as new levels of the tree:
Fruits
apple
grape
orange
peach
pineapple
strawberry
banana
If I get the children of grape, will I have just orange and peach or will I get peach children (pineaple) too?
Hello.
I have to serialize & desserialize json data.
if the data type was XSD, I am able to create class by using XSDObjectGen.exe
But ,
the data type I have to serialize is 'JSON'.
Is there any good way to generate class for serialize & deserialize ?
Hello.
I'm developing an iPhone application and I want to know the location on a MkMapView where the user has touch.
I have a MKMapView that fills the screen. When the user touch over the map, I need to know the location of the point the user has touched. Is that possible?
Thank you.
Hello, I would like to work with the hierarchyid in a dataset or custom object. I am not sure how to get parents, children, siblings and other functions will the data is in memory. I can do it within the database but once the info is pulled out of the database into a dataset and cached -- how do you work with it then?
Hello,
Can i share one application related data with another. Say I have a music file in resources/raw folder of apk2. Can I use the same file in apk1.
thx...