active questions tagged field - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T20:25:07Z http://stackoverflow.com/feeds/tag/field http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1817966/drupal-cck-field-not-visible-to-anonymous-users 0 Drupal CCK field not visible to anonymous users Fragsworth 2009-11-30T05:21:13Z 2009-11-30T05:23:58Z <p>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.</p> <p>What could be the problem?</p> http://stackoverflow.com/questions/1815628/static-fields-question 1 Static fields question Darkmage 2009-11-29T14:12:30Z 2009-11-29T14:21:49Z <p>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?</p> <pre><code>using System; namespace ConsoleApplication1 { class Program { public static int X = 30; public static void Main() { var cX = new testme(); cX.intX = 12; Console.WriteLine(cX.intX); cX.intX = X; Console.WriteLine(cX.intX); Console.ReadKey(); } } class testme { public int intX { get; set; } } } </code></pre> http://stackoverflow.com/questions/1813671/problem-with-protected-fields-in-base-class-in-c -1 Problem with protected fields in base class in c++ derrdji 2009-11-28T20:18:30Z 2009-11-28T22:21:09Z <p>I have a base class, say <code>BassClass</code>, with some fields, which I made them protected, and some pure virtual functions. Then the derived class, say <code>DerivedClass</code>, like <code>class DerivedClass : public BassClass</code>. Shouldn't DerivedClass inherit the protected fields from BassClass? When I tried to compile the DerivedClass, the compiler complains that DerivedClass does NOT have any of those fields, what is wrong here? thanks</p> http://stackoverflow.com/questions/1801229/aspectj-getting-annotated-fields-for-use-with-advice 0 AspectJ, getting annotated fields for use with advice Carl 2009-11-26T02:24:18Z 2009-11-26T02:24:18Z <p>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 <a href="http://stackoverflow.com/questions/1791529/aspectj-using-annotations-to-implement-hashcode">question</a>.</p> <p>Some of what I've read indicates reflection would work - though reflecting seems wasteful, since I plan to use the advice frequently. I could also provide the annotations values based on field names, and then maintain a map from field names to individual field hashcodes which gets used with the generic method and updates whenever the fields mutate; this adds weight to both the code and actual running, though.</p> http://stackoverflow.com/questions/1796875/sharepoint-send-an-email-to-users-specified-in-a-field 0 SharePoint send an email to users specified in a Field Mark Anthony 2009-11-25T13:20:42Z 2009-11-25T15:14:58Z <p>I have a SharePoint list of Issues and have set a column (called Alert) to a “Person or Group” (allowing multiple names). </p> <p>I would like the system to send an email to all the users listed in the Alert field, if the respective Issue is modified.</p> <p>How do I set the Workflow to send an email the users as specified by the data in the Alert field (if there is any)? I know how to use the Workflow etc – the problem the “To” part of the Workflow's email.</p> <p>(Sorry if this item has already been tackled – I've searched Stack Overflow and Googled around but could not find an answer)</p> <p>Preferably through SharePoint Designer. i.e. preferably with no Code.</p> <p>Regards.</p> http://stackoverflow.com/questions/1785372/why-do-i-have-to-do-ldarg-0-before-calling-a-field-in-msil 0 Why do I have to do ldarg.0 before calling a field in MSIL? Jan 2009-11-23T19:22:19Z 2009-11-23T19:25:43Z <p>I want to call a function, with as parameters a <code>string</code> and an <code>Int32</code>. The <code>string</code> is just a literal, the <code>Int32</code> should be a <code>field</code>. So I thought it should be something like:</p> <pre><code>.method public hidebysig instance string TestVoid() cil managed { .maxstack 1 .locals init ( [0] string CS$1$0000) L_0000: nop L_0001: ldstr "myString" L_0006: ldfld int32 FirstNamespace.FirstClass::ByteField L_000b: call string [Class1]Class1.TestClass::Functie&lt;int32&gt;(string, int32) L_0010: ret } </code></pre> <p>But this throws the error that this is not valid code. When adding</p> <pre><code>ldarg.0 </code></pre> <p>before <code>ldfld</code> it runs just fine. Why is this, and is this going to get me into trouble when having more fields?</p> http://stackoverflow.com/questions/1764438/asp-net-gridview-how-to-control-the-format-of-a-column-in-edit-mode 0 ASP.NET GridView: How to Control the Format of a Column in Edit Mode? Bob Kaufman 2009-11-19T16:08:08Z 2009-11-20T16:02:26Z <p>Given the following <code>GridView</code>:</p> <pre><code>&lt;asp:GridView runat="server" ID="GridMenuItemAttributes" DataKeyNames="MenuItemAttributeID" AutoGenerateColumns="false" OnRowCommand="GridMenuItemAttributes_RowCommand" DataSourceID="DSMenuItemAttributes" OnRowEditing="GridMenuItemAttributes_RowEditing" &gt; &lt;Columns&gt; &lt;asp:BoundField HeaderText="Description" DataField="DisplayName" /&gt; &lt;asp:BoundField HeaderText="Price" DataField="Price" DataFormatString="{0:F2}" /&gt; &lt;asp:CommandField ShowEditButton="true" ShowDeleteButton="true" EditText="Edit" DeleteText="Delete" /&gt; &lt;/Columns&gt; &lt;/asp:GridView&gt; </code></pre> <p>The <code>Price</code> field correctly formats with two decimal places when viewing a row, but changes to four decimal places when I'm editing a row. I've tried different formats (e.g., "C", "0.00") and attached the following OnRowEditing handler:</p> <pre><code>protected void GridMenuItemAttributes_RowEditing( object sender, GridViewEditEventArgs e ) { int menuItemAttributeID = Convert.ToInt32( GridMenuItemAttributes.DataKeys[ e.NewEditIndex ].Value ); if ( ! String.IsNullOrEmpty( GridMenuItemAttributes.Rows[ e.NewEditIndex ].Cells[ 1 ].Text ) ) { String theValue = GridMenuItemAttributes.Rows[ e.NewEditIndex ].Cells[ 1 ].Text; GridMenuItemAttributes.Rows[ e.NewEditIndex ].Cells[ 1 ].Text = String.Format( "{0:0.00}", Convert.ToDouble( theValue ) ); } } </code></pre> <p>all to no avail. The client insists, and reasonably so, that when editing the cell, the value should be displayed with two decimal places.</p> http://stackoverflow.com/questions/1766957/web-part-to-field-control 0 Web Part to Field control PA 2009-11-19T22:13:20Z 2009-11-19T22:13:20Z <p>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 ideas on how to accomplish this as painlessly as possible?</p> http://stackoverflow.com/questions/1761583/update-array-field-in-progress-db-using-odbc 0 Update Array field in progress DB using ODBC Terry Zeng 2009-11-19T07:46:39Z 2009-11-19T07:56:53Z <p>Dear All:</p> <p>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?</p> <p>I read some progress documentations,in which some methods were mentioned as bellow: update pub.sometable set arrayfield='X;X;X;X;X;X' where condition.... but it only works on the unsubscripted array.well,another problem,what's the difference between unsubscripted arrays and subscripted ones?</p> <p>Any ideas?</p> http://stackoverflow.com/questions/1471466/insert-text-field-from-mssql-to-mysql-failed 0 insert text field from MSSQL to MYSQL failed haim evgi 2009-09-24T12:44:51Z 2009-11-18T18:00:03Z <p>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 field is get NULL !</p> http://stackoverflow.com/questions/1660636/why-search-field-in-not-displayed-at-the-iphone-mkmapview 1 why search field in not displayed at the Iphone MKMapView? Mishal 2009-11-02T11:07:48Z 2009-11-18T12:57:16Z <p>Hi,</p> <p>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 and which is disaplying the seach field in the map.</p> <p>can any body have any solution for displaying the search field in the Existing Map, as i want to search the text into the search field and want to display its content to the Map?</p> <p>Pls provide any solution, which would be appreaciated.</p> <p>Thanks,</p> <p>Mishal Shah</p> http://stackoverflow.com/questions/473601/ms-access-moving-records-into-fields 3 MS Access Moving records into fields Himself 2009-01-23T16:44:18Z 2009-11-17T21:47:07Z <p>I have an ODBC connection to a database I don't own and can't change. What I am looking to do is to make related records merge into one record. The relationship is a 1 to many. </p> <p>I have a student managment system and want to export a call out list which feeds an automated callout service (charged by Call). I want to be able to call a house only once if there are multiple students living there.</p> <p>Desired Call out file structure: </p> <pre><code>PHONE Inst1 Inst2 Inst3 555-5555 John was absent today Jane was absent today Joe was absent today </code></pre> <p>as apposed to existing data:</p> <pre><code>PHONE Inst 555-5555 John was absent today 555-5555 Jane was absent today 555-5555 Joe was absent today </code></pre> <p>Any suggestions?</p> http://stackoverflow.com/questions/1743764/how-can-i-pass-a-user-model-into-a-form-field-django 1 How can I pass a User model into a form field (django)? Bryan 2009-11-16T17:50:32Z 2009-11-16T18:43:19Z <p>Basically, I need to use the User's password hash to encrypt some data via a custom model field. Check out the snippet I used here: <a href="http://bryanhelmig.com/django-encryption/" rel="nofollow">Django Encryption</a>.</p> <p>I tried this:</p> <pre> class MyClass(models.Model): owner = models.ForeignKey(User) product_id = EncryptedCharField(max_length=255, user_field=owner) ................................................................................. def formfield(self, **kwargs): defaults = {'max_length': self.max_length, 'user_field': self.user_field} defaults.update(kwargs) return super(EncryptedCharField, self).formfield(**defaults)) </pre> <p>But when I try to use user_field, I get a ForeignKey instance (of course!): </p> <pre> user_field = kwargs.get('user_field') cipher = user_field.password[:32] </pre> <p>Any help is appreciated!</p> http://stackoverflow.com/questions/1735501/javascript-if-drop-down-selected-then-set-value-of-text-box 0 javascript if drop down selected then set value of text box Melanie 2009-11-14T20:31:22Z 2009-11-16T03:29:45Z <p>Hi I've spent some time searching around for this, but can't seem to get it all worked out.</p> <p>I have a shipping drop down and I want to split off the type of shipping and the amount selected and put them into two separate hidden fields. (I am using text fields at the moment for easier testing)</p> <p>For example- if they choose from the first drop down Overnight Delivery - 14.00 OnChange I want to set the value of my shippingtype to "Overnight Delivery" and my shipping field value to "14.00"</p> <p>I already have the location working (if user selects pickup, a new drop down appears and whatever you select also sets the value of my shippinglocation field)</p> <p>Here's what I have so far...</p> <pre><code>&lt;html&gt; &lt;head&gt; &lt;script type="text/javascript"&gt; function SetShipping (objDropDown) { var objHidden = document.getElementById("shipping"); objHidden.value = objDropDown.value; } function setShippingtype (objDropDown) { var objHidden = document.getElementById("shippingtype"); objHidden.value = objDropDown.value; } function setShippinglocation (objDropDown) { var objHidden = document.getElementById("shippinglocation"); objHidden.value = objDropDown.value; } function showEntry(obj,optionValue) { //hide all entry selections onchange document.getElementById("pickup").style.display="none"; if(obj.value=="pickup") { document.getElementById(optionValue).style.display="inline"; } } &lt;/script&gt; &lt;/head&gt; &lt;body&gt; &lt;form id="myform"&gt; &lt;br /&gt; shippingselectbox &lt;br /&gt; &lt;select onchange="showEntry(this,this.value);setShippingtype(this);" name="shippingselectbox"&gt; &lt;option value=""&gt;Shipping Options&lt;/option&gt; &lt;option value="pickup"&gt;Pickup - no charge&lt;/option&gt; &lt;option value="UPS"&gt;UPS Standard Shipping - 3.00&lt;/option&gt; &lt;option value="Overnight"&gt;Overnight Delivery - 14.00&lt;/option&gt; &lt;/select&gt; &lt;br /&gt; &lt;br /&gt; pickup &lt;span id="pickup" style="display:none;"&gt; &lt;select name="pickup" onchange="setShippinglocation(this)"&gt; &lt;option&gt;Please Choose a Location&lt;/option&gt; &lt;option value="Billings"&gt;Billings, MT&lt;/option&gt; &lt;option value="Livingston"&gt;Livingston, MT&lt;/option&gt; &lt;option value="Miles City"&gt;Miles City, MT&lt;/option&gt; &lt;option value="Cody"&gt;Cody, WY&lt;/option&gt; &lt;option value="Sheridan"&gt;Sheridan, WY&lt;/option&gt; &lt;/select&gt; &lt;/span&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt; shipping (set hidden form tag - shipping amount for paypal)&lt;br /&gt; &lt;input name="shipping" type="text" value=""/&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt; shippingtype (set hidden form tag - variable for paypal to send to Chris)&lt;br /&gt; &lt;input name="shippingtype" type="text" value=""/&gt; &lt;br /&gt; &lt;br /&gt; &lt;br /&gt; shippinglocation (set hidden form tag - variable for paypal to send to Chris)&lt;br /&gt; &lt;input name="shippinglocation" id="shippinglocation" type="text" value=""/&gt; &lt;/form&gt; &lt;/body&gt; &lt;/html&gt; </code></pre> http://stackoverflow.com/questions/1721923/getting-package-level-access-to-a-field-from-outside-the-package 1 Getting package-level access to a field from outside the package? hal10001 2009-11-12T12:40:44Z 2009-11-12T22:55:44Z <p>I'm using an API that has an abstract class that I wish to extend (in my concrete class) in order to take advantage of some methods within the parent. Unfortunately, the programmer of that API class decided with one field in particular to give it package-level access with no public setter. The field value is instead set within a method. Is there a common "bridge pattern" so that I can get/set that field appropriately? This is not only important for my functionality, but for testing as well (since I will need to mock out the value that is set in that field in my test). Thanks!</p> http://stackoverflow.com/questions/1715144/java-accessing-transient-object-fields-inside-class 0 Java: accessing transient object fields inside class mschayna 2009-11-11T13:24:19Z 2009-11-11T16:46:48Z <p>Accessing private transient object fields from any method in class must be controlled with some code. What is the best practice?</p> <pre><code>private transient MyClass object = null; </code></pre> <p>internal get method:</p> <pre><code>private MyClass getObject() { if (object == null) object = new MyClass(); return object; } // use... getObject().someWhat(); </code></pre> <p>or "make sure" method:</p> <pre><code>private void checkObject() { if (object == null) object = new MyClass(); } // use... checkObject(); object.someWhat(); </code></pre> <p>or something clever, more safe or more powerful?</p> http://stackoverflow.com/questions/1670858/drupal-6-jquery-ajax-update-a-field 2 Drupal 6/jQuery Ajax update a field Mark 2009-11-03T23:37:08Z 2009-11-08T10:31:31Z <p>I'm on a different path on the same site, and I need to allow the user to change the contents of a field on a node s/he wrote in a different location. I have the nodeid and the field name, and ids, etc np.</p> <p>I don't believe this is too difficult, but a tutorial or an explanation would be wonderful.</p> <p>Thanks.</p> <p>Edit: Thank you anschauung for asking, so to clarify:</p> <p>It is a CCK textarea. As for why, well there's a central node type, with many linked node reference nodes. From the edit page of any node which references the central node, it needs to be able to edit and save a field of the central node. So that's my usecase.</p> <p>Thanks again.</p> <p>Thanks you so much googletorp, I really really appreciate your help.</p> <p>Here's what I have so far:</p> <p><strong>For step one:</strong></p> <pre><code>function update_main_field_menu() { $items = array(); $items['update_main_field/%'] = array( 'title' =&gt; 'Update Main Field', 'page callback' =&gt; 'post_to_main_node', 'page arguments' =&gt; 1, 'type' =&gt; MENU_CALLBACK ); return $items; } </code></pre> <p><strong>Step two:</strong></p> <pre><code>function post_to_main_node(){ // Sorry, I'm totally lost. What do I put here? } </code></pre> <p>Also you mentioned this:</p> <blockquote> <p>Either in hook_form_alter, hook_nodeapi or some other hook that is invoked when the node form is generated. You should investigate which is best in your situation.</p> </blockquote> <p>How do I generate the node form?</p> <p><strong>Step three:</strong></p> <pre><code>function modulename_form_mainct???_node_form_alter (&amp;$form, &amp;$form_state) { // I'm not sure about which form I'm doing node form alter on. If I do it to the mainct, wouldn't that alter the regular edit page the user is viewing? I only want to load the js for the ajax submission. Is there a update_main_field node form? drupal_add_js(drupal_get_path('module', 'modulename') ."/updateField.js"); } </code></pre> <p>Also what is in between the function in step 2 and getting the node form in step 3?</p> <p><strong>Step 4:</strong> I think I understand mostly, though because of other things I can't test it yet. :)</p> <p>I really want to learn how to do this in drupal, but it would be swell if you could increase the dumminess level of your language a bit. :D Thank you so much once again.</p> <p><hr></p> <h2><strong>Edit again:</strong></h2> <p>I actually tried putting access arguments yesterday, but for some reason it did not work. :( But now it does! Yay you have magic.</p> <p>Now, when I trigger the post like this:</p> <pre><code>Drupal.behaviors.ajax_update_field = function (context) { $("#button").click(function(){ var url = $("#edit-field-reference-0-nid-nid").val().replace(/.*?\[nid:(\d+)?]/ig, "$1"); url = "/update_main_field/"+url; // The data is just some silly test thing $.post(url, {data: $("#edit-field-reference-0-nid-nid-wrapper label").text()}, function(value) { // Here you can write your js to handle a response to the user, // or if something went wrong an error message. // value = response data from drupal alert(value); }); }); } </code></pre> <p>I see a post to the url with the correct data. Which is good. But no response. The alert is empty.</p> <p>Also a new blank... something has been created. There's nothing in it, but I can see it in views when filtered for nodes. It has no title, any fields, etc. Just a post date.</p> <p>The node that I want to be updated isn't updated.</p> <p>So that leads me to think that the step two is probably somewhat incorrect. I have a few questions about it.</p> <pre><code>function post_to_main_node(){ // Is this sufficient to load the node? nid doesn't have to be set as an arg for the function? $node = node_load($_POST['nid']); // Is the field set like this? 'field_library' is the 'machine name' of the field. This is what's needed right? $node-&gt;field_library = $_POST['data']; node_save($node); } </code></pre> <p>Thank you so much once again.</p> http://stackoverflow.com/questions/1676658/how-to-remove-a-field-from-a-wxstatusbar 0 How to Remove a Field from a wxStatusBar kkeogh 2009-11-04T21:10:39Z 2009-11-05T13:59:20Z <p>This may be obvious, but I'm missing it. I'm working in wxpython.</p> <p>I have a wxStatusBar with several fields (these fields have text as well as other widgets). I need to be able to add and remove these fields throughout the app session. Is there a way to remove fields from a statusbar, or do I just have to redraw it? I think to do the latter I could use the SetFields() function, but I'm not quite sure what type of list to give SetFields()...the only example I've seen gives it a list of strings, but I have more than strings to pass it.</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/1662005/create-aperture-depth-of-field-affect 0 Create Aperture / depth of field affect Scott Bartholomew 2009-11-02T15:36:20Z 2009-11-02T15:45:36Z <p>How can I create a function that will replicate the affects of different aperture settings. I want the user to be able to click on different 'focal points' of their picture and see how the aperture/depth of field would change depending on which focal point is in focus.</p> <p>Also I was curious if anyone knows how to create a slider bar that would create the blurring affect of a low aperture.</p> http://stackoverflow.com/questions/1654809/copy-table-and-merge-field 0 Copy Table and Merge field RBC 2009-10-31T16:08:36Z 2009-11-01T08:14:18Z <p>Could you please help me with present SQL?</p> <p>I am copy 1 table to another table and the same time merge the fields.</p> <p>I get an error on the +</p> <pre><code>INSERT INTO [dSCHEMA].[TABLE_COPY_TO] ( [FIELD_A], [FIELD_B], [FIELD_A] + '-' + [FIELD_B] ) SELECT [FIELD_A] ,[FIELD_B] FROM [dSCHEMA].[TABLE_COPY_FROM] </code></pre> http://stackoverflow.com/questions/1632741/sharepoint-list-items-with-lookup-fields-moving-copying-to-different-site-colle 0 SharePoint List Items with Lookup Fields - moving/copying to different site collection Durga 2009-10-27T18:21:21Z 2009-10-28T19:02:28Z <p>Here is the scenario. Our SharePoint custom job archives list items (based on ceratin crteria) and copies/moves the items to a different site collection. In this scenario, if the list item has some lookup fields, how do preserve these when I copy/mpve to different site collection?.</p> <p>Thanks, Durga</p> http://stackoverflow.com/questions/1429216/sql-query-to-get-duplicate-record-counts-based-on-other-factors 0 SQL query to get duplicate record counts based on other factors mattgcon 2009-09-15T19:36:14Z 2009-10-28T17:18:22Z <p>I have a table (participants) which has multiple columns that could all be distinct. Two columns that are of special interest in this query are the userID and the programID I have a two part inquery here.</p> <ol> <li>I want to be able to acquire the list of all userIDs that appear more than once in this table. How do I go about doing it?</li> <li><p>I want to be able to acquire the count of all programID's where the same userID appears in multiple programIDs. (I.E. count of programs where same userID appears in 2 programs, count of programs where same USErID appears in 3 programs, etc...) For Example:</p> <pre><code> programID: prog1 userID: uid1 userID: uid3 userID: uid12 programID: prog2 userID: uid3 userID: uid5 userID: uid14 userID: uid27 programID: prog3 userID: uid3 userID: uid7 userID: uid14 userID: uid30 programID: prog4 userID: uid1 </code></pre> <p>Expected Results: userID count = 2; programs = 3 userID count = 3; programs = 3</p></li> </ol> <p>Can anyone please help me with this.</p> <p>my current code for question 1 is:</p> <pre><code> SELECT WPP.USERID, WPI.EMAIL, WPI.FIRSTNAME, WPI.LASTNAME, WPI.INSTITUTION FROM WEBPROGRAMPARTICIPANTS WPP INNER JOIN WEBPERSONALINFO WPI ON WPP.USERID = WPI.USERID INNER JOIN WEBPROGRAMS WP ON WPP.PROGRAMCODE = WP.PROGRAMCODE WHERE WP.PROGRAMTYPE IN ('1','2','3','4','5','6', '9', '10') GROUP BY WPP.USERID, WPI.EMAIL, WPI.FIRSTNAME, WPI.LASTNAME, WPI.INSTITUTION HAVING COUNT(WPP.USERID) &gt; 1 ORDER BY WPI.EMAIL </code></pre> http://stackoverflow.com/questions/1630492/gridview-button-field-confirmation-dialog 0 GridView button field confirmation dialog Rookian 2009-10-27T12:30:47Z 2009-10-27T12:30:47Z <p>Hi!</p> <p>I have a Gridview with a button field for deleting a row. I don't want to use TemplateFields because this is not possible when I set EnableSortingAndPagingCallbacks to true. Unfortunately there are no events for a button field. ASP.NET automatically registrate a OnClick postback function. onclick="javascript:__doPostBack('ctl00$ContentPlaceHolder$gv_data','DeleteCmd$0')" But now I am unable to ask the user to be sure that he really wants to delete the item.</p> <p>How Can I add a confirmation dialog for a buttonfield? Can JQuery help me?</p> <p>Thanks in advance!</p> http://stackoverflow.com/questions/1554361/mantis-add-version-field 1 Mantis - Add version field Adrian 2009-10-12T12:41:33Z 2009-10-27T11:26:23Z <p>Is it possible to have a version number for each defect/issue raised in <a href="http://www.mantisbt.org" rel="nofollow">Mantis</a> and track its value during the lifetime of the defect?</p> <p>e.g v0.1 - Issue reported v0.2 - Issue assigned v0.5 - Issue resolved v0.6 - Issue closed</p> <p>I have never used custom fields in Mantis - can they be employed for such a purpose?</p> <p>UPDATE:</p> <p>In the meantime, I found these references:</p> <ol> <li><a href="http://manual.mantisbt.org/manual.customizing.mantis.custom.fields.php" rel="nofollow">Custom Fields</a></li> <li><a href="http://manual.mantisbt.org/manual.page.descriptions.system.management.pages.manage.custom.fields.php" rel="nofollow">Manage Custom Fields</a></li> </ol> http://stackoverflow.com/questions/1610357/i-have-a-site-where-i-will-be-manually-changing-street-addresses-i-want-to-incl 0 I have a site where I will be manually changing street addresses. I want to include a map link but I want it to update itself automatically when I change addresses... acegibson 2009-10-22T22:28:21Z 2009-10-22T23:04:02Z <p>I have a site where I will be manually changing street addresses. I want to include a map link but I want it to update itself automatically when I change addresses...</p> <p>Also, I'd like the link to send the address field to google maps or mapquest and return with that info in a small popup window that features the map. What's the best way to do this?</p> <p>Thank you.</p> http://stackoverflow.com/questions/1599670/storing-multi-choice-field-into-in-sql-server-2008 0 Storing Multi Choice Field into in SQL Server 2008 Mitch 2009-10-21T09:20:44Z 2009-10-21T09:27:11Z <p>I'm writing an app in dotnet, and using a dropdown checkbox.</p> <p>I'm not sure what the best practice is for storing this info in the db.</p> <p>Currently I'm writing back a comma delimited string to an SP in SQL 2008 ie "apple, banana, pear", storing this in a nvarchar(MAX) and then splitting this in the SP into another table holding the ID and the Type ie</p> <p>ID Type<br> 17 apple<br> 17 banana<br> 17 pear<br></p> <p>Is this overkill, or the correct approach?</p> http://stackoverflow.com/questions/1575986/why-cant-my-c-code-update-a-database-field -4 Why can't my C# code update a database field? [closed] Hari 2009-10-16T01:10:39Z 2009-10-16T05:49:12Z <p>I have, in a table, in a database, a column defined as a 40 byte(varchar)</p> <p>But when I enter 40 byte chars in a textbox, I can't update the data in that column!</p> <p>The update works for, say, <code>"ajhjjsdhal"</code> (10 characters)... </p> <p>...but fails for <code>"adjhksdakhddhalshjhadhajhahda"</code> (29 characters)!</p> http://stackoverflow.com/questions/1576198/c-string-within-a-string-issue 3 C# - String within a string issue? Nate Shoffner 2009-10-16T05:17:47Z 2009-10-16T05:28:30Z <p>I am not sure what exactly the issue is here. I am working with 2 strings and I keeping getting the error "A field initializer cannot reference the non-static field, method, or property 'Captcha.Capture.CaptureTime'".</p> <p>Here's a snippet from the code:</p> <pre><code>string CaptureTime = DateTime.Now.Month.ToString() + "-" + DateTime.Now.Day.ToString() + "-" + DateTime.Now.Year.ToString() + "-" + DateTime.Now.Hour.ToString() + DateTime.Now.Minute.ToString() + DateTime.Now.Second.ToString(); string SaveFormat = Properties.Settings.Default.SaveFolder + "Screenshot (" + CaptureTime + ")." + Properties.Settings.Default.ImageFormat; </code></pre> <p>I won't go into detail as to why I am using the strings in this particular way. Everything works fine. I'm guessing it has something to do with a string being within another string? It might be completely obvious but I really have no clue. Any ideas?</p> http://stackoverflow.com/questions/39663/what-is-the-best-way-to-do-bit-field-manipulation-in-python 8 What is the best way to do Bit Field manipulation in Python? ZebZiggle 2008-09-02T14:28:40Z 2009-10-11T10:01:04Z <p>I'm reading some MPEG Transport Stream protocol over UDP and it has some funky bitfields in it (length 13 for example). I'm using the "struct" library to do the broad unpacking, but is there a simple way to say "Grab the next 13 bits" rather than have to hand-tweak the bit manipulation? I'd like something like the way C does bit fields (without having to revert to C).</p> <p>Suggestions?</p> http://stackoverflow.com/questions/935207/how-to-populate-field-descriptions-in-ms-access 1 How to populate field descriptions in MS Access Dave Nicks 2009-06-01T15:02:53Z 2009-10-07T22:00:02Z <p>When linking to an external data source via ODBC (especially an AS/400), I often run into cryptic field names on the other side, where a data dictionary is not available. In the rare event that I'm able to get the field descriptions from the other db, I would like to be able to import them all at once, rather than copy/paste each description into the table design form one at a time.</p> <p>I wasn't able to find this in the system tables, so I don't know where this metadata is stored. Any ideas on where it is, and whether it can be updated in batch?</p> <p>Update: I managed to read the schema using the OpenSchema method (see code below), but this returns a read-only dataset, making it impossible for me to update the descriptions.</p> <pre><code>Function UpdateFieldDescriptions() Dim cn As New ADODB.Connection Dim rs As ADODB.Recordset Dim rs2 As Recordset Dim strSQL As String Dim strDesc As String Set cn = CurrentProject.Connection Set rs = cn.OpenSchema(adSchemaColumns) While Not rs.EOF If Left(rs!table_name, 4) &lt;&gt; "MSys" Then Debug.Print rs!table_name, rs!column_name, rs!Description strSQL = "SELECT Description " &amp; _ "FROM tblColumnDescriptions a " &amp; _ "WHERE a.Name = """ &amp; rs!table_name &amp; """ AND " &amp; _ "a.Column = """ &amp; rs!column_name &amp; """;" Set rs2 = CurrentDb.OpenRecordset(strSQL) While Not rs2.EOF strDesc = rs2.Fields(0) rs!Description = strDesc ' &lt;---This generates an error Wend End If rs.MoveNext Wend rs.Update rs.Close Set rs = Nothing Set rs2 = Nothing Set cn = Nothing End Function </code></pre>