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 bkrike 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: *

  • Users: phbrady
  • Content: Threads
  • Order by date
  1. phbrady

    VS 2008 missing selection for x86 on 64-bit machine

    I'm trying to change my VS 2008 project's Platform Target from "Any CPU" to x86. However, on the Build screen under the project's options, the Platform Target dropdown ONLY contains "Any CPU". I'm developing an app targeting a mobile device and using SQL CE 3.5 and as far as I can tell it...
  2. phbrady

    how to automate using a File Transfer list?

    I am trying to automate the process of downloading a large list of files. I have manually created the file transfer list (.eil file) in Extra. I can choose the list manually in a 3270 session, but is it possible to write a macro that will use the list instead of having to use the ReceiveFile()...
  3. phbrady

    How to close session without messagebox??

    I am opening a session and downloading files, and I simply want to close the session and the instance of Extra without anyone having to click "Yes" on a messagebox. The only way I could find to close the session is as follows: --------------- QuitAllSessions.ebm --------------- Sub Main...
  4. phbrady

    Automating Excel Data Import

    Hi, I have a .net app which exports data from a database to text files. I could modify the app to write the data out directly to Excel but the first column is a 16-character string which ends in a number and for some reason excel has always changed the last digit to a zero. If I import the...
  5. phbrady

    ASP.Net Compact Framework install troubles

    Hi all, I have installed the .Net Compact Framework 2.0 on my Windows 2000 Terminal Server. It shows up in the list of installed applications but my application returns the following error: ---------------------------- Runtime Error Description: An application error occurred on the server...
  6. phbrady

    Service Account getting locked out

    I have a vb.net app that runs as a service. It picks up files from other PCs on the network and moves them to the server on which the service resides. Each day, after the service has been running with no errors for approx. 24 hours, the account which we just created exclusively for that...
  7. phbrady

    determining windows server app path

    I am writing a windows service and I can't find the equivalent of Application.ExecutablePath. How do I determine the path? Also, I'm trying to pass an argument using the following code: Protected Overrides Sub OnStart(ByVal args() As String) dim myArg as string myArg = args(0) When I...
  8. phbrady

    SelectedValue property of DropDownList in DataGrid

    I have a dropdownlist which I have added to a datagrid. I can populate the list no problem, but how do I set the SelectedValue? The only property I see available in the HTML view is SelectedIndex, which doesn't really help if I'm trying to select the item in the list based on the value from...
  9. phbrady

    Connection pooling (?) troubles

    I have an app that I'm developing on my PC and testing on a server. I can run the app in the Visual Studio IDE all day long on my PC and have no trouble with the SQL connection. When I installed the app on a server, the connections don't get dropped, so when I run the app I get the following...
  10. phbrady

    Trigger based on data change - how?

    Maybe a trigger isn't best for this. I have a field called Status in my Projects table. I want to update the StatusChanged date/time field only when the Status of the Project has been changed. Either way, if I were to use a trigger, how would I check to see what the value of the Status field...
  11. phbrady

    datagrid databinding issue

    Hi, Simple error, can't find any other posts on it. I have a class which grabs data from a table using a stored proc, then populates a simple class and I'm using the class as the datasource for a datagrid in my user control. I've done the same thing with other classes with no trouble and I...
  12. phbrady

    How to search for files by date programatically??

    Hi, From the O/S (windows 2000) I can right-click a folder and click search, then filter my file search by date. I've tried to find a way to do this programatically in VB using Dir or the FileSystemObject but I see no way to do it. Am I missing something? If not, is there a third-party...
  13. phbrady

    Using an Input Parameter as a Table name

    I am trying to use an input parameter as a table name in a stored proc. I am getting an error saying that the variable @dateid has not been declared. Is there any way to use a table name that is dynamically created in the calling script and passed on to the sp as an input variable ? CREATE...
  14. phbrady

    why is .Net IDE changing my "Inherits" field??

    OK, I have a solution named "Quiz", residing in a folder called "Quiz". In my aspx pages, the Inherits directive reads "Inherits=Quiz", and my codebehind page contains the "Quiz" class. When I make changes to the codebehind page, the IDE changes the...
  15. phbrady

    Simple ASP.Net Server issue

    OK, I have installed the .Net 1.1 framework on the server. I have stopped and restarted IIS. I have started the ASP.Net State Service. This is all I remember doing the last time I set up .Net on a server, but the server is still not processing any of the scripting, just the basic HTML on my...
  16. phbrady

    Viewstate - is it what I need?

    I am trying to pass values between pages. I have a large table I am building dynamically to display my data. The table contains and ItemNumber Textbox and an ItemID textbox with visible set to false. Problem #1 is, I want to populate the ItemID Textbox from a popup window where the user...
  17. phbrady

    Help with textbox/postback

    Hi, I have an issue that would appear to be a bug in .Net, but maybe it's something I'm doing. In Page_Load, I am creating a textbox dynamically, and then setting its "Text" property to a particular value. After a postback, the textbox does not contain the value I have assigned to...
  18. phbrady

    ADSI user creation error

    I'm using ASP to create a user in Active Directory and I'm getting the following error: Active Directory error '80070005' General access denied error The error occurs on the "SetInfo" method call. I have full rights to the Active Directory database and can manually set up a user...
  19. phbrady

    default domain name

    I have a client who is using NT security to secure folders in their ASP-based web site. My problem is this: When the user browses to a secure folder, they are challenged with a dialog asking for user, password and DOMAIN. My client is concerned that their users will not know the domain and...
  20. phbrady

    Parsing troubles

    When running the query "SELECT formulaid FROM tblFormula" I get the results: AB333 AB333CX1 CA333 CA333CX3 I need to simply parse the last 3 char's off the end of the fields containing "CX" and leave the rest as they are. I know I can use the CHARINDEX function to do this...

Part and Inventory Search

Back
Top