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

  1. hmstoo44dd

    Help pulling data from web service into SQL Server database

    I'm a newbie to web services. Can anyone point me in the right direction to use SSIS with the following web service? http://128.177.43.69:9763/services/TemsApiService?wsdl2
  2. hmstoo44dd

    How to disable Office Button - 2007

    You can't disable the Office Button. You need to disable the buttons. <customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui"> <commands> <command idMso="Help" enabled="false"/> </commands> <ribbon startFromScratch="false"> <officeMenu> <button...
  3. hmstoo44dd

    Hiding the Developer extension in the Office button

    Hope this helps. <customUI xmlns="http://schemas.microsoft.com/office/2006/01/customui"> <commands> <command idMso="Help" enabled="false"/> </commands> <ribbon startFromScratch="false"> <officeMenu> <button idMso="FileOpenDatabase" visible="false" /> <button...
  4. hmstoo44dd

    Denial of Service

    There are multiple instances of find.exe followed by ftp.exe running on exchange 2003 server. Does anyone know if this is an intrusion or necessary processes?
  5. hmstoo44dd

    Mass update of queries

    Thanks pwise. I found an easy way to update without code. I made a copy of the database, deleted the old table, linked to the new SQL Server table, created a query and aliased the column names, then named the query the name of the old table. Works great.
  6. hmstoo44dd

    Mass update of queries

    Is there a way to loop through all of my queries and if they use a specific table, change them to point to a different table or query? I'm trying to integrate my access database with a table in SQL Server that contains same data with different column names.
  7. hmstoo44dd

    Add timestamp to table

    In order to update tables with bit fields with MS Access you need to add a timestamp. This is a technote from microsoft.
  8. hmstoo44dd

    Add timestamp to table

    I need to add a timestamp to our customers table so we can update data with MS Access. Can anyone point me in the right direction? Is there a thread here that will help? Thanks
  9. hmstoo44dd

    javascript newbie - question

    The only thing we can find by googling is to try replacing the submit with XMLHTTPRequest/XMLHTTPResponse. So, we were going to try that this morning.
  10. hmstoo44dd

    javascript newbie - question

    How do I capture the response so I can either wrap the XML in HTML or redirect it? Currently the response displays in a new tab as XML. <event activity="click"> <submit format="xml" target="https://www.chaseloyalty.com/xcff/XmlApi" textEncoding="UTF-8"/>...
  11. hmstoo44dd

    ASPX newbie

    Thanks kristof.
  12. hmstoo44dd

    ASPX newbie

    Thanks jbenson001. This is an application we purchased so the code must be removed. I guess I need to study asp.net so I can build another form from scratch. I want to add another column to the datagrid that will give me the city where the customer lives. No problem there, but the data doesn't...
  13. hmstoo44dd

    ASPX newbie

    I should explain that I'm looking at the html in the .aspx file. Where is the .net code stored?
  14. hmstoo44dd

    ASPX newbie

    How can you tell from aspx code what database/table/view/stored procedure, data is from? I see this tag: <asp:datagrid id="dgNames" OnItemCommand="CustID_Click"> Is "dgNames" the name of the datagrid or does it refer to the data source?
  15. hmstoo44dd

    Batch file from previous employee. What???????

    Can anyone interpret this script for me, and maybe give me a resource so I can study this stuff? This is a batch file that runs before calling several vb6 .exe's. :MAKE1 VB6 /MAKE /OUT C:\project\progress.log "C:\Documents and Settings\mystuff\desktop\myDirectory\myfolder\job.vbp" IF NOT...
  16. hmstoo44dd

    Two pieces of almost identical code, one works, one does not,

    I found the answer. In the first piece of code the form is opened from another form that is dirty. All I needed to do was add 'DoCmd.RunCommand acCmdSaveRecord'.
  17. hmstoo44dd

    Import Address book from Lotus Notes into Access table

    acheo, Try this site for help with notes/domino. I found code to export / import between Notes and Access. http://www.martinscott.com/dominosupersearch2.nsf/Search?OpenForm
  18. hmstoo44dd

    Two pieces of almost identical code, one works, one does not,

    I have a form with a continuous subform. When I open the form with the first code example the subform gets the error, 'you can't assign a value to this object' when trying to edit a field. The other code example works fine. Both open the form to the correct records. The openform event =...
  19. hmstoo44dd

    Save rownumber of continuous subform?

    I'm using the 'absolute position' to number the records in a continuous subform but, can't figure out how to save the number as part of the record. The onCurrent event only captures the first record in the subform. Anyone have a solution?
  20. hmstoo44dd

    How to treat a multi value delimited field as different record?

    I have a memo field in a table that holds multiple customer numbers delimited by a semicolon. When the form is saved it concatenates, delimits, and copies all values selected from a list box. I need to be able to create a report that shows each customer as a different record. I have used the...

Part and Inventory Search

Back
Top