I'm not really sure what the question is. Clearly you're having trouble, but I'm not sure here. A good place to start is the step-by-step walkthrough. Tell me which step you're getting hung up on.
Hi,I'm David in IT.I'm interested in WyUpdate.I was testing WyUpdate from yesterday.I installed wyBuild(trial) and created new Project.- registered Upload sites- added automaticUpdater in Login Screen of my Main App
This is my program.cs.. static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false);
Application.ThreadException += new System.Threading.ThreadExceptionEventHandler(Application_ThreadException); AppDomain.CurrentDomain.UnhandledException += new UnhandledExceptionEventHandler(CurrentDomain_UnhandledException);
DevExpress.UserSkins.BonusSkins.Register(); UserLookAndFeel.Default.SetSkinStyle("Metropolis Dark"); SkinManager.EnableFormSkins(); // Added New by DJ.
Form Login = new frmLogin(); Application.Run(Login);
}
I'd like to check Version in Login Screen. If new updated is recognized, Close current Main App, and update new version, and start Main App...I don't know how to do it.I've already read in your web page how to do it.. I don't uinderstand.
And Some employee is using my Main App. I'd like to update it focely... because Main App has critical bug. Do you have any idea for this?
I'm not really sure what the question is. Clearly you're having trouble, but I'm not sure here. A good place to start is the step-by-step walkthrough. Tell me which step you're getting hung up on.
in Setp 4, Add the AutomaticUpdater control to Visual Studio Toolbox. Drag the AutomaticUpdater control to my .Net APP ( My current running Login Screen - this is to be updated )And then I rebuild my current running program...I changed my current running program and rebuild.. And then i created new version in wybuild. I moved my changed running program to Wybuild when i created new version in wybuild.But nothing happen..
Hi Sam,I created new version ( 1.3) in Wybuild. I uploaded new version in WyBuild.I checked uploaded data in my FTP Server.pmis.1.2.to.1.3.wyupmis.all to.to.1.3.wyuwyserver.wys
And then.. I did run my .net app include automatic upload control, but it didn't update new version.How to get I new version from server? Help me!!!
This is likely because the client.wyc file already says it's version "1.3" (your latest version). Double click the client.wyc file to see what version it sees itself as.
FAQ: wyUpdate says "You already have the latest version" when it isn't. What's wrong?
Hi ...I started again from "Walkthrough for your first time using wyBuild".I did it STEP G.I got error message in STEP H.Unable to check for update, the server file failed to load.( Error trying to save file: Error downloading"ftp://ftp.gtdiamond.com/Updates/wyserver.wys": The remote server returned an error: (530) Not logged in)But I did upload sucessfully in STEP G and I checked uploaded files in ftp server. ( There is no problem )
DO I skip STEP H?
The error is telling you exactly what the problem is:
Error trying to save file: Error downloading"ftp://ftp.gtdiamond.com/Updates/wyserver.wys": The remote server returned an error: (530) Not logged in
In other words, "I can't log into your server to download the file -- did you give me a username and password?" And the answer to that implicit question is, no, you didn't give the password to the FTP server.
So your download site should look something like this:
Thank you very much. OK, I passwd STEP G. and I understood wyBuild a little bit now.I will add AutomaticUpdater in App. I just added AutomaticUpdate.dll and draged automaticUpdated to my Main screen.Do i need to add any other code in my Application after that?
Do i need to add any other code in my Application after that?
You *can*, but you don't need to. The AutomaticUpdater handles all the details.
Thank you so so much.I passed all of STEP 4. I'm going to do "Silently Check for Updates"I don't understand how to do it.I'd like to run "Silent check for updates" in program.cs of my appl ( C#.NET ).So if there are updates available before my appl running, I'd like re-launch WyUpdate.exe at that time.Almost done.... Please help me more.. Thank you so so much.David
I'd like to run "Silent check for updates" in program.cs of my appl ( C#.NET ).
Using wyUpdate or the AutomaticUpdater? If you're using the AutomaticUpdater then the AutomaticUpdater must be on your main form. If you're using wyUpdate then you can run it from anywhere you want.