Is it possible to display images from web by URL?
As far as the laws of mathematics refer to reality, they are not certain; and as far as they are certain, they do not refer to reality. Albert Einstein
Is it possible to display images from web by URL?
As far as the laws of mathematics refer to reality, they are not certain; and as far as they are certain, they do not refer to reality. Albert Einstein
Thank you! As far as the laws of mathematics refer to reality, they are not certain; and as far as they are certain, they do not refer to reality. Albert Einstein
Hi! I need a deck of cards "Pictures" for a project 52 cards. The funnier they are the better it is, if someone know a URL. /Jarek "The word politics come from the Greek; poli, meaning many, and tics, meaning bloodsuckers." - George Stephanopoulos
This is funny! A new way of testing graphic cards. ;P http://bbspot.com/News/2004/05/radeon_x800_vs_geforce_6800.html[^] As far as the laws of mathematics refer to reality, they are not certain; and as far as they are certain, they do not refer to reality. Albert Einstein
I agree, but because its called Codeproject that does not mean it has to be MS languages, code is code no matter if it comes from SUN or Microsoft /Jarek As far as the laws of mathematics refer to reality, they are not certain; and as far as they are certain, they do not refer to reality. Albert Einstein
Corinna John wrote: This is a Microsoft community, and Java is not a Microsoft technology. But in CP settings you can shoose pearl? That is not a MS language! Corinna John wrote: Out there are more than enough Java forums. Yes but none of them is as good as the CP MFC/C++ ;P /Jarek As far as the laws of mathematics refer to reality, they are not certain; and as far as they are certain, they do not refer to reality. Albert Einstein
Maximilien wrote: In a sense, this is cool ... but having a "blue" network cable coming out of the guitar looks weird Its not a network cable its a telephone cable, its only support 56k ;P /Jarek As far as the laws of mathematics refer to reality, they are not certain; and as far as they are certain, they do not refer to reality. Albert Einstein
Maximilien wrote: I'm waiting for a city wide first person shooter Don't you ever watch the news? There is a lot of first person shooters ;P As far as the laws of mathematics refer to reality, they are not certain; and as far as they are certain, they do not refer to reality. Albert Einstein
Chris Meech wrote: You'll have to change your name to Arnold, though. Maybe even run for governor And learn how to preannounce Califoouurnia. As far as the laws of mathematics refer to reality, they are not certain; and as far as they are certain, they do not refer to reality. Albert Einstein
I discovered that in My CP settings there is no Java checkbox just J#? I happened to like Java but not J#, it would be nice if CP hade a Java forum? MS is now on the good foot with SUN, so let us all shake hands and sing. More Java to the people ;P Please don't stone me because I like Java :-O /Jarek As far as the laws of mathematics refer to reality, they are not certain; and as far as they are certain, they do not refer to reality. Albert Einstein
he looks like a airbag ;P As far as the laws of mathematics refer to reality, they are not certain; and as far as they are certain, they do not refer to reality. Albert Einstein
I live in Sweden we don't have earthquakes :omg: I moved the computer box just shortly before it happened, the fan was vibrating to mutch I think. /Jarek As far as the laws of mathematics refer to reality, they are not certain; and as far as they are certain, they do not refer to reality. Albert Einstein
Mike Dimmick wrote: (hint: don't open the attachment to a 'delivery failure' email, because that's another way that viruses spread unfortunately) On to one week ago I got 10 messages in a day with 'delivery failure' :(( Every one of them had Virus/Trojans; I am lucky to have good protection! My ISP recently added virus protection direct on their Mail server /Jarek As far as the laws of mathematics refer to reality, they are not certain; and as far as they are certain, they do not refer to reality. Albert Einstein
My old P3 Celeron CPU disconnected it self ones when I was working. No serious damage was made, but I was surprised. /Jarek As far as the laws of mathematics refer to reality, they are not certain; and as far as they are certain, they do not refer to reality. Albert Einstein
ShellExecute would do the trick!
ShellExecute(handle, "open","calc.exe", NULL, NULL,SW_SHOWNORMAL);
/Jarek As far as the laws of mathematics refer to reality, they are not certain; and as far as they are certain, they do not refer to reality. Albert Einstein
Thank you! I am a C++ programmer ;) I know the console API. In STL C++ you can use system function but not in VB :( It amazes me that there is no other way to run console commands in VB? /Jarek As far as the laws of mathematics refer to reality, they are not certain; and as far as they are certain, they do not refer to reality. Albert Einstein
NB.NET is that new-bie.NET? you can use DirectX I think there is a SDK. http://www.microsoft.com/downloads/details.aspx?FamilyId=124552FF-8363-47FD-8F3B-36C226E04C85&displaylang=en[^]
Its in VB6, I can't get it to work properly? this is my test code, this code actualy openes upp 3 cmd's and show the dir in the last one? I only want one cmd and be able to run different commands in it! There is a second problem cmd only works in W2K, NT and XP but not in WIN95-98, there got to be a way to run commands? Shell "cmd", 1 SendKeys "dir c:\ *.txt" + Chr(13), True
You can use SetPixel and GetPixel its a win32 API Public Declare Function SetPixel Lib "gdi32" Alias "SetPixel" (ByVal hdc As Long, ByVal x As Long, ByVal y As Long, ByVal crColor As Long) As Long Public Declare Function GetPixel Lib "gdi32" Alias "GetPixel" (ByVal hdc As Long, ByVal x As Long, ByVal y As Long) As Long
I want to run DOS commands thru a VB app? I know that I can use Shell, but is there a better way? /Jarek