i configured j2me environment in eclipse . now i want run j2me in blackberry emulator how can i configured the blackberry simulator(i need to develop j2me application for blackberry)
Regards
Aswan
Hi
I have three level heirarchal data. using the statement below i managed to display two
level data. I need to extend it to one more level.
Current heirachy is Modules--Documents
I need to extend it as Packages--Modules--Documents
var data = (from m in DataContext.SysModules
join d in DataContext.SysDocuments on m.ModuleID equals d.ModuleID into tempDocs
from SysDocument in tempDocs.DefaultIfEmpty()
group SysDocument by m).ToList();
Regards
Tassadaque
Hi folks I'm trying to figure out which unit JTS LineString.getLength() return.
for example:
LineString foo = (initialize line string somehow)
foo.getLength() -> 7.025667228118838E-4
Are these Kilometers?, Meters?, Feet?
best regards,
Andreas
Hello !
I have a CF application.
In some view i have a ContextMenu that shows OK.
Is there a way to catch an event as the menu is drawn/opened?
I need to do some things just as the menu is drawn, because doing it later (on menuitem click) is already too late.
regards
Hi,
I am developing program on window's using msys and mingw. I want to have similar function as provided by WINAPI CreateFile(). Is there any solution for this?
Regards,
Dhaval
Hello,
I have a big file with thousands of lines of thousands of characters.
I move the cursor to 3000th character.
If I use PageDown or <CTRL>-D, the file will scroll but the cursor will come back to the first no-space character.
There's is an option to set to keep the cursor in the same column after a such scroll ?
I have the behavior with gvim on Window, vim on OpenVMS and Cygwin.
Regards
Hi all,
One of my functions in a class is called GetIpAddress() which returns the following string:
System.Web.HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"]
This all works well in regular page loads and gets my ip address, but when i for example let a user place a comment, then the ip address is lost after postback and i get an empty string returned.
Am I missing something here maybe?
Kind regards,
Mark
Hey guys, I have an idea that I'd like to start implementing that at the crux of it, will basically be a chat website, and will need to support multiple rooms. Quite frankly, I'm not too sure where to begin with regards to setting up a very sturdy/scalable chat system in python (or another language if you guys believe it to be a better alternative), so any suggestions that can get me pointed in the right direction will be greatly appreciated.
Hi,As far as i know, Android emulator doesn't have a camera .To capture a live image we have to use web camera.I have seen code in this web site "http://www.tomgibara.com/android/camera-source" to use web camera in android emulator to capture a image but, i don't how to use this code.I am new to this field , can any one help me how to do it.
regards,
s.kumaran.
Hi,
I would like to know how kernel programmer thinks about memory vs user mode programmer. I would also like to know few more differences between kernel programming and user mode programming.
Thanks & Regards,
Mousey.
Hello,
Word is giving me alot of issues with UT8 content, it usually comes out garbled and is alot of hassle converting.
What editor would you advise content staff to use that is web safe?
Regards
Aaron
Need to get a certian subgroup of data per day (Seperated by weekday)
For example
Select weekday,bla,blabla,blablabla from dbo.blabla
where bla = @StartDate
and bla <=@endDate
I need the output to be:
Monday bla blabla blablabla
Tuesday bla blabla blablabla
If someone could help me that would be awesome.
Thanks & Regards
Jacques
Hi
I am using checkboxselectionmodel in ExtJS grid?
when i clicked on the row the row get selected and the respective checkbox also checked ..
But i need the checkbox to be checked only when i click the checkbox otherwise i want row
only get selected ...
Please help me out...
Thanks & Regards,
Ramanavel Selvaraju
I am using sfAdminJrollerTheme Plugin for some parts of my application, but when I generate new modules without admin generator, I lose same look and feel than jroller in my other application pages. I know maybe is good idea to use admin generator for everything but I cannot change all my modules.
Regards,
Hi,
I came around this technique of converting datatable to excel
http://www26.brinkster.com/mvark/dyna/downloadasexcel.html
Do we have any Equivalent of Response.AppendHeader in windows application in C#.
Regards
Hema
Hi,
I have to login with a username / password with a c# program with asp.net form.
I have already do that with HttpUtility on PHP website but how to do that with ASP.NET website ?
In ASP.NET, I must handle postback and so on... Any ideas ?
Thanks in advance
Best regards
Hi,
i want to configured the configuration file to use more than one MSDB database, which are stored in separated database instances in Stored packages of SSIS database. if any body knows let me know ?
write in steps how to do..?
Regards.
kumar
Hello,
Im trying to print, using a xslt sheet a url but im having problems with the chars = and &:
This is the url that i want to render:
<a href="whatever.aspx?x=1&y=2">whatever</a>
Im getting that "=" is an unexpected token.
How should i have to put the = and the & in a xslt sheet?
Thanks in advance.
Regards.
Jose
Hi All,
Is there any specific methodology followed to specify a language for given grammar ?? i.e. Is it necessary to run all the production rules given in a grammar to determine the language it represents? I don't have an example as such since the one I am working on is a homework question.
Regards,
darkie15
I want to use selenium test to cover my rails project ! but i just find little documents on selenium test . I want someone to give me some documents for selenium test of all types !like website ,pdf ,text etc. you can sent them to my gmail [email protected] Thank you ,and best regards!
Hi,
I am developing a iPhone application that uses Facebook APIs.
Which API should I use for incrementing the like count of a Facebook page?
Thanks and regards,
Deepa
In Scala 2.7, I could write:
package com.acme.bar
class Bar
.
package com.acme.foo
class Foo {
new bar.Bar
}
This doesn't compile in Scala 2.8 -- however this does:
package com.acme
package bar
class Bar
.
package com.acme
package foo
class Foo {
new bar.Bar
}
What was the motivation for this?
What is the precise meaning, with regards to scope and visibility?
When should I use one form over the other?