User Profile

Collapse

Profile Sidebar

Collapse
romcab
romcab
Last Activity: Aug 17 '10, 05:37 AM
Joined: Sep 12 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • romcab
    replied to How to know all changes after update
    in .NET
    this is actually a follow-up question. I'm thinking if windows maintain a log file to keep track new apps installed like the windowsupdates log file.
    See more | Go to post

    Leave a comment:


  • romcab
    replied to How to know all changes after update
    in .NET
    I like the idea of making a hash for each folder. This will saves me more processing time. I'm still considering the database as I think this is just a simple tool, file probably is enough. Thanks for the reply.
    See more | Go to post

    Leave a comment:


  • romcab
    started a topic How to know all changes after update
    in .NET

    How to know all changes after update

    Hi guys,

    I would like to ask your ideas about the tool I'm planning to create. What i want to do is to know all the files added, modified, deleted after an update (windows update, hotfix, etc). My initial idea is to take a snapshot of the system by getting all files stored in windows and programf files and store in a file. I will then compare it against the new snapshot after an updates. I would like to ask a better way on how to do...
    See more | Go to post

  • http://jorriss.net/cs/blogs/jorrissnet/archive/2005/07/14/116.aspx
    http://www.pcreview.co .uk/forums/thread-1544573.php

    I found the two links below which suggest the use of ORCA to edit the .msi but it did'nt work. I hope you can give other idea.

    Thanks,
    See more | Go to post

    Leave a comment:


  • Hi,

    I created the installer using VS 2005 and I used custom action to launch my application. I read that it's the default of the installer that it needs to wait to close the finish button.

    [QUOTE=tlhintoq]Is the installer maker the default built into Visual Studio, or a third party install maker like "InstallShield2 009 for Visual Studio" ?

    I use the I.S. and there is an option for granting the...
    See more | Go to post

    Leave a comment:


  • how to launch application after installation is complete

    Hi guys,

    I just want to ask your idea about launching an application automatically after installation is complete. Right now, what happen is that is automatically launched but the closed dialog box is still open. I've seen a thread that related to this but it does'nt have a solution. Hope you can give me any idea.

    http://bytes.com/forum/thread436556.ht ml
    See more | Go to post

  • romcab
    started a topic How to add Uninstall in Setup Project
    in .NET

    How to add Uninstall in Setup Project

    Hi guys,

    Just want to ask your idea on how to add "uninstall" in my setup project. I do have a working a installer but the uninstall part is not yet working. I saw some code which uses script file but I'm not sure if it will work. Aside from that, I think there's a better alternative since the custom install contain uninstall folder. Hope you can give share your ideas.

    Thanks,
    See more | Go to post

  • romcab
    started a topic How to test SMTP server connection in C#
    in .NET

    How to test SMTP server connection in C#

    Hi guys,
    I would like to ask your idea on how to test my SMTP server connection. I created a form where you will input SMTP info like server, port, username and password. At the end of it, I added a test connection button. Right now, I can send email using SmtpClient and MailMessage class. I tried using socket to test the connection but our server don't accept connection. Hope you can help me guys.

    Thanks in advance.
    See more | Go to post

  • romcab
    replied to AutoLaunch Wizard in .NET
    in .NET
    Hello,

    I was able to figure it out. I just set the CustomActionDat a property to /INSTALLDIR="[TARGETDIR]\" and get it using Context.Paramet ers ["INSTALLDIR "]; I then set it to p.StartInfo.Fil eName. Hope this will help other guys.

    Thanks.
    See more | Go to post

    Leave a comment:


  • romcab
    replied to AutoLaunch Wizard in .NET
    in .NET
    Hello.

    I was able to create an installer that can autolaunch an application. But I encountered another problem. I cannot locate the exact location of the exe that I'm going to launch. Right now it's working because i hardcoded it's position. I'm thinking on how to get the value in installation folder so I can assign it to the Process var. Below is my code snippet.

    public override void Commit(System.C ollections.IDic tionary...
    See more | Go to post

    Leave a comment:


  • romcab
    started a topic AutoLaunch Wizard in .NET
    in .NET

    AutoLaunch Wizard in .NET

    Hi guys,

    Just want to ask your idea on how I can make an AutoLaunch wizard. What I want is to automatically launch a wizard after I install my application. This wizard will configure the initial settings of my application. Do I need to add this on my installer project? How can I detect that my apps is successfully install and autolaunch the wizard? Hope you can share my some ideas and I will gladly try it.

    Thanks...
    See more | Go to post

  • romcab
    replied to Forms Like Excel Sheet
    in .NET
    Can I use it even without a datasource? What i want is to provide a user a table where the user can add/edit data and a new row will be dynamically added when the last row is filled....
    See more | Go to post

    Leave a comment:


  • romcab
    replied to Forms Like Excel Sheet
    in .NET
    hi...

    Thanks you...But I do'nt need to manipulate an excel. Maybe my title is not appropriate. What i want is just to create a table similar to that. What i want to implement is similar to adding a table in MSword, it automatically add a new row everytime we input tab....
    See more | Go to post

    Leave a comment:


  • romcab
    started a topic Forms Like Excel Sheet
    in .NET

    Forms Like Excel Sheet

    Hi guys,

    I just want to ask your idea how to create a form that looks like a simple excel sheet. A new row will be added when the last row is filled up. My idea is to use TableLayoutpane l and add textbox on it. Then a thread will run to check if the last row is filled. Any other idea? thanks..
    See more | Go to post

  • romcab
    started a topic Something like task manager.
    in .NET

    Something like task manager.

    Hi guys,
    I would like to ask your idea about my current problem. I would like to create an application which run on the background. Then when I press a certain key, the GUI of the program will display on the screen. A good example of this is the Task Manager where it running on the background and the GUI will display when Ctrl+Alt+Del then choose Task manager. My initial idea is to hide the window then display it when the key is pressed....
    See more | Go to post

  • romcab
    started a topic VMWARE questions

    VMWARE questions

    Hi guys,
    I'm not sure if this is the right forums but hopefully you can help me with my problem. I installed a VMWARE on my pc which runs services. What I'm currently doing is to copy my program binaries to VMWARE and run the program there to use the running services. I tried not to copy the binary file on VMWARE and run the program outside since I can PING the VMWARE. Is it possible to access the running services inside the VMWARE outside,...
    See more | Go to post

  • romcab
    replied to Client/Server Application like Youtube
    in .NET
    Hi,

    I'm using C# under VS2005. My problem is how to send the mpeg or movie file using TCP/IP. Can I use Network Stream class of .NET? Does the file sequence or header will not be destroyed?...
    See more | Go to post

    Leave a comment:


  • romcab
    started a topic Problem in Socket Programming
    in .NET

    Problem in Socket Programming

    Hi guys,
    I just want to ask if I can used BinaryStream class in .Net to send mpeg file using socket either TCP or UDP? Does the mpeg file will not be corrupted? Hope you can give me an idea or way. Thanks
    See more | Go to post

  • romcab
    started a topic Client/Server Application like Youtube
    in .NET

    Client/Server Application like Youtube

    Hi guys,
    I would like to create a client/server application similar to youtube. My problem now is the video streaming. I know socket programming but I'm not sure if it will work. I believe mpeg movies has a structure which contains header and data. Can anyone give me a suggestion? Thanks in advance.
    See more | Go to post

  • romcab
    replied to Problem in MultiThreading
    in .NET
    Hi,
    Tnx. That's what i'm trying to do right now. I will save the thread id and ip address of the client. My problem is how to get the ip address of the client. I'm only using Tcpclient and TcpListener class for my winforms application. I have no idea how to get the client information....
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...