Tagged Questions

0
votes
1answer
26 views

Adding Geometry objects data wpf

Just wondering if this is possible in wpf, Say we have a Path object p1 with geometry = g1 (same as p1.Data). Similarly if we have another Path object p2 with geometry = g2 (same as p2.Data). Now if …
0
votes
0answers
21 views

adding a picture in my profile [closed]

how to add a picture to my profile. when i click 'change picture', it moves onto 'Gravatar' page and even though i add a picture there it doesn't effect on my profile page here
0
votes
0answers
29 views

Subsonic: How to add new properties and populate its data using Linq

I extend the Order Class generated by activerecord: public partial class Order { private string _refCustomer; public string RefCustomer { get { return _refCustomer; …
-2
votes
6answers
57 views

JS Vars - Adding

Hi I have two variables, 'a' and 'b' in my javascript, and i want to add them together - i assume this code: var a = 10; var b = 30 var varible = a + b; This, puts the two numbers next to …
0
votes
2answers
43 views

Inserting items in a list that is frequently insertion sorted

I have a list that is frequently insertion sorted. Is there a good position (other than the end) for adding to this list to minimize the work that the insertion sort has to do?
1
vote
2answers
56 views

SiteCore Error: AddFromTemplate - Add access required

Hello, I am trying to add an image item to the content tree - but I get an access denied error at the following point: item.Add("New Node1"... The complete code of my method is: …
0
votes
3answers
44 views

Adding Control based on info in txt file

Following code, credit: Guffa. Hello All, I'm trying to add controls to a Form at runtime based on the information found in a Plain Text File. The structure? of the text file is always the same, …
10
votes
2answers
347 views

Why can’t you add attributes to object in python?

(Written in Python shell) >>> o = object() >>> o.test = 1 Traceback (most recent call last): File "<pyshell#45>", line 1, in <module> o.test = 1 AttributeError: …
0
votes
1answer
120 views

jquery : adding non-accordion element by button klick

Greetings, I got the following problem: On this page (it's /not/ mine, I'm taking it just as an example) you can see under non-accordion (standard expandable menu) a ,as the name tells, a …
0
votes
1answer
73 views

Shopping cart without breaking design

I have a fully designed website, but have now realized a need for a shopping cart. Can anyone recommend a shopping cart that lets you add elements to your pages, rather than design a template for? I …
3
votes
3answers
417 views

In PHP, how do I add to a zero-padded numeric string and preserve the zero padding?

If I have a variable in PHP containing 0001 and I add 1 to it, the result is 2 instead of 0002. How do I solve this problem?
2
votes
3answers
972 views

Adding custom class objects to listbox in c#

i have a class which looks like this public class Process_Items { String Process_Name; int Process_ID; //String Process_Title; public string ProcessName { get { return …
0
votes
1answer
320 views

creating elements in app.config via code

Hi, I have the following section in my app.config <mySettings> <addins> <addin fullname="aaaaa" path="ddddd" version="ccccc" …
1
vote
2answers
58 views

In ASP.net is it better to use Server Controls within the ASPX page or create them dynamically in the code behind?

I generally prefer to add controls dynamically, like table and generic html controls, to the ASPX page, rather than add them in the ASPX page and set the properties dynamically. Which approach is …