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,
Long.parseLong( string ) throws an error if string is not parsable into long.
Is there a way to validate the string faster than using try-catch?
Thanks
Hello
I have created a new content type "Quote". Now the user should be able to link a specific "Quote" to a specific page where the user wants the quote to be shown.
Is this possible?
thx
Hello,
I was wondering the best way to upload file to a web server in cocoa. I cant seem to get my curl code to work even though it works when run from terminal.
curl code:
system(@"curl -T /file.txt http://webserevertouploadto.com")
Thanks for any help
Hello,
We have a machine that needs .NET Compact Framework installed and now we need to install standard .NET Framework 3.5.
Any problems or known issues with installing both frameworks together?
Thanks.
Hello,
Im astonished. Im trying this simple calculation in a Java application:
System.out.println("b=" + (1
- 7/10));
Obviously Im wainting for "b=0.3" in the output but here's what I get:
b=1
What?! Why this happens?
If I make:
System.out.println("b=" + (1-0.7));
I get the right result which is "b=0.3".
What's going wrong here?
Thanks!
Hello all
i have application that convert data structure from the GUI to doc/pdf/rtf/html ... files
the structere logic contains the info about pages and data on each page so basccly i can convert it to every thing .
but my problem is that i wish to convert this structure to some kind of book that is
exe binary file . and i have no idea how or which ways i can do it ?
can you give me some ideas or solutions on who to embed book into exe file
Thanks
Hello I am a beginning android developer using windows and the eclipse IDE to develop java android applications.I have published one game but there is a free version of the game and a paid version. The google market insists that the different versions must have different package names. So far i have been refactoring the package with 2 different names and changing the R resource file import each time i build the different versions. The code is 99% the same for both versions.Is there a better way?
hello i would like to know the java panel equivalent in qt..i mean which class we need to use in qt,i.e.. qframe or qwidget..i need to add many panels to my qt mainwindow
Hello guys,
Using NetStream, I can create progressive video player. But can I save the downloaded chunk to my local disk in AIR??
My first idea is that, download part of file into local disk, let NetStream pointing to that file, and then appends the chunks to that file (FileMode.APPEND) periodically. But it does not work and seems that NetStream would 'lock' the file preventing write operation.
Any ideas?
Hello, I've recently started learning PHP, but I have a wide knowledge on C++. I've been wondering how to make a web bot and now, I would greatly like to make one. I won't be using this robot for spamming or anything, just as a test of what PHP/C++ can do online. I was wondering how I could go about doing this and if you have any articles/tutorials that would be helpful.
Thanks,
John
Hello,
I have an asp.net page with a datalist with few textboxes, and a submit button.
when i cahnge the text in the textbox, and click submit, the value i get in the vb code is the old value and not the one i just entered.
Any idea?
thanks
Hello, I'm very new at USSD developing. I have a question:
Can I retrieve the IMEI number of a MS(Mobile Station) via an USSD PUSH Application?
The idea is to create an application that is pushed by the gateway, and is totally transparento to the Mobile phone user.
Can it be done?
Thanks for reading
Hello, I have an sql select query that has a group by.
I want to count all the records after the group by statement.
Is there a way for this directly from sql?
For example, having a table with users I want to select the different towns and the total number of users
select town, count(*) from user
group by town
I want to have a column with all the towns and another with the number of users in all rows.
Hello,
I get no visible scrollbars on the y axis with the following class
.bodyTextBox
{
height: 150px;
width: 225px;
overflow-x: hidden;
overflow-y: scroll;
padding: 10px;
}
while every other browser works fine.
Any info is very much appreciated.
Hello.
My company is deploying an embedded software/hardware product. We have beta testers lined up who will test the product in the field.
We would like a system of keeping track of the feedback we receive from these users. Perhaps some sort of ticketing system?
I've looked at Zendesk as a possibility.
Thoughts?
Thanks,
Jason
Hello,
I want to encode passwords for UNIX accounts using the crypt function. I'm using pharo 1.0. I tried to install the crypto package from squeakmap, but it gaves me an error and the package seem to get partially installed (categories without class).
How can I get my password crypted? I'm willing to invoke external code, if it is required (and there's a package in SqueakMap that makes the trick in pharo).
Thanks.
Hello,
I wanto call a PHP script using Google App Engine. I just want to execute the script. The script updates a couple of databases on my webhost. But I guess Google App waits for the response. Is there a way by which I can start the script.
The script takes some time and Google App might die during that time.
Hello,
I need to display a text in 3D using vml/canvas/svg and do some transformation to the shape of the text like the effect of Ctrl+T in photoshop, even align a line of text to a curve, is there a way to convert text to shape first?
The only thing close is getImageData() in firefox which is not ideal but OK. Any better methods?
Using browser-specific hacks or voodoo is OK, but no Flash please :)
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 with jquery and want to ask a question, can jquery make something like this pics? I don't know what's this was called, so I can't googled it.
Regards, B_S
Hello Guys
How to start any web cam through programmatically?
my main requirement is it should start webcam? and that should be any application - software not a website.
we can use any language.
So how can start the web cam using programing language?
btw...
[I am not talking about the power of the webcam][Any web cam means any companies web cam]
Hello,
I want to add a column to a gridview which contains button control. I am using ID(integer and primary key) as the 1st column of Gridview. What I want is that when a user clicks the button on any given row of gridview, I want to able to determine the ID of the row to which the clicked button belongs
Vam Yip
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.