User talk:Xerelin

From Guild Wars Wiki
Jump to navigationJump to search

WIKICODE[edit]

I would love some tips on learning more wikicode. I'm tired of having to copy/paste wikicode from other entries and attempt to fit it to my needs. If anyone knows any tricks or can give any tips, I'm all ears!--Xerelin 16:25, 25 May 2010 (UTC)

Let's see, my buddy has a whole guide of how to make everything userpages and stuff. Let me see if I can find it. →[ »Halogod User Halogod35 Sig.png (talk ]← 16:29, 25 May 2010 (UTC)
BAMPH →[ »Halogod User Halogod35 Sig.png (talk ]← 16:31, 25 May 2010 (UTC)
Thanks a bunch I'm reading that now. Also, I'm taking ideas on doing something to my user page to make it more navigatable and hold the information in a more organized fasion than just thrown on there. --Xerelin 17:51, 25 May 2010 (UTC)

VB.net[edit]

Ok, I was helping someone in-game out with a programming issue last night, you know who you are. Here's how the code looks:

Dim saveFileDialog1 As New SaveFileDialog()
saveFileDialog1.Filter = "Executable|*.exe" //add other cases here using the | name | *.filetype " format.
savefiledialog1.initialdirectory = "\My Documents" //or specify other directory here.
saveFileDialog1.Title = "Save an Executable File"
saveFileDialog1.ShowDialog()
If saveFileDialog1.FileName <> "" Then
Try
With saveFileDialog1
.FileName = FileName
If .ShowDialog() = DialogResult.OK Then
FileName = .FileName
sw = New StreamWriter(FileName)

//using streamwriter to write file and save it.

sw.Write(FileName.exe)
End If
End With
End Select
fs.Close()
End If

--Xerelin 13:58, 26 May 2010 (UTC)