|
The research skills apply to problem solving. That's the whole point behind the exercise. Your problem can be solved in a single line of code. Noone here is going to write it for you because you won't learn anything if we did.
|
|
|
|
|
wow do i feel like a douche... I read over your replys a few times, i really thought about it and did research for an hour today and some how i got the program to work. It displays the corret message and everything, and you were totaly right and i didn't even see it, "The #1 skill you MUST have as a developer is the ability to do research on problems and possible solutions." i just wanna thank you for giving me that tip, i gave it some though last night and i made it happen today!
/J-Man\
|
|
|
|
|
That little skill applies to everything Engineering, software or otherwise.
|
|
|
|
|
Hello Everyone & Help Me please
following is My Project's picture
http://i240.photobucket.com/albums/ff68/GODPREAL_BIZ/block1.jpg[^]
And Test on Hyper Termonal Program (by TCP/IP winsock)
1. type "w" is Forward
2. type "s" is Backward
3. type "a" is turn Left
4. type "d" is turn Right
5. type other is stop
but main problem is
Application VB.NET on Pocket PC
1. How to send word "w,s,a,d" to robot by wireless of Pocket PC
1.1 what namespace ?
1.2 what Reference ?
1.3 what member , class and properties in use ?
2. In .NET 2.0 Compact Framework is support this problem ?
and i want example program.
Thank you very much .
ps. I'm sorry if you don't understand this question , I can speak English a little bit.
|
|
|
|
|
GODPREAL wrote: i want example program.
I want, doesn't get.
Have you read the forum guidelines[^]? If not, I suggest you do, paying particular attention to no. 2. No one is going to do your homework assignment for you.
Paul Marfleet
"No, his mind is not for rent
To any God or government"
Tom Sawyer - Rush
|
|
|
|
|
You did forget to add the magic word : URGNT!
"I love deadlines. I like the whooshing sound they make as they fly by." (DNA)
|
|
|
|
|
Hey guys, I made an application and it has 7 form and 2 modules. Is there any way I can print all those code in Single document (like vb6) in Visual Studio 2005?
- Stop thinking in terms of limitations and start thinking in terms of possibilities -
|
|
|
|
|
Not supported natively. You'd need an add-in to Visual Studio to do this. This[^] is the only one I remember hearing about, but there's nothing stopping you from writing your own.
|
|
|
|
|
Thanks Dave.
(Why Microsoft has to take such features off??)
- Stop thinking in terms of limitations and start thinking in terms of possibilities -
|
|
|
|
|
Can someone show me how to copy an existed Excel file (ie: c:\temp\oldFile.xls) to a new Excel file (ie: c:\temp\newFile.xls)?
Thank in-advanced
|
|
|
|
|
My.Computer.FileSystem.CopyFile("D:\filename.xls", "E:\filename.xls")
- Stop thinking in terms of limitations and start thinking in terms of possibilities -
|
|
|
|
|
It works
Many thanks
|
|
|
|
|
Search about Code Snippet and learn about it. It will help you a lot doing OS tasks.
- Stop thinking in terms of limitations and start thinking in terms of possibilities -
|
|
|
|
|
I keep getting
The remote server returned an error: (500) Syntax error, command unrecognized.
When I try to get the size of a file, The code matches what I found on the net and I also download a class with this function in it and I still get the same error. This has been driving me nuts for days now, I can't find any thing else on the matter on the net!
here is the code:
Dim u As New System.Uri("ftp://192.168.0.33/logo.ycb")
Try
Dim FTPclient2 As System.Net.FtpWebRequest = CType(System.Net.FtpWebRequest.Create(u), System.Net.FtpWebRequest)
FTPclient2.Credentials = New System.Net.NetworkCredential(mLogin, mPassword)
FTPclient2.UseBinary = False
FTPclient2.Method = System.Net.WebRequestMethods.Ftp.GetFileSize
Dim resp As System.Net.FtpWebResponse = CType(FTPclient2.GetResponse(), System.Net.FtpWebResponse)
Debug.WriteLine(FTPclient2.ContentLength)
Catch ex As Exception
Debug.WriteLine(ex.Message)
End Try
Please does someone know why this is happening?
I try both values for the Usebinary property also
|
|
|
|
|
jdionneaxsys wrote: The remote server returned an error: (500) Syntax error, command unrecognized.
This should be your clue. The FTP server you're connecting to doesn't support the commands used to tell the server to report file size.
|
|
|
|
|
Thanks for the reply, but that was my first assumption.
But an old VB6 application that I am currently porting to .NET works fine with the ‘SIZE’ command. It seems to be something with the .NET framework
Any other ideas?
thanks
|
|
|
|
|
In that case, you'll have to find a third party FTP client library that supports what you want it to do with the server that you're trying to connect to. I don't know of any myself, but a little Googling for ".net ftp client library" might come up with something.
|
|
|
|
|
I did download someone’s ftp library and that didn't work either.
There code was almost exactly the same as mine!
Bummer... I guess I’ll keep looking
thanks
|
|
|
|
|
Not sure if this would help, but I don't like your FTPclient2.UseBinary = False ,
I tend to always use binary mode for FTP, avoiding a lot of problems.
Luc Pattyn [Forum Guidelines] [My Articles]
This month's tips:
- 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 PRE tags to preserve formatting when showing multi-line code snippets.
|
|
|
|
|
Thanks for the input, but I have tried both values.
I have been googling for days now.
|
|
|
|
|
..hi is me again..ya..i know it is weird and wrong in this code..i really no any idea that write function in sql statement...i only thing i think was i show time and date in textbox..then date and time in text box will insert in to database..in logintable..the time data type i change to text box...this method can work??i really have no idea how to add function in database.."...thanks for the reply..
|
|
|
|
|
The TextBox doesn't store the date/time in the database, your code does. A TextBox just displays the String equivilent of the value of a variable. You should NOT be storing dates and times in your database as Strings.
|
|
|
|
|
If I had a dollar for everytime I've answered this guy, I'd have his annual salary.
Christian Graus
Please read this if you don't understand the answer I've given you
"also I don't think "TranslateOneToTwoBillion OneHundredAndFortySevenMillion FourHundredAndEightyThreeThousand SixHundredAndFortySeven()" is a very good choice for a function name" - SpacixOne ( offering help to someone who really needed it ) ( spaces added for the benefit of people running at < 1280x1024 )
|
|
|
|
|
Sometimes, no matter how many time you hit the nail...
|
|
|
|
|
Hi all,
I have a control which can be used to select a file and upload / save to server. I am looking for a method which checks whether the file exists in the source machine.
Provided:
1> I can key in the name of the file
2> some times i may not enter full path, just filename only
Any clues will be appreciated
Thanks
Sebastian
|
|
|
|