Search results for query: *

  • Users: juggernot
  • Content: Threads
  • Order by date
  1. juggernot

    Email program

    I'm having trouble sending attachments with my emails in my newest program. I believe it is because I am trying to access my mailmessage in a different sub, and it isn't working. Making my mailmessage form level doesn't seem to work either. I have one button to load an attachment, and one button...
  2. juggernot

    calculator program

    I am making a calculator program. Most of the buttons simply add a character to a textbox at the top of the screen. When the equals button is pressed i need to take that string and make it a number. The string could be something like : "134/(5)^2". Is there an easy way to do this? Or do I have...
  3. juggernot

    advanced tutorials?

    Does anyone know a good resource for someone who wants to learn the more advanced things in vb.net? I would say I have covered all the basics, and I am not being taught anything new in school. For instance, I still haven't been taught how to create a web application, or even a program which can...
  4. juggernot

    web browsing questions

    I would like to create a program that has three different options. A) Records websites visited (observing mode) B) Allow only permitted websites(Restrictive mode) C) Lock web browsing unless password is provided (Lockdown Mode) I do not know where to begin. How does one monitor which websites...
  5. juggernot

    Create an array which contains all characters

    ..."M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z","`","1","2","3","4","5","6","7","8","9","0","~","!","@","#","$","%","^","&","*","(",")","_","+","[","]","\","{","}","|",";","'",":","""} My error says that vb.net is expecting a bracket or a brace, It's difficult for me to...
  6. juggernot

    Clickevent for an array of pictureboxes

    I have added pictureboxes to a form through an array. Now I want to detect when the user clicks on one of these pictureboxes. How would I do this?
  7. juggernot

    I've been outsmarted by a circle!

    I seem to always have problems when it comes to graphics. I'm trying to draw a circle in form load. I've finally gotten to the point where I don't get an error, but the circle still doesn't show up. Could someone give me the code to create a circle? Mine is something like this... dim...
  8. juggernot

    adding controls(Chess board)

    ...If intcounter Mod 2 = 0 Then picbox.BackColor = Color.Black picbox.Location = New System.Drawing.Point(rownumber * 50, coloumnnumber * 50) picarray(intcounter) = picbox Else picbox.BackColor = Color.White...
  9. juggernot

    manually sort array

    I was wondering if someone could show me how to do this. I attempted to do it already, but couldn't quite wrap my head around it If I had an array of random integers, lets say 100 integers, how would I sort them so that myarray(0) is the lowest, and the integers go in numerical order from...
  10. juggernot

    email program

    Accessing Address book I already know how to send email. I'm trying to make an email program that automatically imports Outlook contacts. Can this be done simply? Is it legal?
  11. juggernot

    Form closing unexpectedly

    I've attached the solution in which I'm getting the error. The first form is where the user inputs all the information needed to display a graph. The second is where the graph is created. I'm not nearly completed yet, I'm just focusing on setting up a grid according to user input. To keep the...
  12. juggernot

    Help with drawing lines

    ...graphic1 = Me.CreateGraphics For intcounter = 0 To Ynumlines Step 1 point1.X = 0 point1.Y = intcounter * pixelsY point2.X = 1000 point2.Y = intcounter * pixelsY graphic1.DrawLine(mypen, point1, point2) intcounter...
  13. juggernot

    Datagrids...help read textfile?

    I need to write a program that can read a textfile, and sort the information in the text into a datagrid. I'm fine with the reading and sorting of the text, but I'm having trouble with the datagrid. I've never used a datagrid before and do not know where to begin. I can't even seem to find a way...
  14. juggernot

    Help with program idea

    ...trouble is the beggining of my program: Bringing up a list of all ports. This is part one of my program. If anyone could help me make sense of this, I would be very grateful. *Also, if anyone can give an example of sending and recieving information using tcp within vb.net, that would be a bonus.
  15. juggernot

    runas other user

    I've created an amateur installer for one of my programs, which places my .exe in start-up. This works fine for users that have administrative privliges, but those who don't get an error. I know how to find out the current username, but I can't seem to find out their rights,(limited...
  16. juggernot

    Simple Firewall?

    I was wondering if someone could point me in the right direction here, because I don't know where to start. I want to create a firewall program that can detect when a program wants internet access, and on what port. Then depending on user input allows or denys the internet access. I realize this...
  17. juggernot

    Trouble with icons

    I'd like to tell my program to look for an icon in an area where, currently, there is none. After the user installs the program, there will be one there, but before hand that file doesn't exist. All my attempts to set the icon manually (In the Code) has failed. I noticed that the following code...
  18. juggernot

    opening and closing forms

    Sorry, I know this is a Noob question, but I've never come across this before. I have a form that I want to show only once (the first time the program is run). It's kindof a setup form. Anyhow, from that form I want to open my mainform, while closing the setup form on buttonpress. Whenever I...
  19. juggernot

    adding checkeditems into an arraylist

    This is what I want my code to do : On Buttonclick For every item in a checkedlistbox, add the items text to an arraylist(as a string). I can already do it like this, though I do not know if this adds the items as strings: arraylist1.add(me.checkedlistbox1.items)...
  20. juggernot

    taskbar question

    I'd like to know how to display an icon in the notification area of the taskbar (the right hand side) while my program is running. I'd also like to know how to program what happens if you right or left click on the icon. Could someone please point me in the right direction?
Back
Top