![]() |
|
[VB.NET] FLite Data Changer UPDATED 17th October 2009 - Printable Version +- Little Fighter Empire - Forums (https://lf-empire.de/forum) +-- Forum: General Zone (https://lf-empire.de/forum/forumdisplay.php?fid=23) +--- Forum: Programming (https://lf-empire.de/forum/forumdisplay.php?fid=50) +--- Thread: [VB.NET] FLite Data Changer UPDATED 17th October 2009 (/showthread.php?tid=3265) |
RE: [VB.NET] FLite Data Changer UPDATED 30th September 2009 - YinYin - 10-02-2009 yes pretty much thats what im used to from my browser and some other editors RE: [VB.NET] FLite Data Changer UPDATED 30th September 2009 - blow_fly98 - 10-02-2009 Dragging and dropping tabs to and from windows may be hard to implement... But I shall try my best. Thanks for the suggestions YinYin. RE: [VB.NET] FLite Data Changer UPDATED 30th September 2009 - YinYin - 10-02-2009 to be honest my browser is still a single process even with multiple windows opened i dont quite know whether that makes it a single instance with multiple windows or a multiple instance RE: [VB.NET] FLite Data Changer UPDATED 30th September 2009 - blow_fly98 - 10-02-2009 Well, I'll explain it. In .NET, there is a main form (or window). If it's a single-instance application, only 1 of that APPLICATION can be running (note that it's not 1 of that application's main window). A single-instance application can still have more than 1 of it's main window open (by initialising or creating a copy of that main window) and still be in one process. RE: [VB.NET] FLite Data Changer UPDATED 30th September 2009 - YinYin - 10-02-2009 still means that all windows are gone if one of them makes the process crash with each window being a process only the window causing a problem will crash right? but multiple processes will take more memory, kinda damaging your fast and lite propaganda :p and i dont see why you shouldn be able to handle all possible errors to keep it from crashing at all guess im opting for a single-instace with multiple window option RE: [VB.NET] FLite Data Changer UPDATED 30th September 2009 - blow_fly98 - 10-02-2009 Yep. Well "single-instance with one window" was what I meant by single-instance. So you want a "half" single-instance. Any other opinions? RE: [VB.NET] FLite Data Changer UPDATED 30th September 2009 - Azriel - 10-02-2009 normally if i DC with multiple data files, i'd like both open, both filling half the screen. Normally i'd do this manually (resizing the windows), but if u can have a splitter that lets u maximize internally (to half the window) then that'll be cool (meaning i'm vouching for single process). Code: __________________________________________________ __________________________________________________Azriel~ RE: [VB.NET] FLite Data Changer UPDATED 30th September 2009 - blow_fly98 - 10-02-2009 Azriel, you mean like this? (Click to View) RE: [VB.NET] FLite Data Changer UPDATED 17th October 2009 - blow_fly98 - 10-17-2009 Geez. After a few weeks, I could only manage a small update... >>Download Here<< Well anyway... NEW FEATURES:
Actual stats:
Of course, those stats are on a computer with 512MB RAM and a 1.73GHz processor, so they may be different for you... Also, from this version onwards, all users MUST HAVE .NET Framework 3.5!!!!!!!!!! Why? Because that .NET virtualization technique doesn't even work.... RE: [VB.NET] FLite Data Changer UPDATED 17th October 2009 - Azriel - 10-17-2009 just sth, if u're just appending to a string after each decryption, it'll take ages, but if you make a char[] (or similar) that is as big as the file (so it doesn't have to resize/reallocate memory), then the time it takes to open a file should just be linear (the figures u gave look like it's exponential). (my dcer dropped from 12 seconds to 0.3 seconds when i changed from appending to strings to writing to a char[]). p/s: @2 posts up: I did mean that (didn't wanna post just saying "yes") Azriel~ |