hi,
can anyone please help me with creating forms in python using the reportlab lib.
i am totally new to this and i would appreciate sample code
thanks
Hello!
I have a datagridview and a combobox which get populated randomly with data. However, the new data is never displayed automatically. Someone mentioned the idea of invalidating the control to force the application to redraw it and thus iterate through the contents and populate the control with the new data.
Does anyone know which is the best method for implementing auto-updating controls in windows forms applications?
help greatly appreciated,
regards.
I there a simple way when using ASP.NET 4.0 routing with Web Formsto produce a route that will act as some kind of wildcard?
It seems to me that within WebForms, you have to specify a route for every page - I am looking for some kind of generic route that can be used where nothing specific is required, perhaps mapping directly from path to path so...
http://somedomain.com/folder1/folder2/page would possibly map to folder1/folder2/page.aspx
Any suggestions?
Thanks
Hi,
I want to apply ckeditor on specific textarea in django admin form not on all the text areas.
Like snippet below will apply ckeditor on every textarea present on django form:
class ProjectAdmin(admin.ModelAdmin):
formfield_overrides =
{models.TextField: {'widget': forms.Textarea(attrs={'class':'ckeditor'})}, }
class Media:
js = ('ckeditor/ckeditor.js',)
but i want it on a specific textarea not on every textarea.
I've got a control that derives from Forms.Control, it handles mouse events and paint events just fine, but I'm having a problem with key events. I need to handle Left arrow and Right arrow, but so far the Tab control that contains my class eats these.
How do I make this control selectable, focusable?
I would like to create a Windows Forms application that when run is only visible once another external window (notepad.exe) is enabled/focused. Any hints, I don't know where to begin.
If my form is running I would like it to popup when Notepad is enabled and disappear when Notepad loses focus.
I'm using Joomla and CK Forms, however, whenever a form is filled out, no e-mail is sent to either the owner of the site nor a copy that form to the person who filled out the form...please help!
I have different instances of an [.NET 3.5] C# win forms application that run on different machines.
All instances use the same SQL 2005 db.
I need to send an alert and to refresh grids [contained in user controls] when another instance of the application changes smth in db.
Which is the best way ?
Thank you very much.
I've got this WPF code which works...
Uri iconUri = new Uri("pack://application:,,,/media/images/VS.ico", UriKind.RelativeOrAbsolute);
this.Icon = BitmapFrame.Create(iconUri);
I'm using a windows forms notifyIcon control in my WPF app, and I now need to assing the Icon to it. How do I get from my WPF icon to a System.Drawing.Icon ?
Hi All
I've just created a little app that programmatically compiles code using the C# Compiler, and it works brilliantly. But, one thing that I need it to do is compile Windows.Forms code. Like, I can create a console app with it, but I can't create a GUI-based form. Here's the link that got me started:
http://support.microsoft.com/kb/304655
Can somebody please help?
Thank you :)
I would like to create a Windows Forms application that when run is only visible once another external window (notepad.exe) is enabled/focused. Any hints, I don't know where to begin.
If my form is running I would like it to popup when Notepad is enabled and disappear when Notepad loses focus.
I need plot a curve for my data , the source is like :
12, 14, 18, 30, ....
I was using Qt Qwt, and need port it to windows forms, are there controls? free of charge?
Hi,
I am working on Windows Forms application , c#
I have three datatables.
I want to save the first table in Sheet1 of an excel , second table in Sheet2 of the same excel and the third in the Sheet3.
The names of these three sheets will remain the same, as Summary,Details and Retailers.
Can anyone please let me know how do I do this.
Regards
Hema
I've been testing the Doctrine migrations in symfony and I finally got them to work, but I noticed that these migrations only update the database. The forms and the model are not updated as I expected...
Is this normal? If it's normal, is there a way to update the model with the changes made to the db?
If my login pages are https, does it matter if "requireSSl" is true in the forms tab of the web config?
Currently I am redirecting pages with IIS to HTTPS. When I set requiressl it seems to cause problems.
Can someone put the two settings in perspective. thanks
I have various php files which data is Posted to (like the password when the user signs in) How can I can I post to these php from vb.net (a desktop application that is Windows Forms, this is not about ASP.net)
thanks
In a Drupal 6 module, the hook_form function is used to generate a create/edit form. How do I create different forms for create and edit instead of using the same form for both?
What is the best free Windows Forms validator control.
I want to use it in a free (and maybe open-source) project.
I know these:
ValidationProvider Control not working in VS2010
DXValidationProvider works only for devexpress controls.
Supervalidator from DevComponents meets my needs but it isn't free. here is a picture of it:
Hi,
I have started to research for a printing component in our windows.forms based project. I want to benefit from your experiences. There are some popular reporting tools in .net world such as crystal report, active reports, xtrareports etc. Could you say advantages and disadvantages of these tools or other tools you suggest?
I am trying to write a pre-qualification programming exam, hopefully using Google Forms... however they seem to be unable to do new-lines in both the questions and the section headers...
My current format is new page for each question, with a "section header" as the main question (because it has a textarea for the "code snippet") and a "multiple choice question" as the ummm... question answer...
Help much appreciated...
First sorry for the english. I've recently found out that the MessageBox from Windows.Forms can be used in a web page, but there's a problem when showing it, it's not modal. Is there a way to make it modal?
Thanks for any help.
Hi,
I use Zend forms in my web application. I wonder where Zend puts
uploded temp file by default ? I can't find it in server tmp dir. For example if
I upload image(1.jpg) via file field, it appears on tmp folder, but as 1.jpg(/tmp/1.jpg). But I need temporary file like /tmp/phpeZApBn. Maybe it is in any other location ?
Any help would be appreciated.
How do we populate\retrieve information from\into multiple forms in same action class in Struts2 ? With ModelDriven approach, action is tied to one form. With ScopedModelDriven interceptor jsp becomes dirty as one has to write model.property to access form properties. Is there a better way of doing it?
I have a two or more forms on my page in a row.
I'm trying to hook submit event like:
$('form',someObj).submit(function(e){
/* Do some stuff with ajax */
return false;
});
But always receive events only from a first (by code) form.
Also used each() function to bind event for each object, same thing..
What's wrong?
Thanks!