QR Code creator?

Who knows how to print QR Code barcodes in ASP.NET? I want to encode the name of our company, telephone & mobile number, address, etc. if it is possible, please send me some code. Thx a lot!

See the work by Joel Geraci:
http://blog.practicalpdf.com/2011/11/introducing-the-qr-code-link-generator-for-acrobat/
http://www.practicalpdf.com/blog/?page_id=121
You will have to program ASP.Net to add the code and insert the SWF file.

Similar Messages

  • Qr code idea

    Hi , i have an idea for a Qr Code, i was wondering can Qr codes be used to download images and videos? 2nd  can a Qr code be used to down load a image of a business card? if so how would that be created? 3rd. can it be used to down load a portfolio gallery ? and last can you put bussienss card in a qr code and then have more qr codes on the downloadable bussiness card? also can you do something like put a list inside of a qr code? like example
    1. portrait gallery
    2 video gallery
    3 facebook link
    and each have there own small qr code in them?

    okay i can see in my head how it would work. so i will upload my image of my business card that i make in Illustrator cc upload it to adobe Bussiness Catalyst partner plan. under the digial download section. from there get the link as you said  and copy and past it into the url line in the QR Code creator right?
    yes i forgot to menioned i am adobe bussiness partner. i have a free web site. 
    file manager, so i would make a bussiness card folder and upload the file there. 
    same with pressation web site gallery
    okay i get it.
    thanks

  • How do I access the EC Embedded Controller firmware level with wmi win32?

    Hi
    I have used the Win32 classes to access the Bios level, model, serial and asset number
    The only data I cannot find is the EC firmware level
    I cannot find it in any of the WIN32 classes
    WIN32_BIOS
    WIN32_BASEBOARD etc
    Does anyone know if this accessible through the WIN32 classes?

    Maybe this is what you mean. I just copied the code out of WMI Code Creator. Although I downloaded an MS Word document from this link
    SMBIOS Support in Windows which has information that you may want to read. The first image below is a table from the document. 2nd image and 3rd image are WMI Code Creator launched Console which is displaying info you may want. I don't know what EC firmware
    level is.
    Imports System
    Imports System.Management
    Imports System.Windows.Forms
    Namespace WMISample
    Public Class MyWMIQuery
    Public Overloads Shared Function Main() As Integer
    Try
    Dim searcher As New ManagementObjectSearcher( _
    "root\WMI", _
    "SELECT * FROM MS_SystemInformation")
    For Each queryObj As ManagementObject in searcher.Get()
    Console.WriteLine("-----------------------------------")
    Console.WriteLine("MS_SystemInformation instance")
    Console.WriteLine("-----------------------------------")
    Console.WriteLine("Active: {0}", queryObj("Active"))
    Console.WriteLine("BaseBoardManufacturer: {0}", queryObj("BaseBoardManufacturer"))
    Console.WriteLine("BaseBoardProduct: {0}", queryObj("BaseBoardProduct"))
    Console.WriteLine("BaseBoardVersion: {0}", queryObj("BaseBoardVersion"))
    Console.WriteLine("BiosMajorRelease: {0}", queryObj("BiosMajorRelease"))
    Console.WriteLine("BiosMinorRelease: {0}", queryObj("BiosMinorRelease"))
    Console.WriteLine("BIOSReleaseDate: {0}", queryObj("BIOSReleaseDate"))
    Console.WriteLine("BIOSVendor: {0}", queryObj("BIOSVendor"))
    Console.WriteLine("BIOSVersion: {0}", queryObj("BIOSVersion"))
    Console.WriteLine("ECFirmwareMajorRelease: {0}", queryObj("ECFirmwareMajorRelease"))
    Console.WriteLine("ECFirmwareMinorRelease: {0}", queryObj("ECFirmwareMinorRelease"))
    Console.WriteLine("InstanceName: {0}", queryObj("InstanceName"))
    Console.WriteLine("SystemFamily: {0}", queryObj("SystemFamily"))
    Console.WriteLine("SystemManufacturer: {0}", queryObj("SystemManufacturer"))
    Console.WriteLine("SystemProductName: {0}", queryObj("SystemProductName"))
    Console.WriteLine("SystemSKU: {0}", queryObj("SystemSKU"))
    Console.WriteLine("SystemVersion: {0}", queryObj("SystemVersion"))
    Next
    Catch err As ManagementException
    MessageBox.Show("An error occurred while querying for WMI data: " & err.Message)
    End Try
    End Function
    End Class
    End Namespace
    La vida loca

  • Fetch websites hosted on Remote IIS server using C#

    Hi,
    I want to get all the websites that are hosted on a remote server. I have the Server IP, username and password of the remote server and I need to retrieve all the sites that are hosted on the server. How can I achieve this in C# ?
    Regards,
    Pradeep R

    The easy way is to use WMI to talk with IIS.  Alternatively you can use the IIS API but WMI is easier.  Refer to MSDN for documentation on the IIS WMI Provider.
    Here's some starter
    code in VBScript.  Here's the equivalent via WMI Code Creator.
    using System;
    using System.Management;
    using System.Windows.Forms;
    namespace WMISample
    public class MyWMIQuery
    public static void Main()
    try
    ManagementObjectSearcher searcher =
    new ManagementObjectSearcher("root\\WebAdministration",
    "SELECT * FROM Site");
    foreach (ManagementObject queryObj in searcher.Get())
    Console.WriteLine("-----------------------------------");
    Console.WriteLine("Site instance");
    Console.WriteLine("-----------------------------------");
    Console.WriteLine("Name: {0}", queryObj["Name"]);
    catch (ManagementException e)
    MessageBox.Show("An error occurred while querying for WMI data: " + e.Message);
    Note that WMI must be turned on for the IIS server and the user needs appropriate rights.
    Michael Taylor
    http://blogs.msmvps.com/p3net

  • Setting Bios Settings via WMI

    I wrote a script to change the Ownership Tag on the laptops, desktops, and workstations we have deployed at our site. Sadly it is kind of a mish-mash of models (8470p, 8560p, 8560w, Z420, Z600, ML 110, ML 350, 6000 Pro, 8200 Elite, and several others...a mish-mash). All of the laptops are running Windows 8.1 and all the desktops/workstations are running Windows Server 2012 R2. All the PCs are on a domain, and although I am not a domain admin, I am specifically set as a local admin on all PCs. I am having two issues: 1. I can set the Ownership Tag on my laptop both locally and remotely regardless of what I enter for a BIOS Setup password. The F10 Setup password IS SET on my laptop, and I get prompted for it when I press F10 during the POST. I don't know if it matters, but my laptop's BIOS version is 68ICF Ver. F.50. 2. My script does not work locally or remotely on a z420 (BIOS Ver J61 v03.85) running Server 2012 r2 even when I know I am using the right password. It consistently returns error code 6 (Access Denied). If I remove the BIOS setup password it will work both locally and remotely. I know Windows Firewall is configured to allow remote WMI. Here is my script:If Wscript.Arguments.Count = 2 Then
    strComputer = Wscript.Arguments.Item(0)
    strOwnerTag = Wscript.Arguments.Item(1)
    ' Get BIOS password from user
    Set oPwdCtl = CreateObject("hpPwdCtl.PasswordEdit")
    oPwdCtl.GetPassword _
    "Enter the Computer Setup Password:", strPassword
    Set objSWbemLocator = CreateObject _
    ("WbemScripting.SWbemLocator")
    Set objWMIService = objSWbemLocator.ConnectServer _
    (strComputer, "root\HP\InstrumentedBIOS")
    Set colItems = objWMIService.ExecQuery _
    ("SELECT * FROM HPBIOS_BIOSString", , 48)
    For Each objItem In colItems
    ' strResultMsg = strResultMsg & objItem.Name & _
    ' " : " & objItem.Value & vbCrLf
    If InStr(1, objItem.Name, "Owner") Then
    strName = objItem.Name
    End If
    Next
    ' Obtain an instance of the the class using
    ' a key property value.
    Set objShare = objWMIService.Get _
    ("HPBIOS_BIOSSettingInterface.InstanceName='ACPI\PNP0C14\0_0'")
    ' Obtain an InParameters object specific to the method.
    Set objInParam = _
    objShare.Methods_("SetBIOSSetting").InParameters.SpawnInstance_()
    ' Add the input parameters.
    objInParam.Properties_.Item("Name") = strName
    objInParam.Properties_.Item("Password") = strPassword
    objInParam.Properties_.Item("Value") = strOwnerTag
    ' Execute the method and obtain the return status.
    ' The OutParameters object in objOutParams
    ' is created by the provider.
    Set objOutParams = objWMIService.ExecMethod _
    ("HPBIOS_BIOSSettingInterface.InstanceName='ACPI\PNP0C14\0_0'", _
    "SetBIOSSetting", objInParam)
    ' List OutParams
    strResultMsg = strResultMsg & vbCrLf & "Result: " & _
    objOutParams.Return
    Wscript.Echo strResultMsg
    Else
    'Instruct on the proper use of the script
    Wscript.Echo "Target Hostname and/or Ownership Tag missing!" _
    & vbCrLf & "Usage: SetAssetTag <hostname> <asset tag>"
    End If   So, how do I get this to work on a Z420 running Server 2012 R2 when there is a password set, and NOT work on my laptop when an incorrect password is entered? What have I missed? EDIT:I should note that on some models the Ownership Tag is named "Enter Ownership Tag" while on other models it is simply "Ownership Tag". I suspect there are other variations, and that is why I search for "owner". I am aware that I can use the WQL LIKE operator (eg, SELECT * FROM HPBIOS_BIOSString WHERE name LIKE '%owner%') to find the tag but I was lazy and busy and not thinking...I'll likely edit it later. ____________________________________________________Just to help some others out who may find this thread later: To enable Remote WMI in Windows firewall, you can use this command from a DOS promptnetsh advfirewall firewall set rule group="Windows Management Instrumentation (WMI)" new enable=yes  If you have admin rights on a remote PC, you can use WINRS to run the command on the remote PC (this is a snippet of VB code)"winrs -r:" & strComputer & " netsh advfirewall firewall set rule group=" & chr(34) & "Windows Management Instrumentation (WMI)" & chr(34) & " new enable=yes" For security reasosn you may want to disable Remote WMI when you are done working with the remote machine, so make sure to run that command again but with "enable=no".  Some very helpful tools for working with the HPBIOS WMI stuff are:WMI Explorer 2.0 (https://wmie.codeplex.com/)WMI Code Creator (https://www.microsoft.com/en-us/download/details.aspx?id=8572)HP Client Management InterfaceTechnical White Paper (http://h20331.www2.hp.com/Hpsub/downloads/cmi_whitepaper.pdf) And if you want a nice easy GUI editor for playing with code that is easily transferable to VBScript, I personally like Excel VBA. Just make sure to add a reference to the Microsoft WMI Scripting Library (https://technet.microsoft.com/en-us/library/ee156554.aspx).

    Ok, so I solved problem number 2. It turns out that the Z420 will not accept passwords encoded as keyboard scancodes. Instead they accept passwords encoded as UTF-16. So, if your setup password is abc123, the scancode is "<kbd/>1E302E020304". the utf-16 version of that is...wait for it...."<utf-16/>abc123" tada!! So since I have a mess of models, I'll need to modify my code to either ask the user to re-enter the password so it can be encoded as a scancode, or I can write a function that will convert the utf password that was entered to scancodes. I have not figured out how to pass a string to the hpPwdCtrl object and have it return a value. The documentation on the hpPwdCtl.PasswordEdit object is sketchy or nonexistant, but here's what I've figured out so far: 1. Using early bindingDim oPwdCtl As New hpPwdCtl.PasswordEditstrPassword = oPwdCtl.GetPassword("Enter the Setup Password:") 'keyboard scancode encoded passwordstrUTFPassword = oPwdCtl.GetPasswordAsUnicode(varLocale, "Enter the Setup Password:") I have no clue what varLocale does, but you must use an empty variable there. (varLocale was just my name for it...call your variable whatever you want, but make sure its empty.) 2. Using late bindingSet oPwdCtl = CreateObject("hpPwdCtl.PasswordEdit")oPwdCtl.GetPassword "Enter the Setup Password:", strPasswordoPwdCtl.GetPasswordAsUnicode varLocale, "Enter the Setup Password:", strUTFPassword Again you must have the empty variable for the unicode method. There is a method named GetPasswordAsScanCode but I can't get it to work with either early or late binding. I always get "The Remote Procedure Call Failed".  

  • Speech bubbles in Muse

    Hi,
    I'm designing my site in Muse.
    A main feature will be interviews.
    I'll be designing a jpeg background, with name of interviewee seperately designed at the top - do I need to merge these as 1 in PS or can I layer in Muse?
    But my main question, is I want the interview in speech bubbles centered down screen, with triangle tip pointing left or right of screen depending on whom is speaking. Ideally, i'd like the text to be searchable on google.
    Any ideas for how to do this?
    I am aware of a speach bubble code creator on the web is that addable to Muse?
    Obviously the bubbles would need to be adjustable for the amount of speech, but as interviews are past won't need changing once created.
    Might add, photos/sound clips/links at some point but getting the background up with interview in speech bubbles is the main task.
    Thanks so.
    Tanya

    Right, couldn't see 1. Thought was web design, have reposted

  • Can't find the text editor menu in dreamweaver

    I am a returning dreamweaver user. It has been 8 years since I used it.
    I am writing some text on a website and want to edit the way it looks. Where is the text editing menu where I can change fonts and font colors, sizes, etc? It used to be at the bottom. All I see currently is the "properties" tab.

    evabraun wrote:
    Can't remember the dino version I used to use. I am using the newest version of Dreamweaver. CS6?
    Cloud: CC (subscription only)
    Non-Cloud: CS6 (discontinued version but still available for sale)
    Does anyone know a place to go where I can see a wysiwyg css code creator?
    Well Dreamweaver still sort of qualifies for that.

  • Tif files aren't recognized by LR5

    I have hundreds of .tif files that I'm trying to import into Lightroom so I can evaluate whether I want to switch from Aperture. All of the .tifs have been created in Photoshop and may or may not have compression. Lightroom does not recognize them as image files until I go into the folder and put .tif at the end of each photo. Mac OS recognizes them, Preview recognizes them, Photoshop recognizes them. Why is Lightroom having this problem and is there a workaround that doesn't involve me converting everything to dng or adding .tif to the end of all my files?

    Mac OS X assigns a Type Code, Creator Code, and adds a file extension, which can be hidden (but it''s still there). LR is probably expecting all files to have an extension identifying the file type, regardless of whether it's "hidden." If this is true then TIFF files created on Mac OS prior to OS X (Circa 2002) will not be recognized by LR.
    http://en.wikipedia.org/wiki/Filename_extension#Usage
    "Pre-OS X versions of the Mac OS disposed of filename-based extension metadata entirely, instead using a distinct file type code to identify the file format. Additionally, a creator code was specified to determine which application would be launched when the file's icon was double-clicked. Mac OS X, however, uses filename suffixes, as well as type and creator codes, as a consequence of being derived from the UNIX-like NeXTSTEP operating system."
    Simplest solution is as suggested and don't save files in PS without a file extension in the future. You can still hide the extension if you like.

  • Characters input in CRS

    Hi,
    I'm wondering if I can get an alphanumeric string from the users, I know that we can get digits using Get Digit String but what about getting characters so for example I can send an email for the caller email address or any other purposes.. could anyone help me please??
    I'm using UCCX ver. 5.0(2.317)...

    Hi Muhammad,
    I mean like when we use Extension Mobility in CM, we enter our login id in characters format. I'm asking about this ability in UCCX. instead of getting digits or numbers from the user, can I get his name or email and save it in a variable to use in script.
    my cuurent scenario is as following, I have a meet me script to join the conference rooms and another one to create codes for the joiners. users can create their own codes using this script and then send it back to the joiners manualy.
    Now I need to add another part to automate the last section which is sending an automated email to the joiners as an invitation for the conference mentioning the date, time and code. to do this part I need the email address of the joiner.
    I thought maybe the code creator can provide this information in the create codes script but I don't know how to do it.
    I hope I made it clear and thank you for your help..
    Regards,
    Essam

  • New functions missing in Adobe CC

    Hi
    I noticed that the new functions such as QR code creator and new document preview in Adobe CC Indesign is missing in my version of CC Indesign. In Dreamweaver I've got the palette CSS Styles but in the new version of Dreamweaver this palette is called CSS Designer. I've updated Application manager and installed all updates - how come I don't have these new functions?
    Kind Regards
    Ole

    Hi John
    Thanks for quick answer - now I notice that the first row of programmes in App Manager are CS6 and below that is CC all uninstalled...?
    So I'll try and install those - I'm a bit confused though - why do I have CS6.. My license is for CC...?

  • How to find COM port for a specific USB device

    I want to automatically find the COM port for a specific USB device. I use the VISA find resource function but I can't get the manufacturer's ID. VISA says the device doesn't have this information. The find resource function does narrow my search (and often finds the port depending on what other usb devices are connected). In the case where it finds multiple possible ports, can I safely send a message to each port to determine if it is the correct device? I know it will work for my purposes but I don't know if I am asking for trouble by sending messages to unidentified devices. Any thoughts on how I can identify my device port will be appreciated. Thank you - Dave F

    You can do it using WMI.  I have C# code I am supposed to convert into LabVIEW foing something similar to what you want to do.  In my case, I am testing a USB device and need to know which port on the hub is which COM port (the device creates a virtual COM port for communication).  Using WMI, you can find the hardware path to the device and know that COM10 is USB hub Port 1 for example.  Unfortunately, I cannot share the C# code.
    You can download the WMI Code Creator tool from Microsoft, which should help you tremendously find the proper method of getting your info.
    You basically want to look at all the W32_USB devices for the specific device you are looking for.  Once you have that, you can look for the COM Port associated with it.  I don't know when I will get to coding this up in LabVIEW, but will report back when I do, assuming you haven't found the solution by then.

  • Is it possible to get the data on the device driver detail property shown below, using scripts?

    I have tried to get the data using Win32_PnPSignedDriver but the InstallDate parameter always shows as empty when I try to retrieve it. Also, the Win32_PnPSignedDriver object does not contain all the values that could be seen when you access this window
    via Device Manager.

    Also it looks like you're attempting scripting using WMI scripting. Perhaps you would want to download
    WMI Code Creator v1.0 and read
    Utility Spotlight WMI Code Creator.
    WMI code creator can create code in VB Script, VB.Net and Visual C# or C#.Net I suppose.
    La vida loca

  • .:: SERIOUS TABLE WIDTH ISSUE ::.

    everytime i pull a sliced image into dreamweaver as an html file generated from photoshop it looks great.
    then sometimes :
    1/100 of the times :
    it becomes one pixel larger and ruins the fluidity of centering between the pages
    i'm not a code creator : more like a code smuggler + manipulator :
    so i've gone into the code and i'm left with nothingness as to why this one table on one
    page which i've redone several times is 1135 pixels instead of 1134.
    i've tried manually changing it : making them all a constant and then shrinking it : typing it in
    changing code : NOTHING.
    SOMEONE SAVE ME AND TELL ME WHY IT SAYS TWO WIDTHS AND HOW TO CHANGE IT :
    here the image of what it's doing  : http://ohsobeit.com/PROBLEM.png
    thanks in advance for saving my life
    .::katy bea::.

    First off - the worst thing you can do to a web page is to not include a doctype.  Browsers have two major rendering modes: 1) Standards mode, and 2) Quirks mode.  The latter is used for all pages without a valid and complete doctype.  Each browser's quirks mode rules are different.  Pages rendered in quirks mode will be unpredictably rendered cross-browser/platform.
    Open your pages in DW, and use FILE | Convert > HTML 4.01 Transitional to get a proper doctype on them.  This lack of a doctype alone could account for your inter-page variability.
    Next thing - your pages have NO CONTENT!  This means that search engines have nothing by which they can rank your site, since content rules your rankings.  You have just pages filled with images.  Period.  That will never do - you'll never appear in a search.
    Finally (for now) the reason your pages are shifting is related to your use of Photoshop HTML.  A common feature of such HTML is that colspans and rowspans are used extravagantly in order to exactly reproduce the layout in the graphic.  Read this to find out why that is the worst -
    http://www.apptools.com/rants/spans.php
    I'm afraid this site is not ready for prime time.  You should start over, really.  Sorry....

  • Get path of product is installed

    I installed ESET Nod32 Antivirus 6 (6.0316.0) on C:\\.  I'd like to get path of product is installed with VC++ 2010-win32.
    What I do? 
    and at first I'd like cheched that is nod32 installed  on system or no?

    Sounds like you want to get info about installed programs. To do that you can use the MSI API but
    WMI might be easier to use. (from WMI Code Creator):
    using System;
    using System.Management;
    using System.Windows.Forms;
    namespace WMISample
    public class MyWMIQuery
    public static void Main()
    try
    ManagementObjectSearcher searcher =
    new ManagementObjectSearcher("root\\CIMV2",
    "SELECT * FROM Win32_Product WHERE Name = 'Microsoft Office Professional Plus 2013'");
    foreach (ManagementObject queryObj in searcher.Get())
    Console.WriteLine("-----------------------------------");
    Console.WriteLine("Win32_Product instance");
    Console.WriteLine("-----------------------------------");
    Console.WriteLine("Caption: {0}", queryObj["Caption"]);
    Console.WriteLine("InstallLocation: {0}", queryObj["InstallLocation"]);
    Console.WriteLine("Name: {0}", queryObj["Name"]);
    catch (ManagementException e)
    MessageBox.Show("An error occurred while querying for WMI data: " + e.Message);
    By filtering to the app(s) you want you can determine if it is installed and what the install path was.
    Michael Taylor
    http://blogs.msmvps.com/p3net

  • Disable SCCM Task Sequence Using WMI

    Hello everyone,
    So I'm attempting to use WMI/SDK to disable a task sequence.  I've dug for a method to do it, but am not having any luck.  I am aware of the Disable-CMTaskSequence Cmdlet, but I really wanting to find the WMI method, assuming one exists. 
    I've used the WMI Code Creator to browse the classes with methods and of the 99 available, I can't find any that seem to fit.
    If anyone has any ideas where I might look, then that would be great.  If not, I'll integrate PS into my solution, but I was hoping to keep everything to using .Net/SDK/WMI without any PS integration.
    Thanks!

    Hi,
    I don't understand why you don't want to use the cmdlet?
    I'm not a big fan of the native cmdlets either, but when they work, they do save you a lot of work going the WMI route.
    If, for whatever reason, you really want to use WMI, then have a look at SMS_TaskSequencePackage. You have to then change the property ProgramFlags via a bitwise operation. In this case it's Bit 12.
    Don't try to hardcode the value, that might work, but is a wrong way to go. Have a look at one of my previous articles where I show a similar thing on SMS_Program :
    http://www.david-obrien.net/2014/01/24/convert-configmgr-applications-packages-powershell/
    Hope that helps!
    My blog on ConfigMgr automation: www.david-obrien.net | me on Twitter: @david_obrien Please remember to mark the post(s) that helped you resolve the issue (even if it was your own)

Maybe you are looking for

  • How to set threshold value for single tablespace in grid control 11g

    Hi, I want to set the threshold value for a single tablespace in grid control 11g, please provide me a navigation path.

  • To update Vendor master data

    I have 4300 records in vendor master data LFA1. I have to update  industry code corresponding to each vendor . Can anyone suggest me how can i  do it ? Is there any t-code availaible to do it. So i can make BDC program to do this. Help me on this ...

  • How to Pan/Crop a Video?

    Alright, I'm a complete newbie when it comes to AE and I can't figure out how to pan/crop videos like in Sony Vegas. I need both my video and text to  be in a different position, but amazingly I couldn't find any results online. I am running CS6 , th

  • BRM - role in locked mode (in define stage)

    Hi Experts, We created derive roles through 'mass role derivation' and in the same time master role has not been approved yet. All created derive roles are in locked mode (see screenshot below), even after approval of master role, those locks were no

  • Finding the 15th of Every Month

    Hi, I have declared expiration start date and end date variables. The expiration Start Date always start from 1st of the Month or 15th of the Month. Right now I am incrementing the expiration start date by one Month : for example if my exp start date