Search results for query: *

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

    Generic rights question

    Problem: vb.net 2013 Forms app works fine on my machine(returns calendar appts), but fails for a user. Type of App: I'm gathering Outlook Calendar items & copying them to the clipboard. What it's doing: The program isn't returning any calendar items for the user. Any thoughts & ideas are very...
  2. rgouette

    Question VB/SQL Select Query syntax issue!

    I can get this to work fine in SSMS... in VB? not so much(VS2013) dim com as string = "select spid, substring(nt_username,1,30) nt_login," & _ "substring(loginame,1,30) db_login," & _ "substring(name,1,30) db," & _ "count(*) over() as total_users" & _...
  3. rgouette

    INSERT into two tables?

    Howdy! vb.net (forms) app using INSERT statement into table, tha contains an ID column that's an Identity column. I have another table related by said column(it's the foreign key, and NON Identity) In SSMS,, the relationship states that Delete & Update Rule(s) = Cascade When I run the INSERT...
  4. rgouette

    Question Why I only get a few users out of the Domain Uers list?

    Why I only get a few users out of the Domain Uers list? Goal: display all users of the "Domain Users" A/D group The following code generates only about 6 users(seemingly random domain users..) Dim grpSearcher As New DirectorySearcher grpSearcher.SearchRoot = New...
  5. rgouette

    combo isn't showing items bound from sql query

    Folks, I'm trying to: 1) drop a combo down, and base a SQL parameter on the selected value 2) do a SQL select,, and return a row of data to then... 3) bind that rows data to another combo in order to pick from the list of possible returns Currently, I get nothing returned, but I know the select...
  6. rgouette

    End of File & block of text parsing

    So, I'm looping a readline function against blocks of text, and wish to detect when I've reached the end of my file. A sample of two blocks of the text I'm parsing is below. I'm using VS 2003 DATE: TUE 11/15/2005 4:21:48 PM INITIALS: PRT CMTAG: BLADE1 DEPARTMENT: SCU CAMPUS: 22Maple...
  7. rgouette

    Empty Crystal Report...why?

    So, I pull up a vb.net / SQL crystal report on MY PC, & it looks great. I pull up report on another PC logged in as me, and there is no data in the report. The report does come up, but contains no data. thoughts? Connection string is: Dim myConnection As New SqlConnection("data...
  8. rgouette

    Process 'watcher?'

    Folks, I'm wanting some direction on where to begin doing the following: On Win32 workstations, I wish to watch for executable launches, and log thier associated application names. I.E. , a user launches Adobe Acrobat Reader, and that launch gets logged: either locally or to the network. I...
Back
Top