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

  • Users: R3D3
  • Order by date
  1. R3D3

    Problem with German Characters

    I have nice piece of code that brings data into my Excel macro from a file (I think I got it from Tek Tips long ago.) ------------------------------------- hdle = 1 Open XML_FILE_NAME For Binary As #hdle Do Until EOF(hdle) Line Input #hdle, strLine XML = XML & strLine Loop Close #hdle...
  2. R3D3

    User-Defined Function with a twist

    Application.Caller.Row is what I was looking for. Works a treat. Your a star. FYI. Namedfield was one of a collection of Names.
  3. R3D3

    User-Defined Function with a twist

    Getting closer but what I want is the .Row of the cell that contains the function rather than that of the Namesfield supplied to the function. thanks
  4. R3D3

    User-Defined Function with a twist

    I want to write my own function which takes details from same rows but different columns on another sheet. I dont want to pass the Row in the function. Is there a way of identifying which row the function is recalculating. I thought it would be Activecell but of course this is the cell where the...
  5. R3D3

    Getting to the Project Notes via Excel VBA

    You are abolutely spot on. Thanks.
  6. R3D3

    Getting to the Project Notes via Excel VBA

    Hi PDQBach, One limit at a time:) If I understand correctly, I'm already doing this... tTNotes = projApp.ActiveProject.Tasks.Item(T).Notes xlApp.Cells(n, cTNotes).Value = tTNotes but even in tTNotes I only get the 253 chars. If I view the projApp.ActiveProject.Tasks.Item(T).Notes in the...
  7. R3D3

    Getting to the Project Notes via Excel VBA

    I understand that there are some limitations in MSProject regarding the Notes. ie you can only see the first so many characters unless you go onto the actual Dialogue box that maintains the text. It seems the same limitation is in VBA structure. eg projApp.ActiveProject.Tasks.Item(n).Notes is...
  8. R3D3

    OWA and Microsoft Outlook 2000

    I have all my contacts & emails currently in MSOutlook 2000 and I now have to use Outlook Web Access for next 3 months. There must be a way of synchronising the two. I dont have the POP3 or IMAP settings to link into OWA server and there are no import facilities in the OWA. I tried setting OWA...
  9. R3D3

    Hyperlink not working in Word nor Excel

    Solved. Some machines did not have latest Windows upgrades. Downloaded them and problem went away. So there was a fix amonst these.
  10. R3D3

    Hyperlink not working in Word nor Excel

    I'm absolutely stumpted by this problem which appears to be so simple. I have a number of machines that appear to be configured the same. Some work fine - others do not. The Problem: On some machines the following Hyperlink does not work from Word nor Excel...
  11. R3D3

    Excel Multiple Sheet Pivot

    I could be faced with the same solution if there is no way around it. Unfortunately my example was rather simplistic and each sheet is different with common column headings that would hopefully be matched for a consolidation pivot table. Still hopeful...
  12. R3D3

    Excel Multiple Sheet Pivot

    I've searched everywere & tried everything before posting this so it is obviously impossible... unless you can solve it of course! I can create Pivot tables without any problem. However when it comes to Multiple Consolidation Ranges to do exactly the same using data from 4 different worksheets...
  13. R3D3

    is the Server Name available to me?

    Within my DLL created via VB6 code I am connecting to an SQL Database and I use a connect string like this.... "userid=sa;password=xxx;data source=yyy; initial catalogue=zzz" where yyy=Name of SQL Server yyy=Name of database How can I access the name of the machine from VB so I dont have...
  14. R3D3

    How do I send my data from browser to Word Doc?

    Seems simple enough, all I want to do is use some of the data in the HTML screen within a template Word document. I can Link to Word Doc of course from the LAN that will contain the bulk of the document data. However I want to include the Name/Address that is appropriate from this screen. No...
  15. R3D3

    How do I release Blocked Ports

    There is no machine with this address on the LAN. I've heard that 6667 is more than likely an IRC trojan or a trojan using standard IRC ports to mimic an IRC server. Isn't there a way of the firewall stopping the tcp packet from reaching the port? Or opening it up again after it has been denied?
  16. R3D3

    How do I release Blocked Ports

    I have something in windows that I cannot get rid of. It started long ago when machine first setup and Virus Checker/Firewall not yet installed. Something is opening up ports and leaving them LISTENING. After 36 hours all 5000 ports are left listening and there are none free for my applications...
  17. R3D3

    Unable to download .exe files

    Any time I attempt to download any .EXE file from another server I get a screen response with a small icon in top left of screen, rather than the usual 'File Download' dialogue asking where to save it. I can get around it in most cases by right-clicking and saving it. However some downloads are...
  18. R3D3

    is XMLHTTP ok with special characters?

    Nobody any ideas? Je ne crois pas! The must be some Canadians who have experienced this problem
  19. R3D3

    Manipulating the Sequence of DIVs on page

    can anyone think of a way of manipulating the Sequence of DIVs on a page? I'm trying to find a way of displaying the first few DIVs on a page and then inserting another, the position being dependendent upon its content. I can make the DIVs hidden as below but can I then make them visible in a...
  20. R3D3

    is XMLHTTP ok with special characters?

    Take the following example... sURL = "http://www.guillec.com/listing.php?lang=fr&agence_id=612&for_sale[]=&subtype[]=&min_prix=0&max_prix=10000000&type_prix=EUR&departement=83&surface=&ville=&room_type=piece&rooms[]=0,1,2,3,4,5,6,7,8 &postcode=&arrondisiment=&offset=0" set oText =...

Part and Inventory Search

Back
Top