Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
P

PixelPixie

@PixelPixie
About
Posts
6
Topics
4
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Outlook Exchange Server 2003 and VB.net
    P PixelPixie

    Hiya Does anyone know how to download information from Exchange server? Not the best way to ask a question but what i'm trying to do is retreive all the information from the shared calander in Outlook. E.g. Ger - Meeting i need to get this information in a database Does anyone have any ideas???? Please? X|

    You are you and I am I. So who is that?

    Visual Basic question csharp database sysadmin

  • Letter pack [modified]
    P PixelPixie

    Hiya I'm trying to create a letter pack process. In other words, I need to create a process where a user has a setup screen and a tree view (or something smilar) which points to a specific location and can only see crystal report files (8.5). The user can then click on a "create pack" button, and has the options of adding as many reports as they want. The user can then click on a print button and a screen will come up with instead of "Create Pack" it says print, and they can select the pack and print it Thanks Pixie :laugh: -- modified at 10:22 Wednesday 26th July, 2006

    Visual Basic data-structures workspace

  • Password Generator
    P PixelPixie

    Thanks for that. I'll try it tonight after work. I know what you mean about formatting it a bit :~ Anyway. Can you try this for me, If you have time, Public Function GeneratePassword(ByVal passwordLength As Integer) As String Dim Vowels() As Char = New Char() {"a", "e", "i", "o", "u"} Dim Consonants() As Char = New Char() {"b", "c", "d", "f", "g", "h", "j", "k", "l", "m", "n", "p", "r", "s", "t", "v"} Dim DoubleConsonants() As Char = New Char() {"c", "d", "f", "g", "l", "m", "n", "p", "r", "s", "t"} Dim wroteConsonant As Boolean 'boolean Dim counter As Integer Dim rnd As New Random Dim passwordBuffer As New StringBuilder wroteConsonant = False For counter = 0 To passwordLength If passwordBuffer.Length > 0 And (wroteConsonant = False) And (rnd.Next(100) < 10) Then passwordBuffer.Append(DoubleConsonants(rnd.Next(Do ubleConsonants.Length)), 2) counter += 1 wroteConsonant = True Else If (wroteConsonant = False) And (rnd.Next(100) < 90) Then passwordBuffer.Append(Consonants(rnd.Next(Consonan ts.Length))) wroteConsonant = True Else passwordBuffer.Append(Vowels(rnd.Next(Vowels.Lengt h))) wroteConsonant = False End If End If Next 'size the buffer passwordBuffer.Length = passwordLength Return passwordBuffer.ToString End Function Found it on the internet. Iv'e only just started programming, but I assumed that because it was a function. to get it to display, all I would need to do is text_change event textbox1.text = GeneratePassword But VB.net says tjhat it's not a string???? :wtf: Any ideas? P.s. I think I might go with your's. i'm just trying to understand how to display this. Thanks ---------------------------------------------- You are you and I am I. So who is that?

    Visual Basic css tutorial question

  • Password Generator
    P PixelPixie

    Thanks for the info. What i'm thinking of doing is have the password automatically generate a new password everyday for the system. I know it has to be done using the date, but I don't know how You are you and I am I. So who is that?

    Visual Basic css tutorial question

  • Password Generator
    P PixelPixie

    Does anyone have any idea how to create a password gnerator that changes everyday. what i'm trying to do is have an admistrator password that changes everyday, Less likely that someone will use it without a persons consent.:wtf: Any Ideas on how this could be created?:^) Thanks:laugh: You are you and I am I. So who is that?

    Visual Basic css tutorial question

  • New to programming need help for stupid query.
    P PixelPixie

    This is going to sound stupid to you, but iv'e only just started programming :wtf:(a few hours ago, just playing around, no books) anyway, I'm trying to change the enabled property of a textbox when there is input, I'm using the following, and the enabled property of the button is set to false at design time. Private Sub btnlogin_EnabledChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnlogin.EnabledChanged If txtpassword.Text = "" Then btnlogin.Enabled = False Else btnlogin.Enabled = True End If Please help me Thanks:sigh:

    Visual Basic database design help
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups