User Profile

Collapse

Profile Sidebar

Collapse
wrangler2004
wrangler2004
Last Activity: May 4 '10, 06:08 PM
Joined: Apr 4 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Regarding my original question, does anyone know of a web-based application sharing program that would enable me to serve up regular gui-based apps through a web page so regular users can interact with the programs through a web browser instead of having to log on to the server? I know web-ex and services of that nature will do this, but I'm looking for freeware, open source code, or VB.net examples.
    See more | Go to post

    Leave a comment:


  • Multiple logons to Terminal services console session

    I have several servers that have gui-based applications (NOT running as a service) that must consistently run though out the day.

    Currently, we have several users that must interact with the application on a daily basis, so we provide a common user account on that server so the users can log on via terminal services console mode so they can interact with the applications to do their daily tasks.

    My question is: How...
    See more | Go to post

  • wrangler2004
    replied to Import specific colums
    in DB2
    OK, I figured it out.

    I guess I could have used DB2 merge, but I opted for the simpler approach with an update statement:

    DB2 UPDATE TARGETTABLE.OPE RATOR A SET WINDOWS_USERID=
    (SELECT EMP_ID FROM SOURCETABLE B WHERE A.OPERATOR_ID=B .ID)
    See more | Go to post

    Leave a comment:


  • wrangler2004
    replied to Import specific colums
    in DB2
    I'm sure I need to use an 'update' statement on the target table, but can't seem to figure out how.

    The following select statement does pull in the information i need...if I can only merge the data:

    SELECT TABLE1.OPERATOR _ID, TTABLE1.WINDOWS _USERID, USERLIST1.ID, USERLIST1.EMP_I D
    FROM MYSCHEMA.TABLE1 AS OPERATOR, MYSCHEMA.USERLI ST1 AS USERLIST1
    WHERE TABLE1.OPERATOR _ID = USERLIST1.ID...
    See more | Go to post

    Leave a comment:


  • wrangler2004
    started a topic Import specific colums
    in DB2

    Import specific colums

    Hi,

    I have a DB table called 'OPERATOR' that has several columns. Two of those columns are called OPERATOR_ID and WINDOWS_USERID.

    I am trying to take an external csv file that contains only these two fields and import them into the table setting the windows_userid in my table equal to the windows_userid in my csv.

    I've also created a temporary table with the csv data, which contains the two columns, but...
    See more | Go to post

  • wrangler2004
    replied to parsing a 2d character array
    in C
    well, maybe my approach isn't the best, but I appreciate the advice on tokens. I finally added the following lines inside my loop to pull the client type:

    //read client type into an arry
    tmp = strtok(NULL,":" );
    strcpy(client_t ype[i],tmp);
    cout <<client_type<< endl;

    Thanks for the help!
    See more | Go to post

    Leave a comment:


  • wrangler2004
    replied to parsing a 2d character array
    in C
    Right now, I've decided to read the file into a 2-D array, then make 2 copies of that array - one copy will contain the client name and the other will contain the client type.

    Using tokens, I can get the first part of each line (left of the colon), however I can't seem to figure out how to extract only the right side:

    //read data from file in a 2-d array
    for (i=0;i <NUM_ROWS;i++ )
    {
    infile.getl...
    See more | Go to post

    Leave a comment:


  • wrangler2004
    started a topic parsing a 2d character array
    in C

    parsing a 2d character array

    I have a project I'm working on to read a simple text file and sort it's contents based on the data.

    The data file is in the following format:

    Bob Smith: Accounting
    John Doe : IT
    Bill Morris:Maintena nce
    etc...

    My goal is to be able to sort each string by name OR by department.

    So far, I have been able to read the file and sort by name (since name is the first item on...
    See more | Go to post

  • Yep, the GUID was changing. VS recommended I change the Product id/GUID whenever I increased the version (from my setup project). When I changed the version and guiid, it did add another entry to the add/remove programs.

    I tried simply changing the assembly version on my exe, then rebuilding the setup package without modifying the version and guid within the setup project and when I went to do an install I got the "setup detected...
    See more | Go to post

    Leave a comment:


  • Thanks for the reply.
    It seems like the last time I increased the assembly version and did nothing else, my setup project allowed me to do another install without having to uninstall first, but the 'upgrade' never updated my executable. It also added a second version of my application to the add/remove programs.

    I'll change my assmbly version and re-compile, then repackage and see what happens again.
    See more | Go to post

    Leave a comment:


  • Upgrade application using Setup Deployment Project

    I have a simple vb.net application that I have created a setup project for.The application is a single exe and uses an app.config filem

    My question is, how do I go about upgrading the application whenever I make any updates to my code?

    Within the setup project, I see I can set the installer to automatically remove the old version, but I don't really want to do that since it may overlay my custom settings in my app.config....
    See more | Go to post

  • wrangler2004
    started a topic Subquery with DB2
    in DB2

    Subquery with DB2

    Hello all,

    I am supporting an application running on DB2 8.2 on a Windows 2003 Server. The DB contains 2 tables in which I need to do a subquery. Table 1 contains and autogenerated primary key. For each row inserted into table 2, a reference to the PK in table 1 gets inserted into the FK_TABLE1 column. This is all done internal to our application and is not using db2's built-in support for primary/foreign keys (doh!).

    ...
    See more | Go to post
No activity results to display
Show More
Working...