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 SkipVought 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: AA2K5
  • Order by date
  1. AA2K5

    Doc Library Customized List

    Just to clarify, I'm using Microsoft Office SharePoint Server 2007.
  2. AA2K5

    Doc Library Customized List

    Hi, I'm very much a newbie when it comes to Sharepoint and Sharepoint Designer, so I'd appreciate any tips/advice on the following issue. I have set up a document library containing several folders each of which contain one or more documents. Currently I'm using a ListView webpart within a...
  3. AA2K5

    Excel Reference To Addin

    I've tried cleaning up object references but unfortunately this hasn't solved the problem. I've cleaned up any local object declarations i.e. range, worksheet, addin objects etc. I'm not using any objects from my addin but I am using user-defined types i.e Public Type NewType ... I don't how...
  4. AA2K5

    Excel Reference To Addin

    I am making references to user defined types that I've declared in the addin and I don't think I'm cleaning up properly so I'll give that a try when I get the chance. I'm fairly new when it comes to using objects in VBA so it's probably bad programming on my part. I just thought it was weird...
  5. AA2K5

    Excel Reference To Addin

    I've got a really bizzare problem when adding a reference to an Excel addin. I've got an Excel workbook just over 1MB in size. It contains images, graphs and several VBA code modules. This workbook has a reference set to an Excel Addin which is about 2MB in size and contains common code used...
  6. AA2K5

    Identify text in quotes

    Hi, I just want to thank PHV for all the help with my last couple of AWK questions (especially the quick and accurate code snippets). I've got another question about pattern matching. I'm trying to identify text within single quotes so I can ignore it when I'm looking for a keyword. For...
  7. AA2K5

    Repetitive pattern with different keyword

    Yep, thanks for that, it works. Unfortunately without the <>, it is only a partial match on the keyword so "keywords" or "keyword1" or "keyword100" would all match. But I need an exact match on the keyword so I need to look for a way round it. (assuming there is a way round it)
  8. AA2K5

    Repetitive pattern with different keyword

    I tried the code in the previous post but unfortunately it did not match the keywords in the array. I had a line like this: - Some text and here is the keyword. Some more text I expected this to come out like this when "keyword" was in the array: - Some text and here is the keyword. Some...
  9. AA2K5

    Repetitive pattern with different keyword

    Just another quick question. If I'm in a for loop traversing all the elements of an array, how can I reference an array element in a regular expression? For example I've tried the following code but I'm pretty sure its wrong because I don't think I'm referencing the array properly in the...
  10. AA2K5

    Repetitive pattern with different keyword

    I thought this would be the logical approach but I just wasn't sure whether awk allowed all the match, gsub etc. functions when using array elements. Thanks for your help.
  11. AA2K5

    Repetitive pattern with different keyword

    Hi, I have a repetitive regular expression that I am matching and I am performing the same action over and over. I don't really want to write out the code every time for each word I want to match. I was wondering if anyone had a tip to reduce code duplication. Here's a sample of the awk code...
  12. AA2K5

    Ignoring part of text when matching

    Thanks for that. It looks good. I'll give it a try when I get a chance. Thanks a lot for your help
  13. AA2K5

    Ignoring part of text when matching

    Is the code above correct or did you mean: - x=$0;gsub(/\([^\)]*\)/,"",x) if(x~/WORD/) ... Also if I understand the above correctly you are stripping out anything containing brackets and storing it into x. So then any further processing is done on x not on $0. But if I still want to...
  14. AA2K5

    Ignoring part of text when matching

    Hi, I have a problem when doing some pattern matching. Basically I'm trying to insert a new line whenever I come across a certain word i.e. WORD. But if the text is enclosed in some brackets for example, then I want to leave it as it is. At the moment I am applying the pattern to WORD when...
  15. AA2K5

    Multiple ActiveX Viewers on Single HTML page

    Hi, I'm trying to use the ActiveX viewer for Crystal Reports 11 through classic ASP pages. I can use the viewer for a single report without any problems. However what I want to do is have two ActiveX report viewers on a single page and split the page using frames. I'm using the ASP sample...
  16. AA2K5

    Non Database Data Source

    Thanks for your help. I'll try using RDC and CDO to create a report. I can then look forward to investigating the licensing issues of using an RDC generated report on multiple clients!!! Thanks again for your quick and accurate help.
  17. AA2K5

    Non Database Data Source

    Thanks for the reply. I'll have a look at RDC components in a little more depth. When you say "use the recordset", are we still talking CDO recordsets or are you referring to some other type of recordset? I'm just trying to clarify that using CDO recordsets is the best way to achieve what I'm...
  18. AA2K5

    Non Database Data Source

    I'm not entirely sure I'm answering your question but here goes ......... Basically, the data in the database is not relational. There is a large chunk of logic which interprets the data held across several database tables to make it understandable. All this logic is held in API calls...
  19. AA2K5

    Non Database Data Source

    I'm using Crystal Reports Developer 11 and I was wondering whether it is possible to use data that is not stored in a database to create a crystal report. For example, say I am using ASP to communicate with an API using COM. The API accesses a database and retrieves data. This data is then...
  20. AA2K5

    Struts/ActionForm Errors

    Hi, I've recently started using Struts and JSP and I'm having a problem. In my JSP page I get the following error: 'Cannot compile against source model DetailForm issued from DetailForm.java' I'm using Eclipse 3.0 and Lomboz for development. With Struts 1.1. DetailForm.java is an...

Part and Inventory Search

Back
Top