Hello,
I need to write a java JCE provider. I have been looking in the net for several days and I could not find solution. Could you please give me some useful informaion.
Regards,
I have recently written a Hello World application using SmartGWT and noticed that the size of the application is huge. In my case it is over 600kb just for that application.
I think that size is obscene so I narrowed the culprit down to two core libraries, ISC_Core and ISC_Foundation which combine for a total size of 649kb. Is there anyway to reduce the bloat of these libraries?
Any help would be appreciated.
Hello , i'm using Moscow ML combined with CGI. I have a site that calculates simple arithmetics. When the submit button i pushed, the site is redirected to the actual CGI file that outputs the result of the calculation. Although in my case, it outputs the html code in raw form rather then actually outputting the result in html. Anybody that knows a solution to this problem ? // thx beforehand
Hello,
I have 2 question about sqlmetal.exe
I generate Linq to Sql classes from command promt for all tables, except some tables?
can I add to model some tables
I want that, in some cases linq to sql classes not generated fully.
thanks.
Hello
How do we play a video using MPMoviePlayerController in sdk 4.0. Like 3.1 and higher, the play does not seem to work. Or it seems to me. Any suggestions?
Hello,
although I read through the manual here:
http://www.doctrine-project.org/documentation/manual/1_2/hu/hierarchical-data
I couldn't find a way to move a node from a Leaf to become a Root node. Any clues?
The question is trivial for inserting a new node...but what about updating a node?
Hello!
I'm writing a Windows phone 7 Silverlight Application. and i have to set Visibility of my Stackpanel to Collapsed when mouse leaves this control. But this event occurs even if i simply click on my control without mouse movings. Lost focus event doesn't work too.
How to achieve my goal?
Thx in advance!
Hello,
I use a script who recquires SQLITE,
on my previous hoster, it works,
on local it works,
on my new dedicaced server, it doesn't, i use PHP5 of course, on this link, you have a phpinfo() of the server.
http://bit.ly/bXlLT1
Could you tell me what/how (apt get?) to install correctly sqlite to avoid this fatal error?
Thanks
Hello everyone! I am really having a hard time trying to set a schedule with development of my game. I would do better and quicker development if I had some sort of schedule to go by. What are some good programs out there, desktop or web, that allow you to easily organize your project and set development goals and milestones?
I would prefer options that are free in cost, but feel free to mention non-free programs also.
Thanks alot
Hello All,
I have an application where I can launch a modal dialog box over a main window. Main window have some network activity going on in back ground which updates my back ground UI. Due to this application menu becomes accessible even modal dialog is open.
Any help is appreciated.
I am using Mac, Qt, Carbon.
Thanks
Rahul
Hello, I have loaded Web Site from HDD. Now trying attach it to process WebDev.WebServer.EXE. But in this edition of VS not exist tool Attach To Process. Is it normal? if yes, how can add this tool or solve my needs?
Hello,
I want to write query something like :-
Select u from bookmaster u order by Year(b.createDate),Month(b.createDate),day(b.createDate)
How do i do this in JPQL? Are there any date parsing functions available?
Hello everyone
I'm trying to use APIKit to scan my codes to detect if there is private API. apiscanner should run as
./apiscanner ~/Desktop/MyPath/myapp.app
I used command 'cd' go to the directory where apiscanner is. But if I call ./apiscanner ~/Desktop/MyPath/MyApp.app on terminal it reports
Last login: Sun Jun 13 07:22:07 on ttys002
unknown required load command 0x80000022
Trace/BPT trap
logout
Even if I copy the files apiscanner and doit to MyPath, then execute, I get the same problem. I think there is something wrong when I run apiscanner under Mac OS X.
Welcome any comment
Thanks
Hello,
Does someone knows how can I change the container for my drop down box?
I have 3 "TD" tags and I would like to move the drop down between them, using client side code.
TY
In Java you can use a for() loop to go through objects in an array like so:
String[] myStringArray = {"Hello","World"};
for(String s : myStringArray)
{
//Do something
}
can you do the same in JavaScript?
Hello,
I'm a noob but trying vigorously to simply validate email addresses that only end in ".edu" or ".ac" is there a simple function/script/solution to this seemingly simple problem? able to use php,javascript or jquery.
Any help would be great thanks in advance!
Hello All,
When a J2ME application runs on Samsung Bada phone (GT-S5320, in my case),a virtual keypad is shown on the screen by default and always! This virtual keypad consists of the following keys - LEFT,RIGHT,UP,DOWN,FIRE and SOFT1, SOFT2.
Is there anyway I can control when this keypad is displayed and when it isn't. I understand that this would be a platform specific solution. But does it exist?
Thanks,
-- Kiran Kuppa
Hello.
I need no generate a full daterange in JScript from a given Startdate to now.
Startdate: 2010-03-25
2010-03-26
2010-03-27
...
2010-05-30
I am very confused with Javascript Date.
best would be a function to give a daterange as params and getting an Array of the formatted date back, something like that:
range[0] = 2010-03-25
range[1] = 2010-03-26
range[2] = 2010-03-27
...
range[x] = 2010-05-30
I am so confused thanks for any hint
marcus
I have a blur function attached to my ckeditor like so
editor = CKEDITOR.instances.fck;
editor.on("blur",function(e){
alert("hello");
});
you with me ?
now when I click on the flash button the editor blurs and causes the alert to show.
how to I stop that from happening and still get the alert to appear other times like when the user leave the editor area
thanks again
Hello!
I'm developing a WinForm application for Windows Mobile 5.0 and above, using C#, .NET Compact Framework 2.0 SP2.
This application uses Web Services and I've found the Disconnected Service Agent from the patterns and practices group at Microsoft, because I want to deal with disconnected eviroments.
Is there any other software to deal with web services connections on disconnected enviroments?
Thank you!
Hello,
I'm currently experimenting flex 4 skinning. I successfully skinned most of the components i need for my application, but i can't find a way to avoid this damn blue drop shadow which is displayed when u'r focused on a textfield or a combobox.
If anyone has a hint on this.
Thanks !
Hello,
how can I write UTF-8 encoded strings to a textfile from vba, like
Dim fnum As Integer
fnum = FreeFile
Open "myfile.txt" For Output As fnum
Print #fnum, "special characters: äöüß" 'latin-1 or something by default
Close fnum
Is there some setting on Application level?
Hello All,
I would like to ask what should be faster: reading excel file from .Net or reading xml file which contains the same data. The same is for writing.
Thank you very much in advance.
mayap.
Hello!
I wrote my own simple Queryable provider which retrieves data from a database.
Now I need to bind this data to a BindingSource and when the new item is added to BindingSource some event or method must be called for handling the add operation.
I have tried to implement IBingingList on a List class which is returned when the query is completed, but the AddNew method is not called when the item is added?
How can I implement this scenario?