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 IamaSherpa 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. VeryNewbie2004

    D-LINK DI-624+ Connection

    I am having a very frustrating problem with me new wireless broadband router. I bought this for a home network and currently have one PC hardwired into a LAN slot and one connected wirelessly. I ran the set-up wizard and everything looked fantastic. However every time the PCs are turned off...
  2. VeryNewbie2004

    Checksum

    I guessed that might be the case, wasn't sure how long that might take though...
  3. VeryNewbie2004

    Checksum

    Okay I have absolutely no idea where to start on with this one. Does anyone have a clue how to write a module that will kick out an MD5 checksum file based on an input directory (including sub folders) or perhaps have one already they don't mind sharing. Any help at all would be massively...
  4. VeryNewbie2004

    RTF Files

    Cheers Lee Thats what I started doing this morning, then decided there had to be an easier way. I suppose I could use a control to do this if I placed it on a new form which I don't show to keep it more re-usable. I just that would be a little bit of a hash even by my low standards.
  5. VeryNewbie2004

    Get UserName

    Copy This Bit Into A New Module ' Makes sure all variables are dimensioned in each subroutine. Option Explicit ' Access the GetUserNameA function in advapi32.dll and ' call the function GetUserName. Declare Function GetUserName Lib "advapi32.dll" Alias "GetUserNameA" _...
  6. VeryNewbie2004

    RTF Files

    No problem Strong It's part of a class module that I envisage will be reused a good number of times so I don't think the hidden control is an option (unless you can think of a satisfactory way of intergrating it). In this instance I am running a procedure which takes the text from a certain...
  7. VeryNewbie2004

    RTF Files

    I am tring to convert a line of RTF code into it's text value. Is there a way that anyone knows of doing this without using a RTF control on a form? Thanks In Advance
  8. VeryNewbie2004

    Copying a Collection

    I have a collection which is being returned from a public property of a class module. Compiling this collection takes in the region of one second to run. My problem is that I want to refer to the collection a number of times within the same sub routine and naturally don't want to collate the...
  9. VeryNewbie2004

    Function Properties

    Indeed that is right I may be new to this but I am going a little beyond a couple of text functions! I just gave those as an example so I could see how I could achieve what I wanted to and I think I will be able to.
  10. VeryNewbie2004

    Function Properties

    I am indeed very new to this, but the I think with Bogdans help I will be able to do what I want to do. Thanks very much for you assistance - it's very much appreciated.
  11. VeryNewbie2004

    Function Properties

    Thanks Bogdan Are these classes standard or can you add your own defined ones? Using the example I gave can you give me of an example of a class module that will return .myfunclength, and .myfuncleft2. My overall aim is somewhat more complicated than this but I assume the concept remains the...
  12. VeryNewbie2004

    Function Properties

    I am trying to add different properties to a function I am trying to write. I am totally new to this concept so please forgive me. To simplify the kind of thing I am trying to do is return the following values from a single function: myfunc("sampletext").myfunclength = 10...
  13. VeryNewbie2004

    Reading data from a text file

    Hawkide The easiest way to do it (i don't know the Excel vba for putting text in a cell so bear with me) Open "c:\Temp\Test.txt" For Input As #1 Do While Not EOF(1) Line Input #1, StrFileLine For n = 1 to len(StrFileLine) singlecharacter = mid(StrFileLine,n,1)...
  14. VeryNewbie2004

    New Database Problem

    Dimandja I can't believe how simple this was - I havbe been tearing my hair out for the entire afternoon: Dim app_Access As Access.Application Set app_Access = New Access.Application Str_OutputDB = "U:\PLEASEPLEASEPLEASE.mdb" Str_OutputFile = "u:\TEST.csv"...
  15. VeryNewbie2004

    New Database Problem

    You know what I have just done this. For some reason the code I wrote in the first place seems to have just started working - I hate computers
  16. VeryNewbie2004

    New Database Problem

    I am having a problem creating a new Access Database from VB6. I have tried just about everything I can think of, yet the simple task of creating a mdb file seems to be beyond me. If anyone can help I would appreciate it loads. Cheers Mike

Part and Inventory Search

Back
Top