Click here to Skip to main content
Page 1 of 12
Page Size: 10 · 25 · 50


Tag filtered by:  ASM [x]
Question 13 May 2013   license: CPOL
Hello guys,I have problem, I want to add new section to PE section header automatically.AddNewSection PROC szName:DWORD, dwSize:DWORD,...
ASM
Article 10 May 2013   license: CPOL
This article explains why the Arduino digital I/O functions are slow and compares them with faster implementation used in Wiring framework.
Answer 7 May 2013   license: CPOL
You are using SetFilePointerEx() which expects a LARGE_INTEGER (64 bit) as distance parameter but pushes only a 32 bit word on the stack.Because you are reading from the begin of the file, using SetFilePointer() might be sufficient.
Question 7 May 2013   license: CPOL
Hello guys,I posted in morning about how can I read specific address from the file, and CPallini had answered me and the solution he gave me worked.Now, the problem is when I use SetPointerEx twice I got this error "ERROR_INVALID_PARAMETER", I read in msdn about it and msdn gave me what...
Answer 6 May 2013   license: CPOL
I finally found the problem, the problem was me :)The problem is when I call WriteFile or ReadFile the function will write on BytesRead or BytesWritten which means that I must give the effective address of the variable.In MASM32: PUSH 0 ; /pOverlapped = NULL ...
Question 5 May 2013   license: CPOL
Hello guys,I have problem with reading or writing files in C++ and MASM32. The problem is when calling the ReadFile or WriteFile the program give an exception saying "Access violation at address 0000".This is the code in MASM32: ...
Answer 5 May 2013   license: CPOL
Try to use something like: TCHAR Buffer[256] = "Hello"; .... hFile = CreateFile("rw.txt", GENERIC_WRITE, 0, NULL,CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, NULL); if (hFile == INVALID_HANDLE_VALUE) { printf("ERROR %x \n",GetLastError()); ...
Answer 5 May 2013   license: CPOL
at first i would use a complete path for opening the file and think about all flags.What is the value of BytesWritten?AND CHECK ALL API-RETURN VALUES :mad:
Answer 5 May 2013   license: CPOL
i guess you havent open an file. Did you check the return codes of the API.Try it first in C and "show your code" ;-)
Answer 5 May 2013   license: CPOL
You don't have the OLEDB provider installed on your IIS server. You could install the Microsoft Access Jet redistributable package to achieve this.
Answer 5 May 2013   license: CPOL
See past answer: The 'Microsoft.Jet.OLEDB.4.0' provider is not registered on the local machine[^]More from other...
Question 5 May 2013   license: CPOL
Hi, I am using asp.net with ms- access db in the connection i got error ? how to fix that error?The 'Microsoft.Jet.OLEDB.4.0' provider is not registered on the local machine. how to registered
Answer 1 May 2013   license: CPOL
The libraries depends on the platform. They are the object files or libraries, in the same format as the one used when you create object files or libraries using high-level computer language. This way, you can combine different languages, including assembly language, to create a sinlge...
ASM
Question 1 May 2013   license: CPOL
what are the Private libraries in assembly language and What are libraries in assembly languageand What libraries on 32bit and 64bit
ASM
Question 22 Apr 2013   license: CPOL
Hi,I want to make a web-application as like YouTube where I have a directory name "Video" and there will lots of video file. When my application will run it will read all video files and show in index.php as a thumbnails list of 10 videos and paging then as like page-1,2,3.How can I do this?
Answer 19 Apr 2013   license: CPOL
Try adding quotes:LOAD DATA INFILE " + path + " INSERT INTO TABLE sla1 FIELDS TERMINATED BY ',' LINES TERMINATED BY '\n' IGNORE 1 LINESBecomesLOAD DATA INFILE '" + path + "' INSERT INTO TABLE sla1 FIELDS TERMINATED BY ',' LINES TERMINATED BY '\n' IGNORE 1 LINES
Question 19 Apr 2013   license: CPOL
Sir why it not work when there is no syntax error.Here my (string insquery = "INSERT INTO sla (month, year, contenttype) VALUES(@month, @year, @contenttype)";) that query work fine but why it will not work (LOAD DATA INFILE " + path + " INSERT INTO TABLE sla1 FIELDS TERMINATED BY ',' LINES...
Question 19 Apr 2013   license: CPOL
string path = FileUpload1.PostedFile.FileName;string ext = Path.GetExtension(path);string contenttype = string.Empty;if (!FileUpload1.HasFile){ ClientScript.RegisterStartupScript(Page.GetType(), "validation", "alert('Please select a file')"); ...
Answer 14 Apr 2013   license: CPOL
Most of the times I do ask questions and I do get answers like...."You should solve yourself or you should look up into some dictionary etc...or you should really work hard and no one is going to help you out with explanations to minute details etc.," and I do agree to myself that solving on my...
ASM
Answer 13 Apr 2013   license: CPOL
Sooooo..... you're asking us to help you make a virus??That's just not going to happen. Doing such is actually illegal in some parts of the world and we're not going to be complicit (and liable) in your little schemes.
Answer 13 Apr 2013   license: CPOL
The question does not really make sense."How to technically write it" does not make sense if you are talking about the stack. It is already exists.Stack is some memory which is, in case of 16-bit real mode (Intel 8086/8088 memory model), is always addressed as segment-offset ss:sp (ss is...
ASM
Answer 13 Apr 2013   license: CPOL
Is there an intentional omission of the "byte ptr" operator?In x86 everything uses the same stack space. It's ridiculous.
ASM
Question 13 Apr 2013   license: CPOL
Hi,All I am trying to do is to create a very simple boot loader using GNU AS assembler.I tried to compile a C program using gcc to see the assembly code generated so that I could you a similar way in passing the arguments and here is where I am struck and is mentioned below.Processor:...
ASM
Answer 8 Apr 2013   license: CPOL
First of all, get rid of such an unsafe schema where you can encrypt a password. In any decent authentication model, a password cannot be "decrypted"; this is never needed.Surprised? Please see my past answers for further detail:storing password value int sql server with secure...
Answer 8 Apr 2013   license: CPOL
If you have used any of the "standard" tools for encryption then they are specifically designed to prevent decryption - you would be better off offering a replace-password option with (encrypted) security questions to validate.Have a look at the discussions here...
Question 8 Apr 2013   license: CPOL
Hi All,I have used memebership in my database,and in aspnet_membership table the password is saved in encrypted format ,now i want to provide forgot password option to userhow can i get the decrypted original password from databasecan anybody pls help me its urgent..Thanks in advance
Answer 2 Apr 2013   license: CPOL
Substituted this code below:X: For i = 0 To a.GetUpperBound(0) t = arbit.Next(1, 99) If Array.IndexOf(a, t) = -1 Then a(i) = t Else GoTo X End If ...
Answer 2 Apr 2013   license: CPOL
That is a really simple sounding request but has a very complex answer. It is one that you will be fighting the security system over. Doing this kind of thing is very sensitive on just about any machine.Really what you are wanting to do is at the basis of any operating system, and it could...
Question 2 Apr 2013   license: CPOL
How to write exe to MBR and start process from master boot record. This process must be visible in process list(task manager, for example).Thanks.
Question 1 Apr 2013   license: CPOL
My web app sometimes struggles to load and other times doesn't load at all, and this has got me wondering why? I suspect the array, and the randomization i'm using. Please programmers, i need your help, if there is some best practise i can do to help solve this problem. This is the code i...
Tip/Trick 1 Apr 2013   license: CPOL
How to show a message from assembly.
ASM
Answer 31 Mar 2013   license: CPOL
Following should help you get started:ASP.NET Embedded Video Player (YouTube™ API, C#) video streaming with ASP.NET 2.0, IIS and HTTP handler display video in .net ( C# with Asp.net )Display videos in ASP.NET 2.0
Question 31 Mar 2013   license: CPOL
hey guys. I wnt know that what is the procedure to make a simple video chat web appplication using asp.net C#. If anyone has such project the send it to me on ominglechat@gmail.com Plz guys its urgent,...
Answer 28 Mar 2013   license: CPOL
This is the solution for real mode, DOS (required to use int 0x21, which is the DOS "system call"): http://montcs.bloomu.edu/Code/Asm.and.C/Asm.Nasm/hello-in-assembly.shtml[^].If this is not it, please provide further detail on your platform; please see my comment to the question.You...
ASM
Question 28 Mar 2013   license: CPOL
Hi,As a very beginner to assembly language all I am trying to do is to access a globally declared string in assembly program and print its content character by character( for now i m trying to print only first character...for testing purpose) but something is really going wrong. Could you...
ASM
Answer 27 Mar 2013   license: CPOL
Push the address of the string on stack, that's all. All further detail depend on many factors; please see my comment to the question.—SA
ASM
Question 27 Mar 2013   license: CPOL
Hi,I am a very beginner to assembly programming and trying to figure out how to pass a string as an argument to a function(sub program) in nasm and then print character by character.Note: 16 bit assembler, utilizing stackscould you please help me in this regards.
ASM
Answer 25 Mar 2013   license: CPOL
This question caught my eye. I think it is great that you are interested in exploring the low level universe of programming. It can be a frustrating experience, but when you get something working and you understand what you just did, it is a great feeling.I used Turbo C many years ago when...
Answer 25 Mar 2013   license: CPOL
Try this:_asm{ mov eax, #FFFF; ....}http://www.cs.virginia.edu/~evans/cs216/guides/x86.html[^]http://static.patater.com/gbaguy/x86asm.htm[^]
Question 25 Mar 2013   license: CPOL
I am a novice C/C++ developer still in college. One of the topics that I would like to explore is the inline assembly that C language has. However, I have not been able to locate any resource (via google) that teaches me how to use inline assembly in the Turbo C IDE. I am using Turbo C as it is...
Article 24 Mar 2013   license: CPOL
A beginner's guide to talking like a computer.
Answer 20 Mar 2013   license: CPOL
i can't get error by using this code. Try this code!!just modify onclick event of button.aspx:
Question 17 Mar 2013   license: CPOL
i m creating a chat system and i want the idea same as iweb.com. kindly check the attached image ans see my idea, and suggest me the solution.imagethanks in advance
Question 17 Mar 2013   license: CPOL
.model tiny.stack.datamsgLED db "Turn off all LED at parallel port...$", 0ah, 0dh.codestart:mov ax, @datamov ds, axmov dx, offset msgLEDmov ah, 09hint 21hmov al, 0hmov dx, 378hout dx, almov ax, 4c00hint 21hend startaccording to my reasearch this code will turn...
ASM
Answer 17 Mar 2013   license: CPOL
If you want a "cheat sheet", use the -S option on GCC, e.g. gcc -S binary.c. This results in a binary.s file. Learn to read the content of that binary.s file and you will get into assembly language.Once you understand reading this and isolate the function you need to write yourself, you are...
Question 16 Mar 2013   license: CPOL
Can Someone here Than can Covert this C language code to ASsembly language code ??#include#include/* NOTE:Don't forget to add the -l ioports option under Tools->Compiler optionsThis will add the ioport interface libraryOR from the command line: ...

Page 1 of 12
1 2 3 4 5 6 7 8 9 10


Advertise | Privacy | Mobile
Web02 | 2.6.130513.1 | Last Updated 14 May 2013
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid