Forum: Java Apr 21st, 2009 |
| Replies: 1 Views: 514 Hi guys,
I'm connecting to a bluetooth printer using a Phone via the following address: btspp://" + PrinterBluetoothAddress + ":1;authenticate=true;encrypt=false;master=true";
With this address,... |
Forum: Java Mar 22nd, 2009 |
| Replies: 0 Views: 421 Hi guys,
I have a J2ME application that I'm developing in NetBeans. It's ok. I however added one jar reference, let's call it x.jar, which is being seen by Netbeans. Upon compiling however, netbeans... |
Forum: Computer Science Feb 18th, 2009 |
| Replies: 0 Views: 419 If there is a Sim application that does, among other things, send SMS, am I able to tell what SMS it is sending, and to what number, using any method possible? |
Forum: Getting Started and Choosing a Distro Feb 17th, 2009 |
| Replies: 2 Views: 616 Hi,
I'm running Knoppix's backtrack. It has a way of displaying man pages in a browser. you just spacify the browser, e.g. firefox, then the man page is displayed by firefox, instead of the... |
Forum: Visual Basic 4 / 5 / 6 Feb 13th, 2009 |
| Replies: 2 Views: 585 Yyyep!! That worked. AppActivate. Thanks. |
Forum: Visual Basic 4 / 5 / 6 Feb 13th, 2009 |
| Replies: 2 Views: 585 I have an application with Hotkeys installed. when the hotkey is pressed, the application comes to the topmost, or bottommost z-order. I have used SetwindowPos api. The problem, however, is that in... |
Forum: Visual Basic 4 / 5 / 6 Feb 7th, 2009 |
| Replies: 3 Views: 791 selvaganapathy, that did the magic!!! And Comatose, I had dug well into BitBlt. I'm sure it'll help me one of these fine Image days. Thanks guys. |
Forum: Visual Basic 4 / 5 / 6 Feb 4th, 2009 |
| Replies: 3 Views: 791 hi guys,
if I have a form with, say, a picturebox in it. The picturebox is loaded with an image, and I need to copy just a section of it, say at rectangular points, X, Y, L and W to the clipboard,... |
Forum: Java Jan 30th, 2009 |
| Replies: 2 Views: 490 Just found out that in build.xml file, in the section pasted below, if the value of "test" is set to true, the build will always be followed by execution of the code. if it's set to false, the build... |
Forum: Java Jan 30th, 2009 |
| Replies: 2 Views: 490 hi guys,
I'm creating a midlet application with Netbeans. When I select build, the IDE builds my application successfully but goes ahead to run it's emulator. This has the effect of increasing the... |
Forum: Visual Basic 4 / 5 / 6 Jan 20th, 2009 |
| Replies: 4 Views: 1,294 Hi Comatose,
I've already registered the OCX. I'm able to use it's functions like Open to open the printer. But this function takes a string to represent a device name, which is stored in the... |
Forum: Visual Basic 4 / 5 / 6 Jan 19th, 2009 |
| Replies: 4 Views: 848 Instead of RecordSelectionFormula, try this:
Report.SQLQueryString = recordsql. Plus, I don't see where you have logged in with your crystal variable(crystal.LogOnServer). |
Forum: Visual Basic 4 / 5 / 6 Jan 19th, 2009 |
| Replies: 4 Views: 848 Hi, from your code, you are getting a value to include in the query from a TextBox. The Textbox clearly cannot be seen by Crystal Reports. That means you'll need to compose that query to be complete... |
Forum: Visual Basic 4 / 5 / 6 Jan 19th, 2009 |
| Replies: 2 Views: 943 If your intention is just to view, then a recordset would do just fine. take a look at this:
Dim con As New ADODB.Connection
Dim rec As New ADODB.Recordset
Dim ConnStr As String
... |
Forum: Visual Basic 4 / 5 / 6 Jan 19th, 2009 |
| Replies: 4 Views: 1,294 Hi guys,
I have OPOSPOSPrinter.ocx that I'm supposed to use to connect to a fiscal printer and print. I have installed it's drivers.
According to the OCX's limited documentation, it says there... |
Forum: Java Oct 8th, 2008 |
| Replies: 2 Views: 1,101 I stumbled upon the cause of the problem. I was using String.getBytes() method to convert my string that contained image data. This gets bytes as ascii bytes, which corrupts Unicode bytes. I tried... |
Forum: C# Oct 8th, 2008 |
| Replies: 4 Views: 982 I looked up hardware conflicts and how to resolve them. In device manager, you select view, show hidden devices, then uninstall invalid devices. The com ports associated to the devices are released... |
Forum: C# Oct 8th, 2008 |
| Replies: 4 Views: 982 Thanks LizR for the quick response. The thing is, at times, it works just fine. Hyperterminal gets a response and so does my code. But the modem reaches a point and 'decides' to respond to the Query... |
Forum: C# Oct 8th, 2008 |
| Replies: 4 Views: 982 Hi guys, I have a modem connected to my machine. Both My C# code and Hyperterminal can open the COM port, but when the command AT is sent, no reply is got. In control panel->Modems->Query modem... |
Forum: Java Sep 26th, 2008 |
| Replies: 2 Views: 1,101 Hi guys,
I'm currently doing a J2ME application that gets a JPEG image and sends it's bytes to a C# server via sockets. In the J2ME application, I can re-convert the bytes I sent to an Image and... |