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: flybravo
  • Content: Threads
  • Order by date
  1. flybravo

    Creating a seteup exe file to write to the registry

    So far I can add a user interface to the installation file and add the files. I can not seem to figure out how to have a user enter a value on one of the textboxes and have the data be inserted in a registry string value. Any suggestions will he help full. Thanks
  2. flybravo

    View users description

    Is there a way to run a query to view a users description? The user will not have any priveleges for the mySQL databases. I am looking for a way when a user logs into mySQL from the web, to be able to view there description.
  3. flybravo

    Dataset/DataAdapter needs to be available throughout page

    <code> Global Dim JerrysTruckingDB As String = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=xx" Dim connection As New OleDbConnection(JerrysTruckingDB) Dim daJT As OleDbDataAdapter Dim dsJT As New DataSet </code> The asp.net page loads with a customer code in a textbox. I can get the page to...
  4. flybravo

    Report not printing all records

    I have a single table named tblUser. I created a report named rptUser. I want the report to print a single page for each user. I have added the UserID to the Page Header and the information on the detail section. When I preview the report I only see 10 of the 30 pages. I have the record...
  5. flybravo

    reply too email address needs to be changed

    In the office, we have 3 users who receive emails correctly from email@companyX.com. When users send out emails, there email address is the reply to on the receivers end. Is there a way to configure these email accounts to have email@companyX.com be the reply to. I know this can be done with...
  6. flybravo

    Memory problem when clsoing a child form

    Every time I close the form, the program does not release the memory. If I open the form a few times, the program starts to eat away at the memory. Here is my code. What is missing. Thanks *****Parent Form****** public Sub OpenChildForm() dim OrderForm as new frmOrders OrderForm.mdiParent =...
  7. flybravo

    Outlook 2003 Public folders

    Is there a way to have the public folders automatically expanded when outlook opens. Everytim outlook open, the users muts manually expand the public folder then expand a sub folder too.
  8. flybravo

    Terminal Services Set up for TSWEB

    I am looking into installing terminal services to allow administrators to access the servers remotely using the TSWEB feature in IIS. My question is, is it reliable? Dose the TS require any license to use this fetaure, if so Cost? putting the software on a Exchange 2003 box cause problems? I...
  9. flybravo

    Resetting license logging

    I need to reset the information listed in the licesne program. I looked online for some help, and found a microsoft kb article. I follow the steps to delete the *.lls file and cpl.cfg in systemroot/system32. I stoped the service, deleted the file and restarted the service. I know get an...
  10. flybravo

    On views, how to link a field to another view

    I have 4 views created. 1 view is the main view which has the customers names and I have 1 other view for their products ordered. I need the main view to link to the other view and on the main view be able to have how much producst were orderd
  11. flybravo

    loop through certain label boxes

    I have baout 25 label boxes on this form. I need to be able to only loop through 10 label boxes and edit the text value. Each of the 10 boxes have the first part of the name same. This is what i have tried for i = 1 to 10 me.controls(&quot;lblPropertValue&quot; & i).text = 5 Next
  12. flybravo

    Looping through sub folders

    Does anyone know how to write a procedure that will loop throught all folders and files, if a user enters a parent folder location This is what I have so far, I can only loop through the top folders. Each parent folders will have a different structure. <CODE> Dim currDir as New...
  13. flybravo

    Write to a specific line in a textfile

    Does any one know how to write a line of text to a specific line. I need to be able to update any line at any giving time.
  14. flybravo

    Counting records on a report

    Firs off, I hope this is the right forum to be posting this question. I have a report that has four other subreports in the report. I need to be able to count the number of records based on an inspectorsID at the top of the page, for each sections and show the number at the bottom of the main...
  15. flybravo

    display the record count for a query on asp page

    When I load up the webpage, the value I get is an -1, there should be at leats 4 records <CODE> 'create an ADO connection object<BR> Set objConn = CreateObject(&quot;ADODB.Connection&quot;) '// Use this for SQL Server objConn.Open &quot;Driver={SQL Server};Server=name;&quot; & _...
  16. flybravo

    Using command prompt to run a script

    I'm trying to execute this script from command prompt using WScriptThis is what I do to run the script. C:\>WScript /&quot;Test&quot; the message box will load but the there is no text. What i'm I doing wrong <CODE> Call Message(st) Public Function Message(name) WScript.Echo name End Function...
  17. flybravo

    Checking to see if mutiple files exits, using a textfile values

    This is what I have done so far. I need to be able to check to see if all of the files exists. The file names will come from a list in a text file. Currently I get a mismatch error when the code executes at the IF/THEN statements CODE Const ForReading = 1 Set objFSO =...
  18. flybravo

    Load values from a text file into a Array

    Here is my script so far. When I try to reyurn the values in the array, I only get the last row in the textfile This is what the file looks like; AIX36009 AIX36009P01 AIX36009D01 I need array(0) to equal AIX36009 so on. Some text files might have more lines then some other ones Set...
  19. flybravo

    Finding first integer

    I'm trying to create a script the will take a file name given, find the first instance of any integer. Ex. I need to be able to take a file name and find the customer ID which is either the first 3 - 5 letters. AOO1993 BBBA374
  20. flybravo

    Error logging

    I need to be able to set up error loogging. Every time an error occures, tell the script to resume and log the errors either into a Database of Microsoft NT Event viewer log. Thanks

Part and Inventory Search

Back
Top