|
Parlez Anglais, svp. It's considered rude to post in French, and it will limit the amount of answers you'll get - since not everybody is able to read French.
Bye
I are troll
|
|
|
|
|
And your thread title is dumb which matches the message content well.
Any suggestions, ideas, or 'constructive criticism' are always welcome.
"There's no such thing as a stupid question, only stupid people." - Mr. Garrison
|
|
|
|
|
My French is really bad, but to save some time for those who feel like ending the day with a little gentle mockery with Google Translate, the question is along the lines of "What is the process for installing a program to capture a picture from the webcam using Visual Studio 2008 and Windows Vista?" The answer of course, is to download the program from the Internet, then double-click on the installation program 
|
|
|
|
|
quelle est les etapes pour installer un programe capture picture from webcam sur visual studio 2008 /win vista .
please send me message on orsal_2008@hotmail.com
|
|
|
|
|
First, this is an Enlgish speaking board.
Second, noone cares about you email address. You won't get any replies sent to it.
|
|
|
|
|
Maybe some spam for those dumb enough to post it here.
Any suggestions, ideas, or 'constructive criticism' are always welcome.
"There's no such thing as a stupid question, only stupid people." - Mr. Garrison
|
|
|
|
|
how to make .exe file pls help me
Regards
Vidhish
|
|
|
|
|
Whether you run/compile your application? If Yes, then Navigate the Debug/Release folder of your project directory which contain EXE
|
|
|
|
|
Find an assembler or a compiler, some good books and an empty room
I are troll
|
|
|
|
|
Add water and bake for an hour.
Any suggestions, ideas, or 'constructive criticism' are always welcome.
"There's no such thing as a stupid question, only stupid people." - Mr. Garrison
|
|
|
|
|
Convert the source to a hexadecimal representation of assembly code, then save it as an EXE file. Alternatively, you could just press F5 to debug the program, and F6 to build it. The finished program (and perhaps some none-standard references) will be in your project file, in the Release folder. Double click it to run it like any other program
|
|
|
|
|
You didn't like my answer?
Any suggestions, ideas, or 'constructive criticism' are always welcome.
"There's no such thing as a stupid question, only stupid people." - Mr. Garrison
|
|
|
|
|
Yes, but I just wanted to see if he would follow instructions when he was given them. It was either hand-coding the executable file or using a magnetised needle with a very steady hand
|
|
|
|
|
Computafreak wrote: It was either hand-coding the executable file or using a magnetised needle with a very steady hand
LOL.
Any suggestions, ideas, or 'constructive criticism' are always welcome.
"There's no such thing as a stupid question, only stupid people." - Mr. Garrison
|
|
|
|
|
Buy a book and read it. Try learning some basics and showing some initiative before posting here expecting people to answer the most basic of questions.
Christian Graus
Driven to the arms of OSX by Vista.
|
|
|
|
|
Hello,
I am trying to write a program for my Pocket PC 2003 edition, which can receive and / or transmit IR data.
I know that depending on the device, I will need to know some very specific information to properly send the data that I will want to send. However, for the time being, I would be happy just knowing how to send any old bytes of data that I choose.
The problem mainly lies in the fact that I don't know Socket programming, I guess. So far all I have is:
Dim IR As Socket = New Socket(AddressFamily.Irda, SocketType.Stream, ProtocolType.Unspecified)
Where do I go from here, if I wanted to use the Socket I declared (IR) to send or receive data through my Pocket PC's IR port?
As I sit here, I contemplate the last words of Socrates: "I drank what?".
Pokémon Pearl Friend Code: 4554-2418-6836
|
|
|
|
|
Mind you, I have no IR or mobile development experience...
How you do this depends on how the IR device is exposed to you. You'll either be using Sockets or you might have to switch to using serial communications (COM1, COM2, ...) to talk to the other machine.
You might gleen some information on how to do this from this article[^].
|
|
|
|
|
I have been trying to use socket communications so far, but whether I use that or serial communications, I'm having trouble just setting the connection up in the first place. I've actually been trying to understand how to use either in a desktop setting as well, to no avail.
For the socket communication option, I am having problems defining the EndPoint for the Socket.Connect method. This is what I have so far:
Dim IR As Socket = New Socket(AddressFamily.Irda, SocketType.Stream, ProtocolType.Unspecified)
Dim EP As System.Net.EndPoint
Dim SA As System.Net.SocketAddress
SA = New System.Net.SocketAddress(AddressFamily.Irda, 1)
EP.Create(SA)
IR.Connect(EP)
IR.Send(New Byte() {1})
IR.Close()
This doesn't work because the EndPoint (EP) has not been assigned a value. EndPoint also does not use a New constructor, so I guess I'm just not sure how to declare it.
I would just use the IRDA namespace, but my project is (like so many others') meant to communicate with remote controls and other "dumb" IR devices, rather than communicating with another Pocket PC or Windows based device.
I realize the complications involved in communicating with such a device, but right now my main concern is even being able to send or receive any data at all. I figure I'll sort out the data format after that.
Anyway, I don't know C++, but I will check out that link and see if I understand it.
As I sit here, I contemplate the last words of Socrates: "I drank what?".
Pokémon Pearl Friend Code: 4554-2418-6836
|
|
|
|
|
Hello All,
trying to get all the:
IP address
Network card description
MAC address
operational status
speed
for every network card:
For Each nic As System.Net.NetworkInformation.NetworkInterface In System.Net.NetworkInformation.NetworkInterface.GetAllNetworkInterfaces()
TextBox1.Text = (String.Format("{0}", nic.Description))
Label6.Text = (String.Format("{0}", nic.GetPhysicalAddress))
Label10.Text = (String.Format("{0}", nic.OperationalStatus))
Label12.Text = (String.Format("{0}", nic.Speed))
Next
I currently have the above, but it only returns the last network card configuration. If i put exit for before next, it returns the first network card result but I would like to scroll through each card?
Any help would be greatly appreciated.
Thanks
Paul
|
|
|
|
|
Its because you always put the data in the same place i.e. each loop puts the data into the same textbox, so the loop is running OK, its just what you are doing with the data.
Bob
Ashfield Consultants Ltd
Proud to be a 2009 Code Project MVP
|
|
|
|
|
Yes that makes sense. I have just tried a messagebox which works OK as it bring a new messagebox for every item. Is there anyway I can pause the loop, and proceed at the click of a button onto the next loop?
Thanks
|
|
|
|
|
You could just add the information to a ListView using columns. But if you really need to do something like that, then try something like this:
NumericUpDown control containing number of items in the collection
When ValueChanged event fires, get item with index NumericUpDown.Value
Use the members of the item to fill in the controls
It's not perfect (IndexOutOfRangeExceptions unless you fiddle around with the NumericUpDown.Maximum property), but it should get the job done
|
|
|
|
|
Hello,
I can't seem to get the numericupdown to work?
How can I put each loop in a separate columned listview?
ta
|
|
|
|
|
Hi,
I suggest you go to the bookstore, have a look at a few VB.NET tutorial books, pick the one you like most and work your way through it. In one weeks time you will learn much more than you would by asking hundreds of questions here. Get the basics first, then start experimenting, while asking informed questions.
Luc Pattyn [Forum Guidelines] [My Articles]
- before you ask a question here, search CodeProject, then Google
- the quality and detail of your question reflects on the effectiveness of the help you are likely to get
- use the code block button (PRE tags) to preserve formatting when showing multi-line code snippets
|
|
|
|
|
You're basically trying to pause a loop, which, as you've found out, doesn't work very well. The solution is to use an appropriate layout of controls (something that would give you a tabular layout), or to not use a loop at all, but just should the selected card information accessing the data stored in an array fashion, and retrieved by index.
|
|
|
|