Latest developer linksBookmark and Share
 
HomeThis WeekTop MonthTop AlltimeSearchRegisterFAQ
  
 
Submit Your Link
Please login to submit your Link
 

Barcode Types

Posted: Jan/08/2011   By: nikhil   Points:15   Category: .NET  - ASP.Net    Views:60   Vote Up (0)   Vote Down (0)    

Hi all,

Does anyone know if you're able to change the type of Barcode generated by SharePoint.  I beleive that it uses Code39 by default & I need to switch it to 128.

Thanks

Stu

View Complete Post


Comments:
Be the first to comment this post.
 
Post Comment
Please login to post your comment
More Related Resources

How can i create Barcode for coupon???

  

 Hi all,

I am creating a web site that provide coupon for it's registered member. I want to set up barcoad for each coupon that the member printed. How can i create barcode and Print them in a html page that is used as my coupon page.

Is anybody can give me solution for that???? Please help me, its argent.

Bye

With regards

Sadequzzaman Monoj

Bangladesh


SharePoint - WIKI --- Allow Management of Content Types

  
Can anyone please tell me if the is a method for a Site Admin to "Allow management of Content Types" on a wiki like you would do with a Document Library or a list?

I've built this enormous content type structure only to discover that I cannot use it on the wiki like i would with a document library.  I have a massive Wiki and i'm feeling a bit silly to have only discovered this now --- is there ANYTHING that I can do, to introduce my content types that i've created to the wiki?

Thank you

Moving Document Libraries with Content Types & Metadata

  

Hello All,

Was hoping someone could give me some guidance on this issue.  I have been working on a document management strategy for my department's sharepoint site which consists of numerous document libraries configured to a number of content types..  Lots of metadata and views.. etc

Recently, the IT department in our organization has started work on a green slate installation of Sharepoint.. new server, fresh install, master pages, site hierarchy, the works..  

Guess my question is, how hard is it going to be to migrate my document libraries  while keeping my metadata and content types intact?  I probably have about 21 content types and almost 10 Gigs of data to transfer over... not sure what the best approach is having all this content migrated over to the new portal.

I have done some research and either only find articles on moving content types or moving document libraries, but no articles on moving both and having the content types map to the document libraries while keeping the metadata.

Any help or guidance would be appreciated.

Greg


external content types DB2

  

Hello,

how can i connect over external content types in SharePoint Designer 2010 to a DB2 database?

Thanks for your answer.


List of types and generic

  

Hi all,

I'm trying a generic part of code and i dont know if possible do want I want. I'm using WPF and unity. What i'm trying to do is a class that can receive a list of entities and stance this entities as a type in a generic class. Each stance will go in a new tab.

Firs of all I'm tring doing a list of types. I have some entities and i want do a list of entities that i would like to pass to my class like that:

List list = new List()

list.add(Broker)

list.add(Security)

list.add(Depository)

 

What I want is pass this list to a class that will instance each class like that.

foreach (Entity ent in list)

{

     new MaintenanceViewModel<typeof(ent)>(unityContainer, regionManager)

}

I know this is wrong but maybe someone can help me with that.

qtl { position: absolute; border: 1px solid #cccccc; -moz-border-radius: 5px; opacity: 0.2; line-height: 100%; z-index: 999; direction: ltr; } qtl:hover,qtl.open { opacity: 1; } qtl,qtlbar { height: 22px; } qtlbar { display: block; width: 100%; background-color: #cccccc; cursor: move; } qtlbar img { border: 0; padding: 3px; height: 16px; width: 16px; cursor: pointer; } qtlbar img:hover { background-color: #aaaaff; } qtl>iframe { border: 0; height: 0; width: 0; } qtl.open { height: auto; } qtl.open>iframe { height: 200px; width: 300px; }

Error: Types don't match between the anchor and the recursive part in column "EST" of recursive query "CTE3".

  

Hi,

DECLARE @SID	VARCHAR(10)
SET		@SID = '2301001001'

CREATE TABLE #TEMP
(
	SID		VARCHAR(10),
	BID		VARCHAR(10),
	PID		VARCHAR(10),
	DT		DATETIME,
	EST		VARCHAR(8000)
)

INSERT INTO #TEMP VALUES ('2301001001', 'Hour', 's21', '2005-01-01 00:00:00.000', 'A')
INSERT INTO #TEMP VALUES ('2301001001', 'Hour', 's21', '2005-01-01 00:00:00.000', 'D')
INSERT INTO #TEMP VALUES ('2301001001', 'Hour', 's21', '2005-01-01 00:00:00.000', 'Dh')
INSERT INTO #TEMP VALUES ('2301001001', 'Hour', 's22', '2005-01-01 00:00:00.000', 'A')
INSERT INTO #TEMP VALUES ('2301001001', 'Hour', 's22', '2005-01-01 00:00:00.000', 'D')
INSERT INTO #TEMP VALUES ('2301001001', 'Hour', 's22', '2005-01-01 00:00:00.000', 'Dh')
INSERT INTO #TEMP VALUES ('2301001001', 'Min', 's21', '2006-01-01 00:00:00.000', 'A')
INSERT INTO #TEMP VALUES ('2301001001', 'Min', 's21', '2006-01-01 00:00:00.000', 'D')
INSERT INTO #TEMP VALUES ('2301001001', 'Min', 's21', '2006-01-01 00:00:00.000', 'Dh')
INSERT INTO #TEMP VALUES ('2301001001', 'Min', 's22', '2006-01-01 00:00:00.000', 'A')
INSERT INTO #TEMP VALUES ('2301001001', 'Min', 's22', '2006-01-01 00:0 

MSSQL User Defined Types

  

Hello, everyone!

I have a class:

  [Serializable]
  [Microsoft.SqlServer.Server.SqlUserDefinedTypeAttribute(Microsoft.SqlServer.Server.Format.UserDefined,
    MaxByteSize = 8000)]
  public class CriterionTemplate : IBinarySerialize, INullable 
  {
    public static readonly string TABLE_PREFIX = "TEMPLATE_";
    
    // IBinarySerialize
    public void Write(System.IO.BinaryWriter w)
    {
      w.Write(this.ToString());
    }

    // IBinarySerialize
    public void Read(System.IO.BinaryReader r)
    {
      try
      {                
        string str = r.ReadString();
        CriterionTemplate tmp = CriterionTemplate.Parse(str);
        this._CriterionList = tmp._CriterionList;
        this._Name = tmp._Name;
        this._Rule = tmp._Rule;
        this._Version = tmp._Version;
      }
      catch (System.Exception e)
      {
      }
      finally
      {

      }
    }

    // ???
    private bool ValidateTemplate()
    {
      return true;
    }

    private bool is_Null;
    public bool IsNull
    {
      get
      {
        return (is_Null);
      }
    }

    public static CriterionTemplate Null
    {
      get
      {
        CriterionTemplate template = new CriterionTemplate();
        template.is_Null = true;
        return template;
      }
    }
    
    // ???????? ???????
    [XmlElement("Name", typeof(string))]
    private string _Name = "";
    public string Name
    {
      get { return _Name; }
      set { _Name = value; }
    }
    
    private List<Criterion> _CriterionList = new List<Criterion>();
    
    [XmlElement("CriterionRange", typeof(CriterionRange))]
    [XmlElement("CriterionString", typeof(CriterionString))]
    [XmlElement("CriterionBool", typeof(CriterionBool))]
    public List<Criterion> CriterionList
    {
      get { return _CriterionList; }
    }
        
    // ???????? ????????
    public void AddCriterion(Criterion criterion)
    {
      foreach (Criterion cr in _CriterionList)
        if (cr.Name == criterion.Name)
          throw new Exception("Cannot add new criterion to list : criterion with the same name already exists!");
      this._CriterionList.Add(criterion);
    }

    // ??????? ???????? ?? ??????
    public void RemoveCriterion(Criterion criterion)
    {
      this._CriterionList.Remove(criterion);
    }

    public Criterion GetCriterion(int index)
    {
      if ((index >= 0) && (index < _CriterionList.Count))
        return _CriterionList[index];
      else return null;
    }

    [XmlElement("Version", typeof(int))]
    private int _Version = 0;
    public int Version
    {
      get { return _Version; }
      set { _Version = value; }
    }

    [XmlElement("Rule", typeof(Enum))]
    private RuleType _Rule;
    public RuleType Rule
    {
      get { return _Rule; }
      set { _Rule = value; }
    }

    public string RuleToStr
    {
      get { return _Rule.ToString(); }
    }
    
    // ?????????? ??????? ? ?????????? ????
    public override string ToString()
    {
      if (this.Name == null)
        
                          

Clean up of Content Types and Custom List on feature deactivate

  

Hi everybody,

I have created a feature that creates a couple of Content Types and Custom List instance. Everything is being created correctly and works as expected, but my problem is that those Content Types and Custom List instance are not being removed when the feature is being deactivated. Now come the questions...


- Is that normal; I mean feature deactivate does not remove Content Types and Custom List?

- What should I do to make nice clean up of those (I am definitely not looking for a custom code solution like writing code in FeatureDeactivating feature receiver; that is always the option, but there should be an easier way of doing that)?


Some background info:
I actually needed to create deployment solution with couple and to take the lists and content types I used “save site as template”, afterwards imported wsp into VS and removed everything except those Content Types and Custom List.

Thanks in advance!

Tofig


Imported Workflow project does not compile "error 348: Compilation failed. Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information."

  

Original workflow project was compiled on 32 bit machine. I exported it to VS.Net 2010 and it fails to compile. Has anybody seen this error?

-Stan

 


What types of sessions do SessionMode values affect?

  
hi

I borrowed some of the terminology ( S_Context session) from the following thread:

http://social.msdn.microsoft.com/Forums/en/wcf/thread/849d5331-0fe5-4453-9ea0-4fa54a3f1d67

a) SessionMode specifies whether or not the contract requires a sessionful binding. Bindings can support several types of sessions ( SSL session, Tcp/IP-based session, S_Context type of sessions ), so which types of sessions do SessionMode values affect?

b) If SessionMode is set to NotAllowed , how does that affect SSL session?

Thank you


 
Categories:
.NET
Java
PHP
C/C++/VC++
HTML/XML
SAP
MainFrames
Data Warehousing
Testing
MySQL
SQL Server
Oracle
Javascript/VB Script
Others
Login
 
 
 
 
 Forgot password
 Contact Us   Terms Of use   Share your knowledge