active questions tagged register - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T01:07:38Zhttp://stackoverflow.com/feeds/tag/registerhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1872598/facebook-linking-facebook-user-and-website-user0Facebook linking facebook user and website user.Simon2009-12-09T09:21:31Z2009-12-09T09:21:31Z
<p>Hello </p>
<p>I am wanting to have a website user connect with their own facebook user account like the way digg does. I have tried the registerUser function in facebook connect when the user create an account through my website and able to send email hash across to the facebook. At the same time on facebook, the same user with the same email address does recognized the user. From the documentation, the registerUser is good to use in batch.</p>
<p>Does anyone know whether digg using the same way when dealing with the linking issue? </p>
<p>My other Idea is to give an extra page asking the facebook user to enter their username / password of our website and link them from there. </p>
http://stackoverflow.com/questions/1809749/how-to-assign-a-value-to-an-output-reg-in-verilog0How to 'assign' a value to an output reg in Verilog?Rafael Almeida2009-11-27T16:52:53Z2009-12-03T23:39:08Z
<p>( insert really basic question disclaimer here )</p>
<p>More specifically, I have the following declaration:</p>
<pre><code>output reg icache_ram_rw
</code></pre>
<p>And in some point of the code I need to put the zero value in this reg. Here's what I've tried and the outcomes:</p>
<pre><code>assign icache_ram_rw = 1'b0;
( declarative lvalue or port sink reg icache_ram_rw must be a wire )
icache_ram_rw <= 1'b0;
( instance gate/name for type "icache_ram_rw" expected - <= read )
</code></pre>
<p>How do I do it after all?!</p>
http://stackoverflow.com/questions/1835963/what-is-the-sig-parameter-passed-into-registerusers-method-on-facebook0What is the sig parameter passed into registerUsers method on facebookSimon2009-12-02T21:33:11Z2009-12-03T15:23:35Z
<p>Hello I have a problem of understanding what the sig parameter is and how to generate it. I have read the documentation in registerUsers but not sure what and how to get it.</p>
http://stackoverflow.com/questions/1812207/register-the-dynamic-control-using-jquery-for-autocomplete0Register the dynamic control using jquery for autocompletePrasad2009-11-28T10:40:17Z2009-11-28T11:40:40Z
<p>i am creating the textboxes dynamically using jquery on a button click.</p>
<pre><code><table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td>
<div id="lblCustName">
</div>
</td>
<td>
<div id="lblRemove">
</div>
</td>
</tr>
<tr>
<td colspan="2">
<input type="button" value="Add" id="AddRow" />
</td>
</tr>
<tr>
<td colspan="2">
<input type="submit" value="Submit" id="SaveCustomers" />
</td>
</tr>
</table>
<script type="text/javascript" language="javascript">
$(document).ready(function() {
//validate post form
$("#CustomersForm").validate({ ignore: ":not(:visible)" });
//Initialize the dynamic id
_DynId = 1;
//Click Event for Customers
$('#AddRow').click(function(e) {
$('#lblCustName').append('<div id="lblCustName' + _DynId + '" style="height:20px;padding-left:10px;">' + '<input type="text" name="CustName" id="CustName' + _DynId + '" class="required" value="" title="*" />');
$('#lblRemove').append('<div id="lblRemove' + _DynId + '" style="height:20px;padding-left:10px;">' + '<img src="../../Content/Images/delete_icon.gif" onclick=Remove("' + _DynId + '"); title="Remove" id="iRemove' + _DynId + '"></img>');
_DynId += 1;
});
</script>
</code></pre>
<p>I am trying to add the textbox for customers dynamically.
This is the sample html for the functionality of adding customers for a report processing,...
I need to give the autocomplete option for the textboxes.</p>
<p>I have used the below script for that:</p>
<pre><code>$.getJSON("/User/GetAllCustomers/?t=" + new Date(), {},
function(data) {
if (data != null) {
$("input:text[name=CustName]").autocomplete(data, { mustMatch: false, matchContains: 4, max: 50,
formatItem: function(row) {
if (row.CustomerName!= "") {
return row.CustomerName;
}
},
formatResult: function(row) {
return row.CustomerName;
}
}).result(function(e, row) {
//do something
});
}
});
</code></pre>
<p>The autocomplete is not working for the dynamically added controls.</p>
<p>I am trying for any possibility to register the dynamically added controls to the form, so that the autocomplete will work for the dynamically added controls</p>
http://stackoverflow.com/questions/1753530/globals-php-help0globals php helpngreenwood62009-11-18T04:00:44Z2009-11-18T09:36:01Z
<p>I am trying to use a global in a file that is just used to post data to. The global is not being registered on that page. How can I get the globals accessible in that page.</p>
<p>EDIT maybe I wasnt too clear so let me clear it up. I have these files</p>
<p>index.php</p>
<pre><code>global $user;
echo $user->uid;
</code></pre>
<p>post.php</p>
<pre><code>global $user;
echo $user->uid;
</code></pre>
<p>now from index.php I am posting to post.php through jquery. However when I echo $user->uid from post.php it is not echoing but when I echo it from index.php it is showing it. How can I get that $user->uid accessible from post.php.</p>
http://stackoverflow.com/questions/1700567/best-practice-to-prevent-software-copy1Best practice to prevent software copyAndy M2009-11-09T11:59:05Z2009-11-09T12:21:55Z
<p>Hi everyone,</p>
<p>I'm developping an application and I'm looking for some cool informations about protecting it against copy ! Do you guys know some book/articles/any informations about it ?</p>
<p>Thanks in advance for your advices !</p>
http://stackoverflow.com/questions/1691473/c-c-somehow-register-my-classes-in-a-list2[C/C++] somehow register my classes in a listJonathan2009-11-07T00:46:13Z2009-11-07T08:57:35Z
<p>Hi,</p>
<p>I would like to be able to register my classes within a std::map or a vector, don't think about duplicates and such for now.<br>
but I don't want to register it within the class constructor call or any within function of the class, somehow do it outside the class so even if I never instanciate it, I would be able to know that it exists...</p>
<p>example:</p>
<pre><code>// Somehow, from outside the myclass, in a scope that will be called
//in the begining of the proccess, add "MyClass1" to a
//list so it can be instanciated later
class MyClass1{
}
</code></pre>
<p>then I would make a #define of it or if able, a template.<br>
I don't know if I made myself clear(again)...
My point is that I need to know every class that I have without having to call every and each of them.<br>
My idea was to create a #define to make it easier to declare the header of the class and call something that would register that specific class to a list </p>
<p>Can this be done or will I have to map it manually? </p>
<pre><code>// desirable:
#define CLASSREGISTER(myclass) makethemagic(##myclass); class myclass {
};
</code></pre>
<p>I know, with that define I couldn't use inheritance etc... My point was to try to give an example of what I was thinking to create somehow...</p>
<p>Thanks,<br>
Joe</p>
http://stackoverflow.com/questions/1641343/linux-assembly-woes0Linux assembly woesKJP2009-10-29T02:45:39Z2009-10-29T12:56:48Z
<p>Is there really no way to print an ascii string in assembly to standard output without using up all four general purpose registers?</p>
http://stackoverflow.com/questions/1580686/fast-in-register-sort-of-bytes3Fast in-register sort of bytes?aleccolocco2009-10-16T22:08:39Z2009-10-17T07:58:50Z
<p>Given a register of 4 bytes (or 16 for SIMD), there has to be an efficient way to sort the bytes in-register with a few instructions.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1550410/how-to-show-confirm-dialog-under-vista-with-c0How to show Confirm Dialog under Vista with C#?FBSC2009-10-11T10:52:44Z2009-10-11T11:10:16Z
<p>I need to set a register key in vista but if I use the commands without running as Administrator it throws an exception. How do I show the confirmation dialog, then?</p>
http://stackoverflow.com/questions/1480141/is-there-an-example-of-django-register-1Is there an example of django register? [closed]JasonYun2009-09-26T01:03:56Z2009-09-26T07:22:24Z
<p>please show me a django register code include the template
thanks!</p>
http://stackoverflow.com/questions/1477611/disable-l1-instruction-cache0Disable L1 instruction cache [closed]moho2009-09-25T14:27:24Z2009-09-25T14:27:24Z
<blockquote>
<p><strong>Possible Duplicate:</strong><br />
<a href="http://stackoverflow.com/questions/1108485/disable-l2-l1-caches">Disable L2/L1 caches </a> </p>
</blockquote>
<p>Hi everybody,</p>
<p>I am looking for a way to disable the L1 instruction cache of my Core 2 Duo processor,
does anybody knows how/if it is possible?</p>
<p>Thanx</p>
http://stackoverflow.com/questions/1465140/unable-to-register-vb-ocx-components-err-0x800402010Unable to register VB ocx components (err 0x80040201)JaVinci2009-09-23T10:17:30Z2009-09-23T10:32:54Z
<p>Hi,</p>
<p>I have a problem trying to register some ocx files.</p>
<p>When I execute regsvr32, it returns 0x80040201 error code. I'm using win xp SP3 and my user has administrator permissions.</p>
<p>When I try to register them with another user on the same machine I can do it without a problem, and both users are administrators and have "total control" permissions over c:\windows\system32</p>
<p>Any clue of what can be going on here?</p>
<p>Thanks a lot!!!</p>
http://stackoverflow.com/questions/1375485/register-identical-views-with-different-services-using-composite-application-libr0Register identical views with different services using Composite Application LibraryRachel Martin2009-09-03T19:37:12Z2009-09-17T11:35:08Z
<p>I'm using the Composite Application Library with Silverlight, and I need to add three "zones" to my region. These "zones" all have essentially the same view and presentation model. (I'm getting these words from the StockTraderRI application. Correct me if I'm wrong.) The only difference I have is where I get the data from, so I want to have a different service for each "zone".</p>
<p>Currently, I am able to initialize my view in the "RightsRegion" by doing this:</p>
<pre><code>public void Initialize()
{
RegisterViewsAndServices();
this.regionManager.Regions["MainRegion"].Add(new DefaultViewUI());
this.regionManager.RegisterViewWithRegion("RightsRegion", () => container.Resolve<ISecurityTreePresentationModel>().View);
}
private void RegisterViewsAndServices()
{
container.RegisterType<ITreeViewService, EntityTypesService>(new ContainerControlledLifetimeManager());
container.RegisterType<ISecurityTreeView, SecurityTreeView>();
container.RegisterType<ISecurityTreePresentationModel, SecurityTreePresentationModel>();
}
</code></pre>
<p>I thought I would be able to register another copy of this view in the "RightsRegion" with my LocationsService, but that seems to overwrite my EntityTypesService.</p>
<p>How can I register three identical views and very similar presentation models into my "RightsRegion" so that they each use a different service?</p>
http://stackoverflow.com/questions/1356692/linking-files-as-a-html-file-and-its-folder0linking files as a HTML-file and it's folderCommuSoft2009-08-31T09:42:40Z2009-08-31T09:42:40Z
<p>In a windows-environment if you have a .html-file, you can make a copy of it and move it in the file-system. But the folder containing the additional files (images, scripts, .css-files) is moved with it. I want to know how you can implement this with files of other extensions (self defined file-extensions). I suppose it has to do with the Windows-register, but i'm not sure.</p>
http://stackoverflow.com/questions/1256246/address-of-register-variable7Address of register variableNaveen2009-08-10T17:47:38Z2009-08-11T06:18:05Z
<p>In C, we cannot use & to find out the address of a register variable but in C++ we can do the same. Why is it legal in C++ but not in C? Can someone please explain this concept in-depth. </p>
<p>Thanks, </p>
<p>Naveen</p>
http://stackoverflow.com/questions/1250818/registering-org-gjt-mm-mysql-driver0Registering org.gjt.mm.mysql.DriverMemoryLeak2009-08-09T06:38:45Z2009-08-09T07:02:11Z
<p>When I connect to mysql in my localhost, everything is OK.
but when i move the whole project to another computer in the intranet and set the correct IP.
the project can't connect to mysql, and stop at:</p>
<pre><code>Registering org.gjt.mm.mysql.Driver2009-08-09 14:29:41,679
</code></pre>
<p>What's Up ?
Thanks in advance !</p>
http://stackoverflow.com/questions/1174729/what-is-the-best-way-to-register-existing-windows-service-in-net1What is the best way to register existing Windows service in .NET?Valery Tydykov2009-07-23T21:56:22Z2009-07-23T22:08:44Z
<p>I need to register an existing third-party executable (database engine) Windows service from a .NET application. Is there a better way than writing to the registry?</p>
http://stackoverflow.com/questions/991797/how-can-i-import-a-ascx-file-into-a-aspx-page-using-tag-registering0How can I import a .ascx file into a .aspx page using tag registering?Matt2009-06-13T23:43:54Z2009-06-15T14:17:33Z
<p>Hi,</p>
<p>I have this set up...</p>
<pre><code><%@ Register TagPrefix="UserControl"
TagName="UserLogin"
Src="~/admin/Authentication/Login.ascx" %>
<%@ Register TagPrefix="UserControl"
TagName="UserRegister"
Src="~/admin/Authentication/Register.ascx" %>
</code></pre>
<p>Then later on in the same file I use the tags...</p>
<pre><code><div id="LoginContainer"><UserControl:UserLogin runat="server /></div>
<div id="RegisterContainer"><UserControl:UserRegister runat="server" /></div>
</code></pre>
<p>And for some reason, the UserControl:UserRegister gets underlined in green, when I hover over it, it says "Element 'UserRegister' is not a known element. This can occur if there is a compilation error in the website or if the web.config file is missing."</p>
<p>Is there something else I need to do to make these tags work other than just registering them at the top of the page?</p>
http://stackoverflow.com/questions/987152/register-assembly-in-asp-net-vs-2005-and-web-config0Register assembly in ASP.NET (VS 2005) and web.configjimbojones2009-06-12T15:06:15Z2009-06-12T18:49:04Z
<p>Hello,
I am applying a new version of an assembly to a web project and have found that I am going to have to replace about 500 instances of the Register Assembly tag at the top of each web control. I considered registering it in the web.config but when I try this and remove the "Register" tag from the controls, i receive the "unrecognized tag prefix" error as well as losing intellisense for that tag. I have not GAC'ed the assemblies but i didnt think that would a problem. What am I missing here? Thanks in advance for any help.</p>
http://stackoverflow.com/questions/903607/batch-file-which-asks-for-username-password-registration0batch file which asks for username/password + registrationYourComputerHelpZ2009-05-24T11:42:14Z2009-06-04T22:07:01Z
<p>I would like a batch file that can register a user into itself.
something like:</p>
<pre><code>@echo off
echo Choose an option:
echo 1:Register
echo 2:Login
Set option=
set /p option=Your option:
if %option%==1 goto reg
if %option%==2 goto login
...
:reg
--The registration script--
goto login
...
:login
Set usr=
set /p usr=Username:
if %usr%== goto pass
echo False username!
@pause
goto login
...
:pass
Set passw=
set /p passw=Password:
if %passw%== goto success
echo False password!
@pause
goto login
</code></pre>
<p>So... something like that. 'if %passw%== "" and if %usr%== ""' === it should automatticly make that at registration.</p>
<p>It will be nice if more than 1 people could register.</p>
http://stackoverflow.com/questions/892928/why-are-x86-registers-named-the-way-they-are10Why are x86 registers named the way they are?eleven812009-05-21T13:27:28Z2009-06-04T10:05:28Z
<p>For example, the accumulator is named <code>EAX</code> and, while the instruction pointer is called <code>IP</code>. I also know that there are bytes called <code>CL</code> and <code>DH</code>. I know there must be a convention to all of the names, but what is it?</p>
http://stackoverflow.com/questions/949433/could-anyone-explain-these-undefined-behaviors-i-i-i-i-i-etc-1Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc...)PiX2009-06-04T09:17:52Z2009-06-04T10:00:17Z
<pre><code>int main(int argc, char ** argv)
{
int i = 0;
i = i++ + ++i;
printf("%d\n", i); // 3
i = 1;
i = (i++);
printf("%d\n", i); // 2 Should be 1, no ?
volatile int u = 0;
u = u++ + ++u;
printf("%d\n", u); // 1
u = 1;
u = (u++);
printf("%d\n", u); // 2 Should also be one, no ?
register int v = 0;
v = v++ + ++v;
printf("%d\n", v); // 3 (Should be the same as u ?)
</code></pre>
<p>}</p>
http://stackoverflow.com/questions/946518/hook-a-javascript-event-to-page-load4Hook a javascript event to page loadJagd2009-06-03T18:57:39Z2009-06-03T21:59:30Z
<p>I have an aspx that has the following javascript function being ran during the onload event of the body.</p>
<pre><code><body onload="startClock();">
</code></pre>
<p>However, I'm setting the aspx up to use a master page, so the body tag doesn't exist in the aspx anymore. How do I go about registering the startClock function to run when the page is hit and still have it use a masterpage? </p>
http://stackoverflow.com/questions/778014/how-do-i-silently-register-a-com-assembly-on-a-winxp-computer0How do I silently register a COM assembly on a WinXP computerunknown (yahoo)2009-04-22T16:08:35Z2009-05-19T06:00:02Z
<p>I have a C++ console application to which I want to a Windows Form. I don’t want to use MFC because I don’t know how. Instead, I am using a C# to create the COM dll (Class Library). When I distribute the application and the dll to the target computer, I need to register the dll such that the application can see the COM interface and use the class I created in the dll.</p>
<p>I know there are a few methods to do this: </p>
<ol>
<li><p>Have my application’s installer use regasm – I don’t want to use this because of two things: A. I don’t know its location on the target PC (and even if it exists somewhere, I will like not to hard-code the path to it) and B. I could redistribute regasm with the installer but I’m not sure if Microsoft allows this freely.</p></li>
<li><p>Have my application’s installer use gacutil – same as above.</p></li>
<li><p>Use regasm on the development computer to create a .reg file and then have the application’s installer execute the .reg file – there are two issues with this: A. I cannot unregister the dll in the event of an uninstallation and B. executing .reg calls the regedit which asks the user if he/she is sure if he/she wants to add the information to the registry – I would like this to be a silent “yes” and not let the user decide. regedit doesn’t have /silent argument so I gave up on using this.</p></li>
<li><p>Use Inno Setup installer and register the .tlb file (regtypelib flag) of the COM library – tried and the registration works but the application still cannot create an instance of the class.</p></li>
<li><p>Use ClickOnce to deploy the application – this is not an option because I would like my application to reside in a certain folder on the disk, not under the user’s Documents and Settings folder.
To be mentioned that I’m using Express editions for the C++ and C# Visual Studio 9.0.
Are there any other ways to register a COM library on a Windows XP computer. </p></li>
</ol>
http://stackoverflow.com/questions/863684/registering-windows-classes-win320Registering Windows Classes Win32James2009-05-14T14:35:36Z2009-05-16T10:54:55Z
<p>Hi, what's the best practise for registering window classes for a win32 program?</p>
<p>Do you register every class in the WinMain function or as they're required?</p>
http://stackoverflow.com/questions/825222/registering-a-upnp-device-using-microsoft-apis0Registering a UPnP Device using Microsoft API'sZaid Amir2009-05-05T14:48:46Z2009-05-05T14:59:38Z
<p>Hi,</p>
<p>I am trying to make a UPnP device using Microsoft API's via Visual C++. So far I have created the device and registered it successfully with the IUPnPRegistrar::RegisterDevice method. I have also read in MSDN that there is another method to register a UPnP device using the IUPnPRegistrar::RegisterRunningDevice.</p>
<p>There isn't much details in MSDN on the difference between the two methods or when to use one of them..</p>
<p>I would appreciate it if somebody can clear the matter.</p>
<p>Regards</p>
http://stackoverflow.com/questions/709114/register-variables2Register Variablessameer karjatkar2009-04-02T10:07:18Z2009-04-02T10:31:44Z
<p>I am having a C++ code which have lot of recursion involved . I am thinking of using register class for my variables . Do you think by doing so I will be saving stack memory and will improve the performance </p>
<p>Thanks</p>
<p>Sameer</p>
http://stackoverflow.com/questions/662734/vim-substitute-with-contents-of-register-lines-range14VIM: substitute with contents of register / lines rangeorsogufo2009-03-19T15:46:58Z2009-03-20T11:12:21Z
<p>I'm using VIM, and I want to substitute some placeholder text with a long string, that spans several lines, which is already written somewhere else in the file.</p>
<p>Is it possible to replace a pattern with the contents of a register? Something like</p>
<pre><code>:%s/foo/<contents of register A>
</code></pre>
<p>Otherwise, is it possible to replace with a range of lines? something like</p>
<pre><code>:%s/foo/<content of lines from 10 to 15>
</code></pre>
http://stackoverflow.com/questions/507559/php-signup-email-validate-login-script-class0PHP signup email-validate login script/classScott Evernden2009-02-03T15:30:41Z2009-02-03T23:17:19Z
<p>I am looking for a decent PHP script or class library to handle user sign-up/register, email-validation and login for a website. I've written this sorta thing before, but I'd rather use something more tested and robust. The handful of open-source offerings I have thus far come across are, in my view, not very good. I've also looked at <a href="https://rpxnow.com/" rel="nofollow">RPX</a> and tho interesting is probably, for my needs, overkill. At this point I do not think I need a full CMS which would likely include such a facility.</p>
<p>Any pointers or suggestions would be most appreciated.</p>