Posts
 
Reputation
Joined
Last Seen
Ranked #1K
Strength to Increase Rep
+4
Strength to Decrease Rep
-1
50% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
Ranked #3K
~8K People Reached
Favorite Tags
Member Avatar for jt_murphree

I have a question involving interaction with oracle. I have a program that submits data to a SSRS report which is pulling data from an oracle database. Basically what I need to do is have a string of text passed in and return all records where a job id field …

Member Avatar for Momerath
0
96
Member Avatar for jt_murphree

So I am trying to create a console app to parse text files. I am using a streamreader to read the text in until I reach end of file. The text file I am reading as 22945 lines. Right now I am just trying to read the entire file and …

Member Avatar for jt_murphree
0
151
Member Avatar for YouKnowIt

Hey everyone, been using this site for a lot of my programming needs, but is time I would appreciate some help. Just started assembly language and I am having trouble with a problem. The question: Write a program that will prompt the user to enter a number and then the …

Member Avatar for adnanshahid89
0
2K
Member Avatar for jt_murphree

I am new to android development and I have been asked to create a do not call application. Essentially what this app will do is allow the user to store data on the device and then submit it to the do not call database. I have all the UIs created …

Member Avatar for peter_budo
0
101
Member Avatar for jt_murphree

I am not sure if this is the right place to post this or not. I have a C application that I have written for linux that I would like to write a GUI for. I am trying to get up an running using GTK. Can anyone direct me to …

0
55
Member Avatar for jt_murphree

I have a form with a table bound to a binding navigator. When I add a new record and commit it to the database I have to query the DB for the id of the record in order to to cave other records associated with the new one. The only …

0
67
Member Avatar for dre-logics

I use visual basic 8.0 en MySQL. I have a connection witho my MySQL database "test" with Myconn. I have two table's : Rental Articlenr Articledis Articlerent 100 beerclass 15 200 wineclass 10 Stock Articlenr Articledis stock 200 Wineclass 25 So far i have this : [code]Dim con As New …

Member Avatar for dre-logics
0
329
Member Avatar for jt_murphree

I am trying to use the validation event for all my validating on a form. However, if I try to exit the form before entering data the validation event will not allow it to exit. Does anyone know how to override this?

0
51
Member Avatar for jt_murphree

I have a combobox that pulls a list of values from a database. When a new entry is entered I want an entry in the combobox to read "New record". However, from what I have seen I can only insert and object, such as a DataRow, into the combobox. Is …

Member Avatar for jt_murphree
0
811
Member Avatar for jt_murphree

I have been looking over some old vb 6 code and I noticed that there was a way to set the index of a listbox to a new value. For instance, if you wanted to populate a listbox with items from a database you could assign an id value from …

Member Avatar for TomW
0
76
Member Avatar for jt_murphree

I am new to writing assembly in linux and I need help with the sys_read call. I am using nasm and I would like to read input from the keyboard. I know how to set the call up but what do I use for the file descriptor. I can not …

Member Avatar for ZYV
-1
100
Member Avatar for ericlwj

Greetings to all, I am a Computing Science Student and am currently undertaking a final year project. I have done some research on RFID and WAP, but were unable to find a clear answer to the differences between the Radio Wave of RFID standard and WIFI. I wanted to do …

Member Avatar for thoughtcoder
0
821
Member Avatar for OzY360

Right, i've got my program working and it does what its supposed to do. You will see in the code that i have several Macros and i think there is something wrong in the 'UpToLow' Macro, so just look for that label. I cant figure it out... basically what the …

Member Avatar for OzY360
0
108
Member Avatar for crashandburn

I have problem with compiling my programs in Linux(Slackware) with NASM nasm -o hello hello.S i dont know does i doing something wrong or does context of writing a assembly code are different for different processors and processors words??? here are my code : the result of code are Segmetation …

Member Avatar for jt_murphree
0
77
Member Avatar for yuriythebest

right, I am trying to do a task where I should convert 2A45 to a pair of ascii characters, however the presence of the "A" (10) confuses me- if I convert it to decimal I get 10821 which is 5 characters not 4.

Member Avatar for jt_murphree
0
87
Member Avatar for venomxxl

Hello everyone, I started learning assembly yesterday. Yes maybe I chose a wrong guide but I have a little problem here. It's about getting some integers without a newline. That is probably very easy to solve but I was searching for a solution for a few hours and no results. …

Member Avatar for jt_murphree
0
196
Member Avatar for ndalli

Hi, I am learning ASM and have encountered a problem. I have the following statements. When debugging I am seeing that the value in AL is not being inserted as 02h. On the other hand if I change "mov al, [myNumber]" to "mov al, 02h", I get the desired value. …

Member Avatar for jt_murphree
0
112
Member Avatar for jt_murphree

I am attempting to write assembly code for linux using nasm. I have an include file containing io functions that was originally written for windows using masm and I am trying to convert it. I have on procedure that I am having problems with. The procedure is supposed to recieve …

Member Avatar for jt_murphree
0
1K
Member Avatar for carson myers

so I have this working procedure that is basically like func. 09h of int 21h except it terminates at 00h, and it uses 01h-04h as control characters that determine the style of the text. I wrote it in the main procedure of a test program to get it working, and …

Member Avatar for carson myers
0
166
Member Avatar for carson myers

so, I want to avoid using int 21h and start working with BIOS level code. I'm trying to write something equivalent to int 21h, function 09h, using int 10h functions 09h, 03h, and 02h, except I want the reading to terminate when it reaches a 00h character, switch to green …

Member Avatar for carson myers
0
606
Member Avatar for Salizer

Hi, I have a problem with using variables in assembly. I´m new to assembly and I am trying to use Roby´s programming tutorial: [url]http://geocities.com/SiliconValley/Park/3230/x86asm/asml1001.html[/url] The problem is that when I have declared a variable and try to move it. For example: ideal p286n model tiny codeseg org 100h var1 dw …

Member Avatar for Salizer
0
159
Member Avatar for windany

It is meant to count the first two numbers in the array and then place them in ascending order, but sth wrong. Any idea? [code=assembly] Code segment jmp main add1 dw 9,3,2,7,1,4,2,5,8,1 main: mov si,0 call orderab exit: mov ax,04c00h int 21h orderab: cmp add1[si],add1[si+2] jle finish mov ax,add1[si] mov …

Member Avatar for jt_murphree
0
146
Member Avatar for tictac

Hello, I'm new to assembly programming and I'm facing some problems using the "as/gcc" compiler on my MacBook. For example, it seems that I can't use labels for jmps/loops. The following code: [code] .intel_syntax noprefix ... ... cicle: <instructions> <instructions> <...> loop cicle [/code] Returns the error: "t.s:16:suffix or operands …

Member Avatar for jt_murphree
0
94
Member Avatar for SmokyMo

I have an array of strings. I want to find an element of array How do I do that? Here is what I tried, it should print out anything but its still does. [CODE] .model small .stack .data goldenboard db "1$","2$","3$","4$","5$","6$","7$","8$","9$","A$","B$","C$","D$","E$","F$","_$" var db "1$" .code mov al,[goldenboard] mov bl,[var] cmp …

Member Avatar for jt_murphree
0
96
Member Avatar for jt_murphree

Hello all. This past semester I took assembly programming. The programs in class were done on windwos machines and now I am trying to write some assembly on my linux machine, which has an intel 64bit processor. I am having a problem converting integers to ascii for output. I am …

Member Avatar for jt_murphree
0
192