Search results for query: *

  1. A

    first record is missing

    I am trying to import a csv file to a data table. The function works fine except the first record is missing. I am using a schema.ini file with the following: [UWCLoans.csv] Format = CSVDelimited Col1 = GUID text Col2 = LoanNumber text Any ideas would be greatly appreciated. Private Sub...
  2. A

    AES Encryption of a string

    Well, I was able to get it to compile but I have no idea if the returned value is correct. this is what I did: Public Function Encrypt(ByVal strValue As String) As String 'Create instance of a Rijndael Managed object Dim aes As New RijndaelManaged 'Set appropriate...
  3. A

    AES Encryption of a string

    greetings. I am trying to encrypt a string using the code below. The issue is I get this error and I have no clue (I'm just learning about encryption) what to do or even where to look. The SharedKey and the IV have been supplied as Hex values. The SharedKey is 64 bytes and the IV is 32 bytes...
  4. A

    Get XML attributes

    Good Day to all. I am having an interesting time parsing an XML file. Any help would be greatly appreciated. My biggest hurdle is getting node attributes. Here is what I have as an XML example: <?xml version="1.0" ?> <ILS_BULK_EXPORT> <Loan MISMOVersionIdentifier="2.6"...
  5. A

    multiple instances of forms, same record

    Very awesome! Thank you very much :)
  6. A

    multiple instances of forms, same record

    Good Day. Kinda banging my head against the wall on this one. I have a Mdi application with the start form(mdiparent) and form1(mdichild). On the start form, there is a textbox and a button. Heres how I want it to work: 1. value is entered into textbox and button is clicked 2. if form1 is open...
  7. A

    Loading a treeview with objects

    Gotcha, that makes sense. Would you happen to have any source code for doing so?
  8. A

    Loading a treeview with objects

    Is is possible to load objects into a treeview? I know it can be done with a combo box but I haven't been able to find any code snippets that show how to do this with a treeview. I am using Visual Studio 2005 Any help would be greatly appreciated
  9. A

    Convert from VBA to VB.net - AD user?

    I found the following code that is supposed to determine whether or not a user is a member of a particular Active Directory group but I am having trouble converting it to VB.net. I have added the Active DS Type Library to my project references. Function IsMember(ByVal strDomain As String...
  10. A

    How to determine if a user is in a particular AD group

    Good Day. How do I go about determining if a user is in a particular Active Directory group? I have never queried or even used Active Directory before so some code samples would be greatly appreciated. Thanks In Advance Ahbenshaut
  11. A

    Directory listing

    Good day! I am trying to create a website that will list the contents of a specific directory on our network but I am unsure where to start. I'd like to use a TreeView but Visual Studio 2003 does not have one. Any help will be greatly appreciated:confused:
  12. A

    Running Executables from IIS 6.0

    Good Day! How do I configure IIS 6.0 so I can run .exe's from a URL? Here's what I'm trying to do: 1. User has URL --> https://server.intserver.svrserver.com/MyExe/MyExe.exe 2. URL is clicked, the application is downloaded to the client PC, and executed. 3. When user is done with...
  13. A

    Randomize a string

    OK...I got it...I suppose I should learn how to cut and paste correctly :p Thanks again!
  14. A

    Randomize a string

    Excellent and I thank you for your help but it isn't totally random.:D I only had to click 4 times before I started to notice a pattern. Any other ideas?
  15. A

    Randomize a string

    Good Day! I am trying to create a very simple program but I'm kinda lost. I have a simple form with a textbox, a button and a label. What I would to do is randomize the string that is entered into the textbox and display it in the label. I have never used the randomizer before and I'm having...
  16. A

    1 class, 1 dataset and 2 forms, oh my!

    Actually, I think I solved this. Since, I have supervisors and administrators, I'm gonna have to refresh the dataset anyways, depending on who opened the app. Thanks for the help.. :)
  17. A

    1 class, 1 dataset and 2 forms, oh my!

    OK..i'm a wee bit confused. Yes, the Security is my own class. In the InitializeMe Sub, is that where the dataset would be filled? And where would I set something as Public? __|\__\O/___ <--shark attack :) sorry had to put that in
  18. A

    1 class, 1 dataset and 2 forms, oh my!

    Im unsure how to accomplish this so I am hoping that someone will offer up their expertise. So here goes.... On form1, dim clsSecurity as new Security A function is called in the Security class, that fills a dataset with all of the employee data. Using the dataset, a combobox is populated...
  19. A

    Searching through dataset

    Thank you, Thank you and THANK YOU! That did it..:)
  20. A

    Searching through dataset

    hmm..ok the line looks like so "NTLogin = bsmith" and I think its missing the single quotes around the bsmith but Im not sure how the syntax would be...
Back
Top