Click here to Skip to main content
15,897,518 members
Everything / Registers

Registers

registers

Great Reads

by DaveAuld
A beginners' introduction to using shift registers with the Arduino
by Taha Elsayed
Control electrical appliances using PC.

Latest Articles

by DaveAuld
A beginners' introduction to using shift registers with the Arduino
by Taha Elsayed
Control electrical appliances using PC.

All Articles

Sort by Score

Registers 

27 Jan 2011 by shakil0304003
You can see this linksClickClickClick
6 Sep 2014 by OriginalGriff
Um.CPU registers don't have addresses: they aren't part of the "normal" memory, they are specific places in the processor which can hold values (normally but not necessarily integer) which can be interpreted as memory addresses. But except for some rather odd processors you cannot take the...
19 Apr 2011 by Dave Kreskowiak
You cannot register your old version of flash if there is already a new version installed.The only thing you can do is update your Flash code to work on the newer versions.
8 Feb 2012 by Sergey Alexandrovich Kryukov
Even though the question is absolutely not clear, I don't think is makes any sense. COM port and the USB are very different things with very different functionality. Unlike COM, USB is not a port but a bus, http://en.wikipedia.org/wiki/USB[^].—SA
1 Aug 2013 by SARAVANAKUMAR.M
Hi Mohan, Try the below code in your application and just check it out ,Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\Run", true).SetValue(Application.ProductName, Application.ExecutablePath);This code will register your application in msconfig ....
4 Sep 2014 by Duncan Edwards Jones
The addition is one machine instruction, and copying into a buffer is another so 2 clock cycles is the absolute minimum. So - .00000005 seconds (+/- 100%)
4 Sep 2014 by kavitha3
Hi ,I am not understanding what is your need and why ...But i can redirect u to Mr.Robert's Article.Its about ::How To: Measure execution time in C#[^]::
4 Sep 2014 by Rob Philpott
You can't. Depends on what speed the CPU is clocked at, what instruction set its running, what the JIT does, whether it gets 'inlined' or branched etc.
27 Oct 2015 by Dzianis Igaravich Leanenka
Hello to everyoneIs anyone able to explain how to create a scheme of a register if I know the polynomial function that describes it?For instance p(x) = x^4 + x + 1How is the scheme look like?Thank you in advance.
12 Dec 2016 by Patrice T
Quote:how to write simple debuggerWriting a debugger is anything but simple.Quote:i want to set hardware breakpoint to address in the memoryModern OS are pretty complicated and the handling of memory is pretty complex.I recommend to use existing debuggers, the one of your IDE is a good...
27 Jan 2011 by darrell987
I was given the TzID (Olson tzid format Exp: "Europe/Copenhagen"). After that, i tried to do the timezone conversion for certain DateTime from that timezone (different with server local time zone) to UTC by using c# TimeZonInfo class.I was wondering why window's timezone id only have about...
8 Feb 2011 by darrell987
At the end, i gave up with the class "timezoneinfo" method and just using the Olson database. There's a nice tool to access and calling the Olson database in .Net.http://www.codeproject.com/KB/locale/zoneinfo_dotnet_api.aspx
19 Apr 2011 by Joan M
Download the flash remover tool[^] to uninstall the 10.x version and then install the old one using the typical installer.This should work for you.I don't know if your problem is that:A) Your app is not suitable/compatible for the newest flash version.B) You have a problem in the...
26 Aug 2011 by @BangIndia
sir ,from the code project help i know how to do the disable operation in manual..but i want to know how to that in registry itself..what change i want to made in registry to the disable the google toolbar from the IE7
26 Aug 2011 by luisnike19
I hope this helps youhttp://www.msfn.org/board/topic/85198-silent-removal-of-the-google-and-yahoo-toolbars/[^]
9 Sep 2011 by Rakesh Meel
Try Office button, options command / advanced option / General section (at bottom). Turn off "Confirm File format conversion at open. This will take care of the general message, but I don't think it will suppress this more specific error/warning message.
13 Sep 2011 by Rakesh Meel
see belowhttp://en.wikipedia.org/wiki/Integer_%28computer_science%29
24 Nov 2011 by jackrasha
I am using the following codeThis error occurs :Attempted to read or write protected memory. This is often an indication that other memory is corrupt. Attempted to read or write protected memory. This is often an indication that other memory is corrupt. Public Class...
24 Nov 2011 by chandanadhikari
hi,i am not able to get the question completely .All i can get is that you are trying to read a registry entry of Windows using this code and you are getting an error while trying to do so.just a hint:please check if you have administrative privileges on this machine.and these might help...
18 Jan 2012 by sinaone
hi everyonehow can i create a thumbnail dll for Shell Extensions a type file in vb.net or c# and register it in shell Extensions windows registery ?i want my thumbnail dll create thumbnail for my xxx type file in explorer windowsplease help me thanx
15 Sep 2012 by skydger
It depends on conception you developing a library. For a COM in CLR you can use deploying (regasm) with [[ComVisible(), ClassInterface()] parameters in your source code and for others - registering (regsvr32) (with .idl interfaces and other things).
6 Nov 2012 by Deenuji
How to clear cache memory for login form? i created one login form but whenever i try to login i just click tat username textbox means it shows more than 20 names!!!! how to i clear that??????
6 Nov 2012 by n.podbielski
What you are describing is browser autosuggestion.Just add some guid like string to name of input tag. Browser remember forms inputs name attributes.Ofcourse you cannot use simply asp:Textbox because those have automatic names.Just copy this...
4 Sep 2013 by dean rezo
Hi, I have 64 bit windows 7. I created classlibrary (VS2012) and SN/registered it withC:\>sn -k C:\API3\test\bin\Debug\mykey.snkC:\Windows\Microsoft.NET\Framework\v4.0.30319>regasm C:\API2\test\obj\Debug/test.dll /tlb /codebaseit registers just fine and ASP can create the object just...
4 Sep 2013 by Sergey Alexandrovich Kryukov
Please see my comments to the question.dean rezo asked:Can you give me more details about architectures: x86-64 and Itanium (IE64)?Sure. Please see:http://en.wikipedia.org/wiki/Instruction_set[^],http://en.wikipedia.org/wiki/X86-64[^],http://en.wikipedia.org/wiki/Itanium[^].When you...
24 Sep 2013 by timJosh
I am trying to fuse an accepted 4-digit number, so far I have done the 2-digit number and got confuse fusing a 4-digit. Please helpHere my code:mov ah,01 int 21h sub al,30h mov bh,al mov ah,01 int 21h sub al,30h mov bl,al call fuseItfuseIt...
23 Dec 2013 by Peter Leow
If you are looking for some tutorial on using mysql with c#, then check this out:www.codeproject.com/Articles/43438/Connect-C-to-MySQL[^]
30 Dec 2013 by Sandip.Nascar
It is all about Open Authorization to connect to external social website.There are tons of code available in net which will help you to progress,here are...
30 Dec 2013 by OlciBzdmr
If you have a working code about it, can you send me? So, as I do everything, it doesn't work :( Please help me, it is very important for me.
16 Apr 2014 by Sergey Alexandrovich Kryukov
If you can write to some part of the registry, it's quite apparent that you can read it, too. Look more thoroughly at the Registry class you are already using.—SA
29 Apr 2014 by CognitiveFeedback
lol ...check this out ...but this post will be deleted by code-project in about 2 minutes ...but hope your purpose is for ethical hacking ... please don't use my accountthis is powershell script# open ie$ie = new-object -com "InternetExplorer.Application"$ie.visible =...
4 Sep 2014 by user8x86
Can you tell me how to calculate the time which CPU had used?Example:----------------------public int Main(){int a, b, c;a = 1; b = 2;return (c = a + b);}----------------------If we ignore these time: compiling, provide varibles storage, load data to...
6 Sep 2014 by user8x86
Can you tell me how to view the addresses of variables in CPU registers address?p/s: The address can be useful for my assembly project.Thanks for solutions!
13 Mar 2016 by Mehak Naaz
In Modelpublic partial class User { public int ID { get; set; } public string FullName { get; set; } public string UserName { get; set; } public string Email { get; set; } public string Password { get; set; } public string...
23 Dec 2013 by Member 10483335
Hey, I've been practicing C# for a couple of weeks and it's going good but I'm trying to implement a SQL database and it just confuses the crap out of me.I've created a windows form app that acts as a banking system, I've created a form that generates an account number and PIN number for...
22 Jul 2011 by Abhinav S
They are stored as double words. This article[^] discusses this from a basic perspective.For more detailed analysis, you probably need to read a few processor programming articles / whitepapers.Here[^] is more information on the word.
23 Jul 2011 by Philippe Mori
Some instructions will works on a pair of registers while other might be implemented in software. Thus if your application does a lot of 64 bits arithmetic, it might be faster when running as a 64 bit application.By the way, it would be very easy to know by looking at the disassembly code....
10 Jan 2011 by DaveAuld
A beginners' introduction to using shift registers with the Arduino
30 May 2004 by Taha Elsayed
Control electrical appliances using PC.
22 Jul 2011 by tasoskiller
the registers of a x68 architexture based computer are EAX,EBX,ECX,EDX,ESP,EBP,ESI,EDI and EIP .each of them consists of 32 bits that means 4 bytes that means they can hold values up to FFFFFFFF =4.294.967.295 !but int64 values require 8 bits . so how can computers with 32-bit registers...
31 Jul 2011 by SivakumarPVP
Hi,When WPD(Word Perfect Document) file with graphic content is opened using MS Word 2007, “WordPerfect 6.x - 7.0 Conversion" dialog is getting displayed.Is there any setting(in registry or Word) which will make "MS Word 2007" not to display the "WordPerfect 6.x -7.0 Conversion" dialog?...
18 Apr 2011 by mohammadghaderian.bp
HiI develop an application that need flash player.when we run setup in computer flash10d.ocx register by regsrv32.but i have one problem if new version of flash player was installed to computer prevent registering flash10d.ocx and my application was not run.can you suggest me a...
24 Sep 2013 by Richard MacCutchan
You need to create a loop and save the intermediate value each time. My assembler is extremely rusty (so there are probably some obvious mistakes) but I would think something like:total: dw 0 ; a zeroised word xor ax,ax move total,ax ; set total to zero mov cx,4 ...
16 Apr 2014 by danee54
I have added this code for run at start uppublic static void AddApplicationToStartup(){ using (RegistryKey key = Registry.CurrentUser.OpenSubKey("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run", true)) { key.SetValue("My Program", "\"" + Application.ExecutablePath +...
30 Sep 2014 by Member 11121464
Hello everyone!I have recently installed UserCakes registration/user system on my website.I want to make it so that registration is available only to users that pay a monthly fee.Does anyone have any advice on how I would go about doing this or where I could get some information? I'm...
12 Dec 2016 by Member 10852608
i want to set hardware breakpoint to address in the memory without using CreateProcess functionWhat I have tried:ps : this code work finebool dwResult; STARTUPINFO sinfo; DEBUG_EVENT DebugEvent; memset(&sinfo, 0, sizeof(sinfo)); dwResult = CreateProcess("MainWindow.exe",...
8 Feb 2012 by bpatron
i have 4 ports usb in my computer, and what i need is:any device that connects to port 1 for example has the always the same com,what i need is that, exampleport 1 ,com4port 2 ,com5port 3 ,com6port 4 ,com7any device what i connect to the port i need what have the define...
21 Jun 2012 by ♥…ЯҠ…♥
I'm working on COM, but i'm rookie. I want to know some basic concepts about it.What is the difference between registering the dll and deploying the dll.Please explain with some screen shots. If there is any article please let me know. I've searched a lot with snap shots and its...
28 Jul 2013 by Mohan Gopi
Hi Friends, I created and tried to import a .reg file but I received the error: Cannot import myfile.reg. The specified file is not a registry script. You can only import binary registry files from within the registry editor. So can any one suggest me, How to import .reg file into...
30 Dec 2013 by OlciBzdmr
I made a login and register page using with ASP.Net and I use MSSQL.Login is OKRegister is OKI have a facebook API key.How to pass with FaceBook Login while Im in login page?Im a Junior Developer. Thank you for your attention.
4 Sep 2014 by user8x86
Your mean is: The time - which Microsoft calculates in order to "swap out" any process and "swap in" another process - is static (Can't be changed)?
26 Apr 2021 by Gray Kim
import java.util.*; public class logIn public static void main(String [] args){ Register register = new Register(); try (Scanner mogu = new Scanner(System.in)){ System.out.print("Enter your username:"); String userName...