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

    data manipulation within an EditItemTemplate field on Autopostback

    I'm writing a small app to track the assets within our organization. When editing an existing record (in a detailsview form) I have three fields: Purch_Month, Purch_Year and Repl_Year. The first two (Purch x 2) are already populated when the record is created outside the app. When editing the...
  2. Dijital

    multiple DataKeyNames to pass selectedvalue from Grid -> Detailsview?

    I have been playing with this for a few hours now and I just cannot understand what I am doing wrong. I have a table of assets, tied to Users via fname, lname. ID - fname - lname - sn - type 1 - John - Smith - 1234 - laptop 2 - Jim - Mack - 9876 - laptop 3 - Jane - Does - 4567 - laptop 4 -...
  3. Dijital

    Pass Through Guest Access in BOXI

    Our enterprise jus moved from a CE9 to a BOXI setup. In CE9, accessing the Guest view of eportfolio was simple; a default link to eportfolio without logging in showed you all reports that were evailable to the general public. In XI, I'm told this is not possible. I dont have access to the...
  4. Dijital

    Report Fails in CE 9 with Unable to connect: incorrect log on paramete

    I have a report that uses two datasources: 1) an excel spreadsheet and 2) a Oracle 9 db. It has a liked subreport. The Subreport pulls against view A from Oracle, and the Main uses the Excel and view B from oracle. The excel spreadsheet is referenced via a fully qualified location...
  5. Dijital

    Cannot Ping Linux Mandrake 10 from other Win PC

    I guess it's not a big deal, but I currently cant ping my linux box from another system. I can ping the loopback, assigned IP, access the internet (obviously eh?), and I can ping other resources, but cannot ping the linux box. Dont think it's impacting me negatively currently, but just was...
  6. Dijital

    compute value of one field from two others on same form

    If I have the following code: (not exact, just a rough idea) <% sub update() Dim intstart, intend, intresult intstart= *FILL IN THE BLANKS* intend= *FILL IN THE BLANKS* intresult = datediff(&quot;n&quot;,intstart, intend) end sub %> <form name=&quot;summary&quot;> <input...
  7. Dijital

    State &gt; City &gt; location (3) listboxes cascading/updating

    I'm trying to figure out how to create three cascading listboxes that update one another. List box 1 = State (onchange, should update list box 2) list box 2 = City (onchange, should update list box 3) List box 3 = Location My company has retail locations (~11,000) around the US. The goal here...
  8. Dijital

    Forward recordset info into form on next page

    I have a temptable that is fed from a ticketing system. There are 5 fields. Currently, I have the users logging in, and selecting unprocessed tickets. When they select it, the recordset opens and displays the 5 fields on the page. I want to have a link for them to click, &quot;Process&quot...
  9. Dijital

    Settting up W2k DNS internal/external

    I am looking for some irection here; I'm in a little over my head at this point. I am setting up a small network of servers (old HP VL6's) all win2k advanced. I'm have a registered Domain, and want to set up my system for resolution from the internet for www.mydomain.com. Here's what I'm not...
  10. Dijital

    network vs. pcmcia init sequence

    I have installed rh9 on a Dell cpx p3 500 mhz with a pcmcia network card. Happily (:o) everything has installed well, and outside of some tweaking for performance, I am quite happy with the out of box performance. I am having a issue on boot. I've seen a number of posts about it all over, but...
  11. Dijital

    How to open a new XLS based on an XLT?

    I have a template called Test.XLT. I want to be able to open a new workbook using that template. Is there an easy way to do this?? -Jim Connors
  12. Dijital

    How to Initiate Run Dialog through link etc...

    I am not a programmer, I'm just a determined pup! I'm trying to figure out a way to bring up the Run... dialog from a shortcut. I can pull up the control panel and virtually eveything else. The shortcut would be running through a 3rd party app called ObjectDock, and gives me a field for the EXE...
  13. Dijital

    Newbie VBA quandry here... I cr

    Newbie VBA quandry here... I created an Access 2000 database linked to a SQL database for reporting purposes. I have a table with a &quot;Cartesian Product&quot; like so: computername, qnumber COMPUTER1, HOTFIX1 COMPUTER1, HOTFIX2 COMPUTER1, HOTFIX3 COMPUTER2, HOTFIX1 COMPUTER2, HOTFIX2...
  14. Dijital

    Adding a record in Access 2000 via ASP

    I have a simple ASP page for entering requisition information into an Access 2000 Database. I have never used permissions in Access before, so I'm kind of in the dark. Right now, when I try to add a record, I get permission denied. I can post the code if needs be. any help would be great. -Jim...
  15. Dijital

    Possible to create a word Doc from several XML's?

    I have a group of XML files, all the same structure. They are created from an ASP. I wanted to try to create a conglomerate of all the data from the XML into a word document. is this possible? -Jim Connors
  16. Dijital

    Show multiple attributes in For...Next from XML

    So far I have come up with the folling code: <script type=&quot;text/vbscript&quot;> set xmlDoc=CreateObject(&quot;Microsoft.XMLDOM&quot;) xmlDoc.async=&quot;false&quot; xmlDoc.load(&quot;mssecure.xml&quot;) path=&quot;/BulletinDatastore/Bulletins/Bulletin/@Title/text()&quot; set...
  17. Dijital

    Browsing for file name, need to be able to select multiple files

    I am currently using the following code: Private Sub CmdBrowse_Click() On Error GoTo Err_CmdBrowse_Click Dim strFile As String With Me.cdlgOpen .CancelError = True .Filter = &quot;All Files (*.*)|*.*|&quot; .ShowOpen strFile = .FileName MsgBox...
  18. Dijital

    Import CSV files as tables

    I am trying to automate the manual bill processing at our shop. We get the bills electronically, and I want to create a cmd button that will open a dialog to slect the files, and then import the files as tables in the database. The names of the ensuing tables will be a combination of parameters...
  19. Dijital

    SQL SA admin password

    Does anyone know the default sa password in SQL Srv. 2000?
  20. Dijital

    Help loading data into Array

    I have a database (access 2k) of filenames, version, and path, that I need to test for on each PC I support. so I loaded the SQL results into rsRequired. I then, using someones example put in the following sub: Sub GetRequired Dim lngCounter Dim rsRequired Dim cnMSOffice ' Create the...

Part and Inventory Search

Back
Top