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...
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...
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.
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...
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...
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...
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...
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[] =...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.