Search results for query: *

  1. M

    Updating functionality, possible security issue?

    Also, I don't know if it helped, but I cut out every bit of security on my system, wiped out internet access from the machine so nothing goes bizurk... and turned off any type of application that would contradict with updates from one program to another... In the new installation of my OS, it's...
  2. M

    Updating functionality, possible security issue?

    Okay, I re-installed my OS a couple days ago and seems that I can at-least get a simple "DELETE FROM Customere WHERE CustomerID=1" SQL statement to work. I guess I have been going at this for so long my brain is starting to frikken pop. Thanks for the help, I'll see if I can go from...
  3. M

    Updating functionality, possible security issue?

    Well...Inherits system.Windows.Forms.Form Private Const MyConnString as String = "data source=.\SQLEXPRESS;integrated Security=SSPI;AttachDBFileName =c:\Documents and settings\Matthew Newman\My Documents\Visual Studio 2005\Projects\MyCompany.mdf;User Instance=True" Private sub...
  4. M

    update a database... step by step

    For a year now I have been having a problem not being able to update a database. Read, sure, but modify in any way, no. I am now learning about security permission on a computer but still do not know what the problem is. I have tried the step by step learning on one website, can anyone here...
  5. M

    Updating functionality, possible security issue?

    I have, for years, been trying to figure out ADO.Net. I have never not had a problem with data updating. I will try what I can to modify data, but I can only read it... even if I create a new sql database seconds before trying to access and modify it all in the IDE Studio. My current problems...
  6. M

    I need some HELP with For Loop

    You would also need something to declare a string for the mark, use a select case or if then... imports system class students public shared names(5) as string Public Shared grades(5) As String public shared sub main() Dim i As Integer Dim x As Integer Dim j As...
  7. M

    trouble with a nested loop to get different values

    I am trying to figure out how to programmatically do error catching.
  8. M

    trouble with a nested loop to get different values

    trying to get this, programmatically I am essentually trying to get this end result, only doing it programmatically to save file size... Public Shared Sub Define_Cards() Try '!!!! cards(0).randomNum = funcRandomNum() cards(0).randomSuit = FuncRandomSuit() cards(0).flip = cards(0).randomnum &...
  9. M

    trouble with a nested loop to get different values

    I am playing with a simple poker program "concept" to better understand vb.net and help on the path to my MCAD... I am having problems defining values to be different from one another. When the cards are created, they are created from a structure object, with a random string for the...
Back
Top