Hello,
Are there any tools or tricks how to automatically extract tables from pdfs. Are there any C# libraries that could do that? Or do you maybe know other methods how this could be handled?
Thank you very much
Hello,
i'm using a Rails engine, but i need to customize some controllers actions.
I actually forked the engine, and implementing those customizations into my own fork, but i was wondering if there is an official way in Rails Engines to override and customize controllers.
Hello,
I need to know please, where to localize the messages that are displayed when registering new user ??
for ex" Joomla User successfully registered."
or "Your Account has been successfully activated. You can now log in using the username and password you chose during the registration."
Can I translate them with JoomFish ?? Where can I find them ??
Also, where can I translate the activation email sent to new users ??
Thanks,
HopeWise
Hello,
I am trying to find the area of some regions on an image.
http://img821.imageshack.us/img821/7541/cell1.jpg
For example, I want find the area of the dark-large region on the upper left side.
and I want to find the area of any of the closed geometry from the image.
How can I do that in matlab.
I looked online and I tried regionprops(), but it didn't identify the different regions.
hello i want to get ipaddress of my computer in variable ip thru this code
but it assign nothing in ip
char comm[100];
int s=0;
char ip[100];
sprintf(comm,"export ip=`/sbin/ifconfig eth0 | grep 'inet addr:' | cut -d: -f2 | awk '{ print $1}'`");
s=system(comm);
printf("\n ip is %s",ip);
Hello,
I have the following hash of countries;
COUNTRIES = {
'Albania' => 'AL',
'Austria' => 'AT',
'Belgium' => 'BE',
'Bulgaria' => 'BG',
.....
}
Now when I output the hash the values are not ordered alphabetically AL, AT, BE, BG ....but rather in a nonsense order (at least for me)
How can I output the hash having the values ordered alphabetically?
Hello All,
I have a requirement, wherein I have to display a streamed PDF document on my app. I want to know if PDF streaming os possible on an iPhone app, and if it is possible, then how to go about it.
thanks in advance.
Hello,
The error message that gets added to the validation summary when the form is invalid I need to get access to in client-side JavaScript. How do you access the actual message? My page doesn't have a ValidationSummary present, and Page_Validators[0].errormessage is *. Where is the message?
Thanks.
Hello,
I want to make program using c# with Emgu that can detect white blobs on images from camera and also track it .
also the program can return IDs of tracked blobs
the frame1
//http://www.freeimagehosting.net/uploads/ff2ac19054.jpg
the frame2
http://www.freeimagehosting.net/uploads/09e20e5dd6.jpg
can anyone help please.....
Hello! I'm writing python program to build mac-address cache using pcap. But pcap module for python has no good documentation. I have found this page http://pylibpcap.sourceforge.net/ with code example and it works fine.
Can anybody modify this example to make it able to show the source mac-address for each packet? Or point me to the documentation where I can read about it ...
I have the following code:
#!/usr/bin/ruby
class Person
def self.speak
p = self.new
puts "Hello"
p.chatter
end
private
def chatter
puts "Chattering"
end
end
p = Person.new
Person.speak
I'd like to make chatter private, accessible only within p.. but I want p to be able to access it within the class method. Is there a better way to design this so chatter isn't available to the public, but a "factory" method like self.speak can call chatter?
Hello,
I have follwing erorr after I have published site in IIS 7.5 and i don't hnow what to do
Description: An error occurred during the parsing of a resource required to service this request. Please review the following specific parse error details and modify your source file appropriately.
Parser Error Message: Could not load type 'ProiectLicenta.MvcApplication'.
Source Error:
Line 1: <%@ Application Codebehind="Global.asax.cs" Inherits="ProiectLicenta.MvcApplication" Language="C#" %
Hello. I am working on a cocoa-based text editor. Should I base it on NSTextView or is there a more efficient option? Keep in mind that I plan to support tabs so there can be many editors open at the same time.
Hello,
I am working on a geographic project in Java.
The input are coordinates : 24.4444 N etc
Output: a PLAIN map (not round) showing the point of the coordinates.
I don't know the algorithm to transform from coordinates to x,y on a JComponent, can somebody help me?
The map looks like this:
http://upload.wikimedia.org/wikipedia/commons/7/74/Mercator-projection.jpg
Thank you
hello Dear
i just need to auto generate id like abc101,abc102,abc103,....abc10n
and it should be store in DB table. and also it should be show in any textbox at runtime .
Please give a proper solution....
Special Thanks in advance :)
Regards.
Pradeep Kodley
Hello all, i need to know how to use an IP address like inet_addr("192.168.0.2"); in C++
where this returns DWORD. My wrapper in C# treats this field as an Int?
Can anyone help on this misunderstanding?
Hello :)
I'm writing a compressor for a long stream of 128 bit numbers. I would like to store the numbers as differences -- storing only the difference between the numbers rather than the numbers themselves because I can pack the differences in fewer bytes because they are smaller.
However, for compression then I need to subtract these 128 bit values, and for decompression I need to add these values. Maximum integer size for my compiler is 64 bits wide.
Anyone have any ideas for doing this efficiently?
Billy3
Hello I'm new to ontologies, my assignment is to create an ontology using Protege V4.0.2, (which I've done) and to create a website over that ontology(which I'm working on),
i just need the basics on how to search the ontology using the Jena library
I dont have any specifics because i haven't yet started.
but i'm in a time crunch, and i need to now exactly how i'm goning to do it
Hello.
I'm developing an iPhone application to search cities on a MKMapView. The user specify a city and then it show its location on a MKMapView. Is that possible?
Thanks.
Hello All
I am trying to shift my asp.net 3.5 application (C#) to sharepoint.
I have used one .ashx(web handler) file for multiple file upload control in my application
Now it works perfectly locally in asp.net but when i do the same thing with sharepoint with no change in code it stops working.
I dont know if i need to add some dll or any supportive file to get that file upload page (using .ashx file) working in sharepoint
Please help
Hello ,
I am doing django admin internationalization .I am able to do it perfectly.But my concern is that in the address bar it is showing the app label in tranlated form which is not in us acii .Is this the problem with django or i m doing something wrong.
Hello,
I am using a Xib (tab bar controller with navigation bar).
when i use navigation bar in app delegate then Xib slides little bit bellow.Actually i want a navigation bar on enter page so it is compulsory to define navigation bar in app delegate.
Please help me how i solve this problem.