Search results for query: *

  1. WellsCarrie

    Question Set Password Never Expire Local Machine User (Not Active Directory User)

    I have a windows form where administrators will enter user information and when submitted will create a local machine user (not active directory). I can create the user, but have been unable to set the password to NEVER expire. this is a requirement for the server of our RF Guns; each user must...
  2. WellsCarrie

    Question run object.focus in a currently running process

    We have a third party window app used by our sorter in distribution. The users are to type an order Number in the primary text box and then push enter. The app will load and display a label document with order data and ask the user if they wish to print. Everything works great except that when...
  3. WellsCarrie

    Production Files...

    Ok, in the past I always used my Front Page Extensions to launch my compiled web applications to production. I liked it mainly because it had this easy to use interface that let me launch "only the Files necessary to run the site" and not everything in my development folder. I no longer have...
  4. WellsCarrie

    Setting specified user when executing a console app

    How does one go about setting the Account under which a console app runs and still allow any network account to start it? Is this even possible? I need to have my console app run as a specified user but the app will be started by a web service. The application automates the FTPing and...
  5. WellsCarrie

    Custom styling gridview data.

    Ok, I know how to style the whole gridview and I know how to style a single row in the grid view, however what I need to do is style one piece of data in one field of the grid view. For example I have a grid view that shows two sources for shipping address. source one: 300 Any Road, Any Town...
  6. WellsCarrie

    Text box as part of the header row...

    My requirements call for the user to beable to search the Name field on my grid view. The business owner wants the search box to be located in the Name column's header. <asp:TemplateField HeaderStyle-HorizontalAlign="Left" HeaderStyle-VerticalAlign="bottom" ItemStyle-Font-Size="10px"...
  7. WellsCarrie

    MSDN2 crash???

    Anyone else getting strange error messages when they vist the MSND sites? I have been told for hte last two days that my IE has encountered a problem and must close. It only does this on the MSDN sites. Am I the only one suffering?:confused:
  8. WellsCarrie

    executing a SSIS package

    I have an SSIS package the runs consitantly with a successful exit code, when run manually. However when I try to run the package from my VB.net applicaiton it returns "DTSExecResult.Failure". I get no errors in my package and no errors in Catch statement of my vb code. Can anyone tell me where...
  9. WellsCarrie

    get progress from webservice

    I have only ever done one web service before. all it did was acept a userID and return a comma seperated list of the Active Directory Groups it belong to. IE I sent a string and returned a string and I did it all in one function. Now however I want to do the following, 1) public function to...
  10. WellsCarrie

    Can Threading Handle This??

    Issue, I need to have a link on my web page that the user can click to kick off the chain of events to load the work database. The database will be loaded with data from 4 seperate sources and sometimes will contain hundreds of thousands of records. Is there a way to kick off the events and...
  11. WellsCarrie

    Stack Overflow Error only when run via share

    Senario, VB.Net 1.1 Console App reads an input file (xml, txt, csv) and sends the information to a web service for "central monitoring" of data file sends and recieves. So process one would run the console app when a data file is sent to process two and process two would run the console app when...
  12. WellsCarrie

    Process.Start Question

    I have the requirement to run a VBS process to FTP files from our AS400 system. The VBS was written for me and I am not allowed to use any other ftping system. (sys admin rules! :mad:). That being said I have been tasked with writing an application that will fetch the files, process the data in...
  13. WellsCarrie

    Creating a Portfolio

    I went on an interview a couple of weeks ago and was asked what my portfolio's web address is. I'm not new to web development but I was surprised. Especially when I considered the fact they had already been informed that all of my previous and current work is proprietary to the companies for...
  14. WellsCarrie

    Return Value from a Console Application

    I have a console application that seeks data from multiply sources, does some calculations and then loads a data table used by several web sites and reports. When it is run manually, the app works consistently with out unresolved errors. However, I need the operations team to run the...
  15. WellsCarrie

    setting visible row of datagrid.

    *answered* setting visible row of datagrid. John is a saivor! See his answer below. Ok just point me to the thread if this has been answered before. I couldn't find one. I have a web page with 3 panels. One with filtering items (ddls, radio buttons, Calendars, ect.) The second one holds...
  16. WellsCarrie

    Turn off Datagrid Add Row...

    I have an XML file that will hold the FTP settings for a program. The user is allowed to personalize the default settings. I want to just put a copy of the xml file out with the install and allow the user to update it via a special "setting" form inside the application. However I do not want to...
  17. WellsCarrie

    Retrieving Return Parameter

    Thank You for the help. jmcilhinney had my answer. I am running the following code: PrivateSub RunObsoluteProductBuild() Dim connOhio AsNew OracleClient.OracleConnection("Data Source=Ohio.world;User Id=***************;Password=*****************;") Dim cmdOhio AsNew...
  18. WellsCarrie

    data type conversion....

    FIXED!!!!! the problem was that the reader was executing the wrong sqlstring. :p Ok if this question has been answered somewhere just tell me. :mad: I have a SQL statement that returns a container number as a string when run in SQLPlus but when run through the OracleDataReader it comes out...
  19. WellsCarrie

    recreating a VB6 class in VB.net

    Ok I think the reason I can't find the naswer to this on the web is because I'm not asking google the right question. So I'm going to ask here and hopefully someone can tell me where the answer is. :-) My task is to upgrade a VB6 program to VB.net. Mainly because no one here knows what it is...
  20. WellsCarrie

    speeding up data access to an AS400 database...

    If this is not the right place to ask this please let me know.... I have 4 web applications whose primary datasource is located on an AS400 machine. In production I am using Provider=MSDASQL.1 to connect to the data and first load an ADODB record set that is then transfered to a .net...
Back
Top