1
vote
2answers
41 views
Set or change Attribute’s properties or fields at runtime in C#. Possible?
I believe there is no human way to change any attribute or field inside an Attribute apart from doing it in the constructor. That is, short of redesigning and recompiling Visual Studio yourself. There …
0
votes
4answers
47 views
SharePoint send an email to users specified in a Field
I have a SharePoint list of Issues and have set a column (called Alert) to a “Person or Group” (allowing multiple names).
I would like the system to send an email to all the users listed in the …
0
votes
3answers
17 views
Class-behaviour with private fields
I encoutered a somewhat (at least for me) strange behaviour in a library I'm building;
I have this method:
public class Lib
{
private string field = "field";
public string Field
{
get
{
…
0
votes
1answer
14 views
Update Array field in progress DB using ODBC
Dear All:
I access the progress DB using ODBC in my C# program,
and I need to update some fields,which are array data type.
so how can I write my sql statement to do such things?
I read some …
2
votes
2answers
1k views
Change the width of form elements created with ModelForm in Django
How can i change the width of a textarea form element if i used ModelForm to create it?
Here is my product class:
class ProductForm(ModelForm):
long_desc = forms.CharField(widget=forms.Textarea)
…
0
votes
1answer
28 views
Singluar data-keys between application and database?
Is there a paradigm in which I can change a data-key name in one place and one place only, and have it properly be dealt with by both the application and database?
I have resorted most recently to …
0
votes
1answer
30 views
Drupal CCK field not visible to anonymous users
I added a field to a nodetype using CCK, but when I try to view the node as an anonymous user the field is not visible. I can see it when I am logged in with my admin account.
What could be the …
1
vote
3answers
70 views
Static fields question
im trying to understand the get and set properties for fields, and run in to this issue, can somone explaine to me why i had to make the int X field Static to make this work?
using System;
namespace …
-1
votes
2answers
104 views
Problem with protected fields in base class in c++
I have a base class, say BassClass, with some fields, which I made them protected, and some pure virtual functions. Then the derived class, say DerivedClass, like class DerivedClass : public …
0
votes
0answers
3 views
AspectJ, getting annotated fields for use with advice
I want to use all the fields marked with an annotation in a class for use with some generic advice. What are some ways to go about doing that? This is a follow-up to my previous question.
Some of …
0
votes
1answer
25 views
Why do I have to do ldarg.0 before calling a field in MSIL?
I want to call a function, with as parameters a string and an Int32. The string is just a literal, the Int32 should be a field. So I thought it should be something like:
.method public hidebysig …
0
votes
1answer
36 views
ASP.NET GridView: How to Control the Format of a Column in Edit Mode?
Given the following GridView:
<asp:GridView runat="server" ID="GridMenuItemAttributes" DataKeyNames="MenuItemAttributeID" AutoGenerateColumns="false"
…
0
votes
0answers
18 views
Web Part to Field control
Need to convert a web part to a field control on a Sharepoint page.
Part of the problem is to migrate all the content on existing pages that use the web part to the corresponding field control.
Any …
0
votes
2answers
73 views
insert text field from MSSQL to MYSQL failed
I'm trying to income data from a MSSQL (2005) table to MYSQL (5) table, using SSIS, all fields insert correctly. Except one field that his type is TEXT in MSSQL to MYSQL TEXT field, and always this …
1
vote
1answer
32 views
why search field in not displayed at the Iphone MKMapView?
Hi,
In My application i am using MKMapview to display the googleMap,but it is not displaying the search field in the Map.
I have downloaded the Maps application from the Appstore in my real device …
