User Muxa - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T23:40:33Zhttp://stackoverflow.com/feeds/user/10793http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/621265/net-2-0-application-settings-user-config-file-location4.NET 2.0 Application Settings (user.config) file locationMuxa2009-03-07T03:50:32Z2009-12-18T12:50:51Z
<p>Hi,</p>
<p>I'm trying to customize the location of user.config file. Currently it's stored in </p>
<pre><code>%AppData%\[CompanyName]\[ExeName]_Url_[some_hash]\[Version]\
</code></pre>
<p>I want to it be something like</p>
<pre><code>%AppData%\[CompanyName]\[ProductName]\
</code></pre>
<p>so there's no version number and not hash stuff.</p>
<p>First question: can this be done and how? What are the implications?</p>
<p>Second question: (using the default user.config location) when upgrading the application does it transfer copy settings from the old user.config to the new one? In other works will the user loose their settings from the previous version after upgrading?</p>
http://stackoverflow.com/questions/267987/net-2-0-datagridview-combobox-column-slow-to-display-items0.NET 2.0 DataGridView ComboBox column - slow to display itemsMuxa2008-11-06T08:56:53Z2009-12-11T03:57:42Z
<p>Hi,</p>
<p>Any suggestions on how to improve DataGridViewComboBoxColumn performace with large item sets?</p>
<p>I've got a DataGridView with several columns of type DataGridViewComboBoxColumn. I'm databinding those combobox columns to a rather large collection (10k+ items). As a result it's very slow to display the items (when i click on the down-arrow button on a cell it takes about 10 seconds to display the items).</p>
<p>I've tested the same collection of items with a standard ComboBox control, and it works really fast.</p>
<p>Any ideas?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/1584144/how-can-windows-sidebar-gadget-communicate-with-my-desktop-app0How can Windows Sidebar Gadget communicate with my desktop app?Muxa2009-10-18T06:02:52Z2009-12-09T23:46:25Z
<p>Hi,</p>
<p>I've got a .NET 2.0 Windows desktop application (time-sheets) which i develop and wanted to add a Gadget interface to it (so that app runs hidden and is controlled via the gadget).</p>
<p>What is the easiest way to get my gadget to communicate to my app?</p>
<p>An idea that i had was to have a built-in web server inside the app, and the gadget controls communicates with the app using ajax. However i'm hoping there's a simpler solution.</p>
http://stackoverflow.com/questions/1843254/enter-license-key-during-desktop-installation-of-windows-mobile-app0Enter license key during desktop installation of Windows Mobile appMuxa2009-12-03T22:01:33Z2009-12-04T03:24:54Z
<p>I've got a CAB file with the Windows Mobile application and the MSI package which installs that CAB on Windows Mobile Device (using a custom installer).</p>
<p>Now i'm trying to add ability to enter license key for that Windows Mobile app using desktop installation package.</p>
<p>I've added "Customer Information" dialog to MSI so i can enter the key. So what i need to do next is get that license key from my custom installer, do some validation, store that key n a file and copy the file to the mobile device into installation directory.</p>
<p>So, the questions are:</p>
<ul>
<li>How can i retrieve the license key i've entered during installation from my custom installer?</li>
<li>How can i programmatically copy file created by custom installer to PDA into installation directory via active sync during installtion?</li>
</ul>
<p>UPDATE:</p>
<p>I found a way to retrieve the info entered during installation using <a href="http://msdn.microsoft.com/en-us/library/aa370130%28VS.85%29.aspx" rel="nofollow">MsiGetProductInfo</a> (<a href="http://www.pinvoke.net/default.aspx/msi/MsiGetProductInfo.html" rel="nofollow">c# wrapper</a>)</p>
http://stackoverflow.com/questions/1837600/what-happens-to-triggers-indexes-when-i-rename-create-insert-drop-a-table-in-sqli0What happens to Triggers/Indexes when i rename/create/insert/drop a table in SQLite?Muxa2009-12-03T04:16:16Z2009-12-03T04:21:47Z
<p>What happens to Triggers/Indexes when i rename/drop a table SQLite?</p>
<p>I'm running and upgrade script where i add a column to a table, so i d the following:</p>
<pre><code>ALTER TABLE [Entry] RENAME TO [Entry_temp];
CREATE TABLE [Entry] (
[EntryID] integer PRIMARY KEY AUTOINCREMENT NOT NULL,
...
)
INSERT INTO [Entry]
(...)
SELECT ...
FROM [Entry_temp];
DROP TABLE [Entry_temp];
</code></pre>
<p>The Entry table had a trigger and an index</p>
<pre><code>-- these were created before
CREATE TRIGGER Entry_Version_Update AFTER UPDATE ON [Entry]
BEGIN
UPDATE [Entry] SET [Version] = [Version] + 1
WHERE [EntryID] = new.[EntryID];
END;
CREATE INDEX ix_Entry_ClientID ON [Entry] ([ClientID]);
</code></pre>
<p>Do i have to drop them before the update and create a new one after? Or can i just leave them?</p>
http://stackoverflow.com/questions/1534888/cf-net-app-protection-antidebug-obfuscate/1805556#18055560Answer by Muxa for cf.net app protection (antidebug, obfuscate)Muxa2009-11-26T20:38:45Z2009-11-26T20:38:45Z<p>I use <a href="http://www.foss.kharkov.ua/g1/projects/eazfuscator/dotnet/Default.aspx" rel="nofollow">Eazfuscator.NET</a> - it's free and it's good.</p>
http://stackoverflow.com/questions/1780289/how-can-i-get-value-of-delay-for-tap-and-hold-on-windows-mobile2How can i get value of delay for tap-and-hold on Windows Mobile?Muxa2009-11-22T22:40:25Z2009-11-23T21:17:11Z
<p>How can i get value of delay for tap-and-hold on Windows Mobile? I.e. the delay between tap and the circles being drawn and/or the context menu appearing.</p>
http://stackoverflow.com/questions/1751758/adding-menu-items-from-a-separate-thread0Adding menu items from a separate thread.Muxa2009-11-17T21:03:21Z2009-11-19T15:51:53Z
<p>I'm creating menu items in a separate thread and adding them to the menu created in the main thread. I'm using Invoke for that. Getting "Value does not fall within the expected range" exception.</p>
<pre><code> //creating new thread
Thread thread = new Thread(LoadRecentTasks);
thread.IsBackground = true;
thread.Start();
private void LoadRecentTasks()
{
EntryCollection recentEntries = Entry.GetRecentEntries(10);
foreach (Entry entry in recentEntries)
{
MenuItemPlus menuItem = new MenuItemPlus();
menuItem.Text = entry.GetShortDescription(28);
menuItem.Click += recentTasksMenuItem_Click;
menuItem.Tag = entry;
AddRecentMenuItem(menuItem);
}
}
private void AddRecentMenuItem(MenuItemPlus menuItem)
{
if (InvokeRequired)
{
BeginInvoke(new CallbackDelegate<MenuItemPlus>(AddRecentMenuItem), menuItem);
}
else
{
menuItemRecent.MenuItems.Add(menuItem); //<-- exception thrown here
}
}
delegate void CallbackDelegate<T>(T t);
</code></pre>
<p>Any suggestions?</p>
<p>UPDATE: i've tried it with Invoke too - same result.</p>
<p>menuItemRecent is created as part of the form's initialization routine. The thread is started on form's Activated event</p>
http://stackoverflow.com/questions/1746542/cursor-selection-position-in-datetimepicker0Cursor/selection position in DateTimePickerMuxa2009-11-17T04:16:58Z2009-11-17T05:20:43Z
<p>I'm trying to determine the currently selected portion of the date (or time) editor. I need to to provide custom action when the navigation keys on PDA are use. In particular i want the focus to go to the next control when pressing Right button and having the last portion of the date selected (e.g year). Default behavior is cycling through date portions.</p>
<p>I've looked at Win32 API options for DateTimePicker (<a href="http://msdn.microsoft.com/en-us/library/bb761727%28VS.85%29.aspx" rel="nofollow">link</a>) but it does not seem to support this.</p>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/1291975/why-is-this-sql-statement-very-slow4Why is this SQL statement very slow?Muxa2009-08-18T05:32:57Z2009-11-09T03:52:14Z
<p>Hi,</p>
<p>I've got a table with about 1 million records (running SQL Server 2008 Web). I've got a search routine which tries to match on product code as well as product description.
However in some circumstances it's very slow. Below is (cut-down) sql statement:</p>
<pre><code>WITH AllProducts AS (
SELECT p.*, Row_Number() OVER (ORDER BY ProductId) AS RowNumber
FROM Product AS p
WHERE p.IsEnabled=1 AND
(
p.BaseSku = 'KPK-3020QWC-C' -- this on its own is fast
OR
CONTAINS(p.FreeTextStrings, '"KPK-3020QWC*"') -- and this on its own is fast, but not both
)
) SELECT * FROM AllProducts
WHERE RowNumber BETWEEN 1 AND 20;
</code></pre>
<p>Note that if i just compare on [p.BaseSku = 'KPK-3020QWC-C'] or [CONTAINS(p.FreeTextStrings, '"KPK-3020QWC*"')] individually (but not both) its instant. And if i compare them together it takes ages (several minutes) - and returns just one row.</p>
<p>IsEnabled and BaseSku are indexed, and FreeTextStrings is FTS-indexed.</p>
<p>I remember this was working fineb efore.</p>
<p>Can anybody shed any light on this and suggest some solutions?</p>
<p>Execution plan file is available here: <a href="http://wiki.webgear.co.nz/GetFile.aspx?File=Temp%5cSearch%20Test.sqlplan.zip" rel="nofollow">http://wiki.webgear.co.nz/GetFile.aspx?File=Temp%5cSearch%20Test.sqlplan.zip</a></p>
http://stackoverflow.com/questions/1663726/error-when-typecasting-a-plugin-instance-in-a-signed-assembly0Error when typecasting a plugin instance in a signed assemblyMuxa2009-11-02T21:10:30Z2009-11-02T21:28:12Z
<p>I'm developing an application with plugins. I have a separate API assembly with all the API interfaces.</p>
<p>The main application dynamically loads the plugins from dlls:</p>
<pre><code>object pi = Assembly.LoadFrom(plugin.AssemblyPath)
.CreateInstance(plugin.ClassName);
</code></pre>
<p>and then i'm casting it to the actual plugin type:</p>
<pre><code>IPlugin pluginInstance = (IPlugin)pi;
</code></pre>
<p>All of this is working fine when none of the assemblies are signed. As soon as i sign them (main app, API assemply and the plugin assemply) it fails to cast, throwing:</p>
<blockquote>
<p>Unable to cast object of type '.MyPlugin' to type '.IPlugin'.</p>
</blockquote>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/1663726/error-when-typecasting-a-plugin-instance-in-a-signed-assembly/1663824#16638240Answer by Muxa for Error when typecasting a plugin instance in a signed assemblyMuxa2009-11-02T21:28:12Z2009-11-02T21:28:12Z<p>Got it! The issue was that i had two copies on API.dll - one in the application folder, and another in the Plugins subfolder. When I've deleted Plugins\API.dll it has started working fine.</p>
<p>(It has worked fine with two copies in unsigned mode though)</p>
http://stackoverflow.com/questions/1281449/techniques-to-create-pdf-report-from-templates-using-itextsharp0Techniques to create PDF report from templates using iTextSharpMuxa2009-08-15T08:14:06Z2009-10-20T06:19:06Z
<p>Hi,</p>
<p>I've got a project where I need to generate PDF reports from a template. The report will have a header, details and a footer, and can potentially run on multiple pages.</p>
<p>I was going to use iTextSharp for that. For the templates i was thinking of two options:</p>
<ul>
<li>PDF Form template</li>
<li>HTML template</li>
</ul>
<p>Can you comment on the pros and cons of these two options? </p>
<p>Can you suggest how to create PDF Form templates using some free software?</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1281449/techniques-to-create-pdf-report-from-templates-using-itextsharp/1592777#15927770Answer by Muxa for Techniques to create PDF report from templates using iTextSharpMuxa2009-10-20T06:19:06Z2009-10-20T06:19:06Z<p>I ended up using iTextSharp with PDF Form for "master page" templates, and adding my tables, page numbers etc. on top programmatically. </p>
<p>PDF Form templates provide background graphics, fields which can be replaced with your values (good for one page reports - or using them for positioning guides in multipage reports).</p>
http://stackoverflow.com/questions/109399/can-you-do-desktop-development-using-javascript/1584129#15841291Answer by Muxa for Can you do Desktop Development using JavaScript?Muxa2009-10-18T05:56:06Z2009-10-18T05:56:06Z<p>There's <a href="http://www.appcelerator.com/" rel="nofollow">Titanium Developer</a> which is similar to Adobe AIR (html+css+javascript), but does not require a framework to be pre-installed.</p>
http://stackoverflow.com/questions/1333327/how-to-tell-msi-not-to-ovewrite-existing-file-in-setup-deployment-project-in-vs2How to tell MSI not to ovewrite existing file in Setup & Deployment Project in VS2005?Muxa2009-08-26T09:02:27Z2009-09-13T17:57:48Z
<p>Hi,</p>
<p>I've got a Setup & Deployment Project in VS2005. One of the files that i'm installing is a SQLite data file.</p>
<p>I'm about to release a new version for the software, but i found that if i run the update on existing installation it overwrites the data file.</p>
<p>I've got an updated data file in the setup project so it's newer than already installed, but i don't want to overwrite it.</p>
<p>I've tries setting the Permanent property for that file to True, but to no avail.</p>
<p>Any suggestions?</p>
http://stackoverflow.com/questions/724668/sql-server-identity-column-values-start-at-0-instead-of-11SQL server identity column values start at 0 instead of 1Muxa2009-04-07T08:38:21Z2009-09-09T05:02:41Z
<p>Hi,
I've got a strange situation with some tables in my database starting its IDs from 0, even though TABLE CREATE has IDENTITY(1,1).
This is so for some tables, but not for others.
It has worked until today.</p>
<p>I've tried resetting identity column:</p>
<pre><code>DBCC CHECKIDENT (SyncSession, reseed, 0);
</code></pre>
<p>But new records start with 0.
I have tried doing this for all tables, but some sill start from 0 and some from 1.</p>
<p>Any pointers?</p>
<p>(i'm using SQL Server Express 2005 with Advanced Services)</p>
http://stackoverflow.com/questions/1032614/itextsharp-creating-a-footer-page-of/1372669#13726691Answer by Muxa for iTextSharp Creating a Footer Page # of #Muxa2009-09-03T10:36:33Z2009-09-03T10:36:33Z<p>Here's a <a href="http://www.mazsoft.com/blog/post/2008/04/30/Code-sample-for-using-iTextSharp-PDF-library.aspx" rel="nofollow">good example</a> for adding total page number to every page.</p>
http://stackoverflow.com/questions/1333327/how-to-tell-msi-not-to-ovewrite-existing-file-in-setup-deployment-project-in-vs/1345658#13456580Answer by Muxa for How to tell MSI not to ovewrite existing file in Setup & Deployment Project in VS2005?Muxa2009-08-28T08:13:12Z2009-08-28T08:13:12Z<p>Ok, here's a workaround that i've used:</p>
<ul>
<li>In my setup project I've renamed my blank database file from Database.db to Database-blank.db.</li>
<li>In my app i'm checking if Database.db is missing and copying Database-blank.db to Database.db if it is. </li>
<li>then just load existing Database.db</li>
</ul>
<p>This way i can ensure the local copy of the data file (Database.db) does not get replaced by newer versions of the software.</p>
http://stackoverflow.com/questions/136726/sap-r-3-package-code-modification1SAP R/3 package code modificationMuxa2008-09-25T22:56:42Z2009-08-27T22:38:49Z
<p>I'm trying to determine how to modify SAP R/3 package code of an installed system. Can anyone suggest the module/tool for that?</p>
http://stackoverflow.com/questions/1291975/why-is-this-sql-statement-very-slow/1292129#12921291Answer by Muxa for Why is this SQL statement very slow?Muxa2009-08-18T06:28:40Z2009-08-18T06:38:58Z<p>This seems to work well:</p>
<pre><code>WITH AllProducts AS (
SELECT p.*, Row_Number() OVER (ORDER BY ProductId) AS RowNumber
FROM Product AS p
WHERE p.IsEnabled=1 AND
(
CONTAINS(p.BaseSku, 'KPK-3020QWC-C') /* instead of p.BaseSku = 'KPK-3020QWC-C' */
OR
CONTAINS(p.FreeTextStrings, '"KPK-3020QWC*"')
)
) SELECT * FROM AllProducts
WHERE RowNumber BETWEEN 1 AND 20;
</code></pre>
<p>(I already had BaseSku FTS-indexed)</p>
http://stackoverflow.com/questions/1252521/naming-product-editions-versions3Naming product editions/versionsMuxa2009-08-09T22:49:07Z2009-08-10T04:06:18Z
<p>I'm working on a software product (time tracking tool) which will be available in 2 flavors: a free version and a commercial version. I was thinking of naming them as "Free version" and "Professional version". At some point I will also have a 3rd version called "Enterprise" - for companies rather then individuals.</p>
<p>Can you suggest any better alternatives? Perhaps "Basic", "Premium" and "Ultimate"?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/267872/asp-net-comparevalidator-issue5ASP.NET CompareValidator issueMuxa2008-11-06T07:39:20Z2009-06-26T23:55:58Z
<p>Hi,</p>
<p>I've got a web form with Password and Confirm Password text boxes. I've got a RegularExpressionValidator attached to the first one and CompareValidator to the second one.
Now the problem is when i have something in the Password field and nothing in Confirm Password field it does not display an error that fields don't match. As soon as i put something in the Confirm Password field it shows the error.
I also want to allow to leave both fields blank.</p>
<p>I'm using .NET 2.0</p>
<p>What might it be?</p>
http://stackoverflow.com/questions/514336/simplest-way-to-process-a-list-of-items-in-a-multi-threaded-manner0Simplest way to process a list of items in a multi-threaded mannerMuxa2009-02-05T02:43:24Z2009-06-21T11:00:01Z
<p>I've got a piece of code that opens a data reader and for each record (which contains a url) downloads & processes that page.</p>
<p>What's the simplest way to make it multi-threaded so that, let's say, there are 10 slots which can be used to download and process pages in simultaneousy, and as slots become available next rows are being read etc.</p>
<p>I can't use WebClient.DownloadDataAsync</p>
<p>Here's what i have tried to do, but it hasn't worked (i.e. the "worker" is never ran):</p>
<pre><code> using (IDataReader dr = q.ExecuteReader())
{
ThreadPool.SetMaxThreads(10, 10);
int workerThreads = 0;
int completionPortThreads = 0;
while (dr.Read())
{
do
{
ThreadPool.GetAvailableThreads(out workerThreads, out completionPortThreads);
if (workerThreads == 0)
{
Thread.Sleep(100);
}
} while (workerThreads == 0);
Database.Log l = new Database.Log();
l.Load(dr);
ThreadPool.QueueUserWorkItem(delegate(object threadContext)
{
Database.Log log = threadContext as Database.Log;
Scraper scraper = new Scraper();
dc.Product p = scraper.GetProduct(log, log.Url, true);
ManualResetEvent done = new ManualResetEvent(false);
done.Set();
}, l);
}
}
</code></pre>
http://stackoverflow.com/questions/672311/custom-clipboard-data-format-accross-rdc-net0Custom clipboard data format accross RDC (.NET)Muxa2009-03-23T05:23:37Z2009-04-08T23:40:32Z
<p>Hi,</p>
<p>I'm trying to copy a custom object from a RDC window into host (my local) machine. It fails.
Here's the code that i'm using to 1) copy and 2) paste:</p>
<p>1) Remote (client running on Windows XP accessed via RDC):</p>
<pre><code> //copy entry
IDataObject ido = new DataObject();
XmlSerializer x = new XmlSerializer(typeof(EntryForClipboard));
StringWriter sw = new StringWriter();
x.Serialize(sw, new EntryForClipboard(entry));
ido.SetData(typeof(EntryForClipboard).FullName, sw.ToString());
Clipboard.SetDataObject(ido, true);
</code></pre>
<p>2) Local (client running on local Windows XP x64 workstation):</p>
<pre><code> //paste entry
IDataObject ido = Clipboard.GetDataObject();
DataFormats.Format cdf = DataFormats.GetFormat(typeof(EntryForClipboard).FullName);
if (ido.GetDataPresent(cdf.Name)) //<- this always returns false
{
//can never get here!
XmlSerializer x = new XmlSerializer(typeof(EntryForClipboard));
string xml = (string)ido.GetData(cdf.Name);
StringReader sr = new StringReader(xml);
EntryForClipboard data = (EntryForClipboard)x.Deserialize(sr);
}
</code></pre>
<p>It works perfectly on the same machine though.</p>
<p>Any hints?</p>
http://stackoverflow.com/questions/672311/custom-clipboard-data-format-accross-rdc-net/732301#7323010Answer by Muxa for Custom clipboard data format accross RDC (.NET)Muxa2009-04-08T23:40:32Z2009-04-08T23:40:32Z<p>Ok, found what the issue was.
Custom format names get truncated to 16 characters when copying over RDC using custom format.
In the line</p>
<pre><code>ido.SetData(typeof(EntryForClipboard).FullName, sw.ToString());
</code></pre>
<p>the format name was quite long.</p>
<p>When i was receiving the copied data on the host machine the formats available had my custom format, but truncated to 16 characters.</p>
<pre><code>IDataObject ido = Clipboard.GetDataObject();
ido.GetFormats(); //used to see available formats.
</code></pre>
<p>So i just used a shorter format name:</p>
<pre><code>//to copy
ido.SetData("MyFormat", sw.ToString());
...
//to paste
DataFormats.Format cdf = DataFormats.GetFormat("MyFormat");
if (ido.GetDataPresent(cdf.Name)) {
//this not works
...
</code></pre>
http://stackoverflow.com/questions/348371/how-does-ms-access-joins-linked-tables-linked-to-the-same-sql-server-database1How does MS Access joins linked tables (linked to the same SQL server database)?Muxa2008-12-08T00:03:13Z2009-03-09T23:40:28Z
<p>Hi,</p>
<p>I've got MS Access database with linked tables, whever each table is linked to a table in the same SQL Server database. I have a query inside Access that joins 2 tables (in particular i'm updating a table based on another using a join).</p>
<p>The question is does Access "download" all the table data before doing a join? Or is smart and joining it on the SQL Server?</p>
<p>The query is:</p>
<pre><code>UPDATE TBL_INVOICE_CHARGES INNER JOIN TBL_ANI
ON (TBL_INVOICE_CHARGES.CH_CUST_ID = TBL_ANI.ANI_CUST_ID)
AND (TBL_INVOICE_CHARGES.CH_ANI = TBL_ANI.ANI_NZ_ANI)
SET TBL_INVOICE_CHARGES.ANI_NOTES = TBL_ANI.ANI_NOTES;
</code></pre>
<p>Thanks!</p>
http://stackoverflow.com/questions/617203/delphi-and-net-using-visual-studio1Delphi and .NET. Using Visual StudioMuxa2009-03-05T23:46:27Z2009-03-06T17:14:45Z
<p>Hi,</p>
<p>I've got an old project written in Delphi 4.
I'm looking for a way to:</p>
<ol>
<li>use that code with minimal changes from within .NET </li>
<li>use other .NET assemblies from that Delphi code </li>
<li>use Visual Studio to work on the solution which will
contain Delphi project and C#
projects.</li>
</ol>
<p>Is that possible? What will i need for that?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/510669/whats-the-best-way-to-send-emails-from-a-web-server-to-miminise-bouces-backs-and1What's the best way to send emails from a web server to miminise bouces-backs and spam blocks?Muxa2009-02-04T09:36:55Z2009-02-04T09:42:21Z
<p>I've got a web server that sends email (from IIS 5.1) to clients throughout the world. I have found that sometimes emails get bounced on valid addresses, or they never arrive, or get treated as spam.</p>
<p>I'm considering using am external SMTP service.</p>
<p>Will this help? Are there other ways/tips?</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/360843/calling-multiple-dopostback-from-javascript0Calling multiple __doPostBack from JavaScriptMuxa2008-12-11T20:54:23Z2008-12-11T23:19:26Z
<p>Hi,</p>
<p>I've got multiple UpdatePanel's on a page and i'm updating 2 of them manually by calling __doPostBack.
However the problem is the first call seems to be reset when the second call is made (it never updates the panel that i requested to update first).
I've got these calls wrapped in setTimeout, but it does not seem to help.</p>
<p>Any suggestions on how to make both calls work?</p>
http://stackoverflow.com/questions/1837600/what-happens-to-triggers-indexes-when-i-rename-create-insert-drop-a-table-in-sqliComment by Muxa on What happens to Triggers/Indexes when i rename/create/insert/drop a table in SQLite?Muxa2009-12-03T07:30:07Z2009-12-03T07:30:07ZWhat about triggers?http://stackoverflow.com/questions/174232/how-to-open-a-new-email-and-assign-subject-using-net-compact-framework/302078#302078Comment by Muxa on How to open a new email, and assign subject, using .NET Compact FrameworkMuxa2009-11-27T01:44:36Z2009-11-27T01:44:36ZThanks, Jake, that's exactly what i've been looking for.http://stackoverflow.com/questions/1751758/adding-menu-items-from-a-separate-thread/1752075#1752075Comment by Muxa on Adding menu items from a separate thread.Muxa2009-11-19T20:03:14Z2009-11-19T20:03:14ZI've tried it with your code. Couple of issues: IsHandleCreated and IsOnUiThread where not available (i've using .NET CF 2.0)
I've tried (control.Handle == IntPtr.Zero) instead of (!control.IsHandleCreated) - it never had that case.
I was thinking may be it is possible to create the menu item in the main UI thread, but return the object reference back to my second thread. Pseudocode:
LoadRecentTasks()
{
foreach (Entry entry in recentEntries)
{
AddRecentMenuItem(MainUIThread.NewMenuItem());
}
}
}http://stackoverflow.com/questions/1751758/adding-menu-items-from-a-separate-thread/1752075#1752075Comment by Muxa on Adding menu items from a separate thread.Muxa2009-11-18T00:38:33Z2009-11-18T00:38:33ZThanks, Greg. menuItemRecent is created as part of the form's initialization routine. The thread is started on form's Activated event.http://stackoverflow.com/questions/1746542/cursor-selection-position-in-datetimepicker/1746691#1746691Comment by Muxa on Cursor/selection position in DateTimePickerMuxa2009-11-17T05:08:03Z2009-11-17T05:08:03ZIs there any free alternative for the CF.NET DateTimePicker?
I'll keep in mind your suggestion. Of course it will not work properly if a combination of keys and stylus is used.http://stackoverflow.com/questions/1281449/techniques-to-create-pdf-report-from-templates-using-itextsharpComment by Muxa on Techniques to create PDF report from templates using iTextSharpMuxa2009-10-20T06:19:33Z2009-10-20T06:19:33ZSee my answer below.http://stackoverflow.com/questions/1584144/how-can-windows-sidebar-gadget-communicate-with-my-desktop-app/1586449#1586449Comment by Muxa on How can Windows Sidebar Gadget communicate with my desktop app?Muxa2009-10-19T18:50:56Z2009-10-19T18:50:56ZThanks for you answer. Yes, i'm using .NET (2.0), so i can implement named pipes support. However how do i use it from the gadget? I did a quick search and did not find any examples.http://stackoverflow.com/questions/1333327/how-to-tell-msi-not-to-ovewrite-existing-file-in-setup-deployment-project-in-vs/1333494#1333494Comment by Muxa on How to tell MSI not to ovewrite existing file in Setup & Deployment Project in VS2005?Muxa2009-08-26T09:55:25Z2009-08-26T09:55:25ZThanks for you input, Wael.
Actually, id does not remove the file if it was changed since installation.
I've tried your suggestion with Permanent and ReadOnly, but it still overwrites the file.http://stackoverflow.com/questions/1291975/why-is-this-sql-statement-very-slow/1292005#1292005Comment by Muxa on Why is this SQL statement very slow?Muxa2009-08-18T05:58:22Z2009-08-18T05:58:22ZYep, this has solved it. However i think it's quite strange that the same statement worked very fast in SQL 2005 and is working slow in SQL 2008. May be this would be addressed in the next service pack?http://stackoverflow.com/questions/1291975/why-is-this-sql-statement-very-slow/1292005#1292005Comment by Muxa on Why is this SQL statement very slow?Muxa2009-08-18T05:51:33Z2009-08-18T05:51:33ZI've tried that and it indeed has shown great improvements. I'll try this technique with the full sql statement.http://stackoverflow.com/questions/1291975/why-is-this-sql-statement-very-slowComment by Muxa on Why is this SQL statement very slow?Muxa2009-08-18T05:39:14Z2009-08-18T05:39:14ZThese problems started to occur after upgrading SQL 2005 to SQL 2008.http://stackoverflow.com/questions/1252521/naming-product-editions-versions/1253069#1253069Comment by Muxa on Naming product editions/versionsMuxa2009-08-11T03:13:13Z2009-08-11T03:13:13Zi would actually argue for term "professional" as that version of the software will have extra features that professionals will use (as opposed to home users)http://stackoverflow.com/questions/724668/sql-server-identity-column-values-start-at-0-instead-of-1/724677#724677Comment by Muxa on SQL server identity column values start at 0 instead of 1Muxa2009-04-07T08:50:29Z2009-04-07T08:50:29ZI've tried this on empty tables and now some tables start from 1 and some from 2.http://stackoverflow.com/questions/514336/simplest-way-to-process-a-list-of-items-in-a-multi-threaded-manner/514356#514356Comment by Muxa on Simplest way to process a list of items in a multi-threaded mannerMuxa2009-02-05T03:14:18Z2009-02-05T03:14:18Zthanks for you input. i've tried what you have suggested and still no luck.http://stackoverflow.com/questions/335970/regex-expression-to-split-string-into-items/336008#336008Comment by Muxa on Regex expression to split string into itemsMuxa2008-12-03T01:42:43Z2008-12-03T01:42:43ZThanks, i tried your example and i hasn't worked initially. Then it turned out that "single line" regex option was causing it not to work. Removing "single line" option solved it.