User Profile

Collapse

Profile Sidebar

Collapse
Zakoss
Zakoss
Last Activity: Dec 13 '16, 02:30 PM
Joined: Nov 28 '16
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Zakoss
    replied to Name for Software company
    TatSoft. Just a suggestion. :) I can try digging my brain for better results if you insist.
    See more | Go to post

    Leave a comment:


  • Zakoss
    replied to where the web pages are stored?
    A web server's primary use is to deliver web pages to any electronic device capable of interfacing with the web server, which means that the particular device must be connected to the Internet and have the appropriate software installed. Web pages compose websites.
    See more | Go to post

    Leave a comment:


  • Zakoss
    replied to Excel List VBA Question
    Passing by reference is the default in VBA. If you do not explicitly specify to pass an argument by value VBA will pass it by reference.
    See more | Go to post

    Leave a comment:


  • Zakoss
    replied to Passing an object from VB6 to C#
    You could use something like this in c#:
    Code:
    [Guid("fb5e929a-2f8b-481e-9516-97edf5099df4")]
    [ComVisible(true)]
    public interface myInterface{
    public void addObject(string key, string value);
    }
    And in your class, you could have this:
    Code:
    private collection
    public addObject(string key, string value)
    {
    collection.Add(key, value);
    }
    This should allow you to call addObject...
    See more | Go to post

    Leave a comment:


  • Zakoss
    replied to error in importing a file in another file
    This is hacky and even dirty, and in my opinion the language shouldn't impose its way of loading files across the filesystem. In PHP we solved the problem by letting the userland code register multiple autoloading functions that are called when a namespace/class is missing.
    See more | Go to post

    Leave a comment:


  • Zakoss
    replied to How do I create a search form in Access?
    So add the text box
    • In the Navigation Pane, right-click the form that you want to change, and then click Design View on the shortcut menu.
    • On the Design tab, in the Controls group, click Text Box.
    • Locate the area in the form in which you want to add the control, and then drag the pointer on the form to create the text box.
    • Right-click the text box, and then click Properties on the shortcut menu.
    • In the
    ...
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...