Search results for query: *

  1. rgouette

    Generic rights question

    both on Outlook 2010 both on WinPro 7x64 w/same SP Both same admin levels on W/S & Domain I'm wrapped a few Try Catch blocks around object creation pieces, but nothing fired back at me... hmmm
  2. 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...
  3. rgouette

    Question VB/SQL Select Query syntax issue!

    I did have the database specified. Tried removing the name, to use this: Dim str As String = "Server=SQL1;Trusted_Connection=True;" I removed "master.." references, and get syntax errors so not sure if I'm going to make it work with my feeble skills.. I tried using explicit references to table...
  4. 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" & _...
  5. rgouette

    INSERT into two tables?

    hmm, I'm guessing I'm screwing up this thing: Cannot insert the value NULL into column 'userID', table 'moderntraining.dbo.certStatus'; column does not allow nulls. INSERT fails. Here's what I tried: cmd.CommandText = "INSERT INTO TABLE#2(userID,fullName) VALUES((SELECT userID =...
  6. rgouette

    INSERT into two tables?

    ok, lemme give that a whirl, thanks much Rich
  7. rgouette

    INSERT into two tables?

    ok, actually I now have two INSERT statements , and I am getting a new row in each table: however the primary key column values are not matching up Which is not of course, good. I assume that in the primary table, the ID column will grab the next int(identity=Yes) but how do I have the INSERT...
  8. 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...
  9. 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...
  10. 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...
  11. rgouette

    End of File & block of text parsing

    thx practices?! hah, thanks I'll chew on it & see what I can do! Rich
  12. 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...
  13. 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...
  14. rgouette

    Process 'watcher?'

    excellent, thanks much. I've whipped up a Winbatch solution, for now, but will persue .NET for sure.. Rich
  15. rgouette

    Process 'watcher?'

    Thanks for the reply. Rich
  16. 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