Tagged Questions
5
votes
3answers
508 views
RealBasic to write Windows applications?
Before I go ahead and invest time checking out RealBasic, I'd like some feedback from people who have moved on from VBCLassic and use the Windows version of RealBasic to write professional business ...
2
votes
1answer
196 views
How to draw on screen using RealBasic, Visual basic? Where i have one default laptop screen and second monitor
I have my laptop default screen and second screen. How can I write RealBasic, VisualBasic (Java not possible) application which can allow me to paint on desktop (both screen)?
1
vote
1answer
66 views
Getting number of CPUs on Windows with realbasic
I tried using WMI, but with no success so far.
Dim objLocator As New OLEObject("WbemScripting.SWbemLocator")
Dim objService As OLEObject
objService = objLocator.ConnectServer(".", "root\cimv2")
Dim ...
1
vote
2answers
287 views
RegisterWaitForSingleObject To Watch a Directory using RealBasic
I'm trying to watch a directory for changes using the FindFirstChangeNotification function. This works if I take the handle returned by FindFirstChangeNotification and stuff it into ...
0
votes
1answer
71 views
Get pid of the process wich killed my application
How could i detect which process killed my application? Do i need to run another instance wich creates a hook on my application or is there an easier way?
Thanks:)
0
votes
1answer
267 views
SetBkColor and SetTextColor Don't set the background and text color for DrawText
Using the following code to write a string to the DesktopWindow's device context works, but the background color and text color remain the same (white on blue):
Private Sub writeToScreen(txt As ...