Login Register






.NET Helpdesk filter_list
Author
Message
.NET Helpdesk #1
Hi, and welcome to my .NET help desk.

I've been a developer for 2 years now and started college not so long ago.
Since college isn't giving me any boost right now in my programming knowledge, I though about becoming active again in some forums including this one (alphas)

Anyways, I mainly do C#, though i still believe I can help you in VB.Net.

Ask away your questions here, and I shall try and answer them the best I can.

I also do Java, though this is irrelevant to this thread.

Please:
- Do not expect me to give you all of your code, I will not program your project.
- I am stronger in certain subjects and weaker in others, please do not expect me to know everything in the most precise ways.
- Nothing illegal (CC Stealing), stuff like rats, crackers and 'grey hat' questions are still accepted.

Now please, let me help you in your .Net programming.

Reply

RE: .NET Helpdesk #2
This is very nice of you!

Reply

RE: .NET Helpdesk #3
Hmm, so there isn't a lot of coders on here.

Reply

RE: .NET Helpdesk #4
(10-31-2015, 12:43 AM)God Wrote: Hmm, so there isn't a lot of coders on here.

I need help to download a file from dropbox but can't seem to work can you write me down a code i did the webclient code and won't work gives me erros thanks!

Quick Edit
Using Visual Studio 2015, VB.net

Please i need it to download a file from dropbox then run it

I hope you can help because i need it quick
(This post was last modified: 11-12-2015, 02:48 PM by Anon.)

Reply

RE: .NET Helpdesk #5
Seems like a good service, hopefully a few coders will arise on this forum.
[Image: y8zaLQT.png]

Reply

RE: .NET Helpdesk #6
(11-12-2015, 02:35 PM)Viper Wrote:
(10-31-2015, 12:43 AM)God Wrote: Hmm, so there isn't a lot of coders on here.

I need help to download a file from dropbox but can't seem to work can you write me down a code i did the webclient code and won't work gives me erros thanks!

Quick Edit
Using Visual Studio 2015, VB.net

Please i need it to download a file from dropbox then run it

I hope you can help because i need it quick

Sure, let me grab a dropbox link and ill get back to you

Reply

RE: .NET Helpdesk #7
There are coders here just not a lot of them work for free lol
You mind is programmable – if you’re not programming your mind, someone else will program it for you.

Reply

RE: .NET Helpdesk #8
(11-12-2015, 07:05 PM)Captin_Lulzboat Wrote: There are coders here just not a lot of them work for free lol

^^^, depends on if I want fake internet points though

(11-12-2015, 02:35 PM)Viper Wrote:
(10-31-2015, 12:43 AM)God Wrote: Hmm, so there isn't a lot of coders on here.

I need help to download a file from dropbox but can't seem to work can you write me down a code i did the webclient code and won't work gives me erros thanks!

Quick Edit
Using Visual Studio 2015, VB.net

Please i need it to download a file from dropbox then run it

I hope you can help because i need it quick

Using wc As New Net.WebClient 
   wc.DownloadFile(-downloadlink-, -filelocation-)
End Using
Just make sure the download link is a direct download link. File location also needs to include file extension. Alternatively you can just not put in a location to download to and remove the comma and it will download into the base directory of the application.

Reply

RE: .NET Helpdesk #9
(11-12-2015, 09:14 PM)Killpot Wrote:
(11-12-2015, 07:05 PM)Captin_Lulzboat Wrote: There are coders here just not a lot of them work for free lol

^^^, depends on if I want fake internet points though

(11-12-2015, 02:35 PM)Viper Wrote:
(10-31-2015, 12:43 AM)God Wrote: Hmm, so there isn't a lot of coders on here.

I need help to download a file from dropbox but can't seem to work can you write me down a code i did the webclient code and won't work gives me erros thanks!

Quick Edit
Using Visual Studio 2015, VB.net

Please i need it to download a file from dropbox then run it

I hope you can help because i need it quick

Using wc As New Net.WebClient 
   wc.DownloadFile(-downloadlink-, -filelocation-)
End Using
Just make sure the download link is a direct download link. File location also needs to include file extension. Alternatively you can just not put in a location to download to and remove the comma and it will download into the base directory of the application.

^^^ basically, make sure you get the direct dropbox link though.
To execute it use
Process.Start(-filelocation-)
and that's it

Reply

RE: .NET Helpdesk #10
(11-12-2015, 09:27 PM)God Wrote:
(11-12-2015, 09:14 PM)Killpot Wrote:
(11-12-2015, 07:05 PM)Captin_Lulzboat Wrote: There are coders here just not a lot of them work for free lol

^^^, depends on if I want fake internet points though

(11-12-2015, 02:35 PM)Viper Wrote:
(10-31-2015, 12:43 AM)God Wrote: Hmm, so there isn't a lot of coders on here.

I need help to download a file from dropbox but can't seem to work can you write me down a code i did the webclient code and won't work gives me erros thanks!

Quick Edit
Using Visual Studio 2015, VB.net

Please i need it to download a file from dropbox then run it

I hope you can help because i need it quick

Using wc As New Net.WebClient 
   wc.DownloadFile(-downloadlink-, -filelocation-)
End Using
Just make sure the download link is a direct download link. File location also needs to include file extension. Alternatively you can just not put in a location to download to and remove the comma and it will download into the base directory of the application.

^^^ basically, make sure you get the direct dropbox link though.
To execute it use
Process.Start(-filelocation-)
and that's it

[Image: 5b9419748effb897cad32daa300332020873e52f...e5ad22.jpg]

Reply