Search results for query: *

  1. WellsCarrie

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

    This is the exact code I use to create my local users. I do not use my object to create the users since I could never get it to work. Private Function CreateLocalUser(ByVal userAcct As String, ByVal userName As String, _ ByVal password As String, ByVal...
  2. 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...
  3. 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...
  4. WellsCarrie

    Stack Overflow Error only when run via share

    FYI This problem was fixed. It had to do with permissions on the Share folder. I had permissions to read and write but not execute so when the data file was received process two failed on startup.
  5. 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...
  6. 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...
  7. WellsCarrie

    Custom styling gridview data.

    Bah! Stupid slashes. Well at least now I know I wasn't actualy doing it "wrong" :-) Thanks!!!
  8. WellsCarrie

    Custom styling gridview data.

    Hum... ok Quick Question... Standars of HTML calls for br tags to now be written as "< /br>" which is what I'm using. Your example only uses "<br>" is there something about the "/" that would mess up the e.row.Cells(0).text? Because this was my original code sb.append("<font color='red'>")...
  9. WellsCarrie

    Custom styling gridview data.

    Atually when I used e.row to format the display ignored it and still used the primary style for Gridviews from my style sheet. I'm certain I was doing it wrong, but in diffrence to time constraints I just plopped a "template" field into the grid so the <font> and <br> tags would work. I'm at...
  10. 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...
  11. WellsCarrie

    Text box as part of the header row...

    Problem solved!!! the code for my search button looks like this If e.CommandName = "SearchNames" Then Dim textbox1 As New System.Web.UI.WebControls.TextBox Dim cn As New SqlClient.SqlConnection Dim cmd As New SqlClient.SqlCommand...
  12. 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"...
  13. WellsCarrie

    MSDN2 crash???

    Thanks for the info. In my case I think it is just this PC I'm on. I had cause to go out to it last night at home and everything worked fine. I've dumped a lot of new software and 3rd party tools onto this workstation ove rhte last week no doubt it is something I've installed.
  14. 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:
  15. WellsCarrie

    Need help selecting only unique days from datetime

    Add this as the last line in your Query: ORDER BY CONVERT(char, dtMsgDate, 1) Optionaly you can end the line with "DESC" to put the most recent date at the top.
  16. 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...
  17. 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...
  18. WellsCarrie

    Can Threading Handle This??

    Thank you very MUCH!
  19. WellsCarrie

    Can Threading Handle This??

    Let me make sure I understand. My page tasks would have to do the following. 1) create an async worker process to run the data load(s) (IE: a new thread.) 2) create an UpdatePanel to allow partial page refresh (is this new to 2005?) 3) create a meta tag in the UpdatePanel to force the refresh?
Back
Top