Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. robertkjr3d

    xp_cmdshell runs as administrator but not with access

    Let's start with the bottom line: I can login to the machine as Administrator... and the command line product works. When I run the same command line app from xp_cmdshell running as the same user 'administrator' it does not. Long Description: I have this software that I'm calling from...
  2. robertkjr3d

    Dynamic calling of members

    How do I programmatically call a member of an unknown type? I have form A... which opens up another form B. However Form A will be the parent of B. In fact I have this code: listing list1 = new listing(); list1.parent = this; list1.Show(); In list1 parent is an object. Because it could come...
  3. robertkjr3d

    Datagrid edit... but not add row

    I have a datagrid in a C# Win32 application in VS03. I do wish to be able to edit rows.. (or the one row). But I do not want to allow adding rows. How can I accomplish this? I know this is something simple, but my brain is not giving it to me.
  4. robertkjr3d

    Dynamic variable names

    Ok here is the simple version of what my problem is: declare @Field int declare @Field2 int declare @sql varchar(150) set @Field = 2 set @Field2 = 2000 set @sql = 'select @Field' + Convert(varchar, @Field) + ' [Value]' exec(@sql) I get the error must declare the variable @Field2 It doesn't...
  5. robertkjr3d

    Dynamic variable names

    Ok here is the simple version of what my problem is: declare @Field int declare @Field2 int declare @sql varchar(150) set @Field = 2 set @Field2 = 2000 set @sql = 'select @Field' + Convert(varchar, @Field) + ' [Value]' exec(@sql) I get the error must declare the variable @Field2 It doesn't...
  6. robertkjr3d

    Timezone DOB gathering.

    I'm writing a pocket app, and I'm sending to the Pocket PC an XML file, that is data dumped from a SQL Server. The problem is that SQL Server has no just Date field. It is a Date Time Field. So when the DBA puts dates into the server, she uses Enterprise manager or something, and enters in...
  7. robertkjr3d

    Stored Procedure help.... Loop with changing variables

    Below is my current 'Stored Procedure'. It works. However instead of 6 different inserts into reviewdata, how can I loop and compact this code? The changing items are Field#, and then the #. So there should be a way to do something like this INSERT INTO ReviewData ( ChaseID ,FieldID...
  8. robertkjr3d

    Ok I've tried so many things..and I

    Ok I've tried so many things..and I think the overall problem is that I'm just not as familiar with C code as I would like. I'm useing #include <semaphore.h> Ok I am declaring these sem_t *mysemp; int oflag = (O_CREAT | O_EXCL); mode_t mode = 0644; const char semname[] =...

Part and Inventory Search

Back
Top