₦airaland Forum

Welcome, Guest: RegisterLoginWith GoogleTrendingRecentNew

Stats: 3,331,367 members, 8,449,969 topics. Date: Wednesday, 22 July 2026 at 03:31 PM

Toggle theme

Immanuelar's Posts

Nairaland ForumImmanuelar's ProfileImmanuelar's Posts

1 2 3 4 5 6 7 8 ... 29 30 31 32 33 34 35 36 37 (of 43 pages)

Technology MarketRe: Tecno N3,Nokia 6630 and Nokia E72 For Fast Sale 08all Or Whatsapp by Immanuelar(op): 4:37pm On Sep 20, 2013
still available
Technology MarketRe: Tecno N3,Nokia 6630 and Nokia E72 For Fast Sale 08all Or Whatsapp by Immanuelar(op): 4:26pm On Sep 20, 2013
sherif4owo: e72 price dey increase?
its 9k
Technology MarketRe: Tecno N3,Nokia 6630 and Nokia E72 For Fast Sale 08all Or Whatsapp by Immanuelar(op): 9:15am On Sep 20, 2013
Still available Nokia E72 -10k, Tecno N3-8k
Technology MarketRe: Tecno N3,Nokia 6630 and Nokia E72 For Fast Sale 08all Or Whatsapp by Immanuelar(op): 7:34am On Sep 20, 2013
Still available.
Technology MarketRe: Tecno N3,Nokia 6630 and Nokia E72 For Fast Sale 08all Or Whatsapp by Immanuelar(op): 5:42pm On Sep 19, 2013
still available
Technology MarketRe: Tecno N3,Nokia 6630 and Nokia E72 For Fast Sale 08all Or Whatsapp by Immanuelar(op): 1:48pm On Sep 19, 2013
still avail
Technology MarketTecno N3,Nokia 6630 and Nokia E72 For Fast Sale 08all Or Whatsapp by Immanuelar(op):
Tecno N3 Android phone, Nokia E72 Symbian and nokia 6630 symbian for fast sale ,both in good condition and working perfectly with lots of games and applications. NO SWAP please
Nokia E72- 9k
Tecno N3 - 8k
Nokia 6630 - 4k location -osun stat
call or whatsapp.
Technology MarketRe: Clean Nokia E72 For Sale (pics ) by Immanuelar(m): 9:48am On Sep 19, 2013
still available
Jokes EtcRe: Facts About Engineers by Immanuelar(m): 7:45am On Sep 19, 2013
hheehehee.... number 3,5 and 17 is about me. grin grin
Technology MarketRe: Clean Nokia E72 For Sale (pics ) by Immanuelar(m): 6:18am On Sep 17, 2013
gud morning
ComputersRe: Post Your Computer (PC) Troubles Here. by Immanuelar(m): 6:48am On Sep 05, 2013
please techs help me with this problem. My HP 620 laptop, anytime I insert disk into my DVD rom,it sees the disk as empty disk and when I click on it it will say the disk is empty even when it's not, av test many disk on it but the same thing happen. I av uninstall and reinstall the DVD rom driver several times but still to no avail. please what can I do. thanks
Christianity EtcRe: One Woman's Quest To Share Christ With A Muslim by Immanuelar(m): 4:40pm On Sep 04, 2013
[quote author=PAGAN 9JA]what kind of silly question is that?

The Gods are Spiritual Forces. You cannot "make" a God.

However all Gods are Created by the Creator God.

But the Creator Gods powers are only limited to Creation. Which is why we have many Gods/SPirits.[/quote]God created God's,right? then I think someone needs to as well create the God or he just exists? I wish to learn BRO.
Christianity EtcRe: One Woman's Quest To Share Christ With A Muslim by Immanuelar(m): 3:24pm On Sep 04, 2013
[quote author=PAGAN 9JA][size=28pt]BAN CHRISTIANITY/ISLAM, SAVE NAIJA!!!!!



THE GODS FOR NIGERIA![/size]

https://img.naij.com/n/04/d/strange-rituals-sifudu.jpg[/quote]pls I will like to ask you a question. who made the Gods?
PhonesRe: Tecno N3 Discussion Thread by Immanuelar(m): 6:01am On Sep 02, 2013
[quote author=GRIMM JOE][/quote]Grimm,are these games working on n3 and how did you do it. please reply. thanks
PhonesRe: A Soldier Stole My Iphone 4s by Immanuelar(m): 6:50pm On Aug 30, 2013
Don't do anything funny yet, am coming

ProgrammingRe: programmers Please Help A Friend on visual basic. by Immanuelar(op): 9:04am On Aug 26, 2013
jboy01: Sorry bro, i saw ur post yesterday but i was have headache, that was why i was unable to attend to it yesterday.
but i think this will be helpful.


Public Class Form1
'
'Since the program is to get both the even and odd number between two values,
'then the progaram is divided in to two subroutine.
'(1) The even subroutine :- Gets the even numbers between the two inputs
'(2) The odd subroutine :- Gets the odd numbers between the two inputs
'

Private Sub even() 'The even sub

Dim startnum As Integer = CInt(TextBox1.Text)
Dim endnum As Integer = CInt(TextBox2.Text) - 2
Dim even As Integer
If startnum Mod 2 = 1 Then
startnum = startnum - 1
even = startnum
While even < endnum
even = even + 2
System.Console.WriteLine("even : " & even)
End While
Else
even = startnum
While even < endnum
even = even + 2
System.Console.WriteLine("even : " & even)
End While
End If

End Sub



Private Sub odd() 'The odd sub
Dim startnum As Integer = CInt(TextBox1.Text)
Dim endnum As Integer = CInt(TextBox2.Text) - 2
Dim odd As Integer
If startnum Mod 2 = 1 Then
odd = startnum
While odd < endnum
odd = odd + 2
System.Console.WriteLine("odd : " & odd)
End While
Else
odd = startnum + 1
While odd < endnum
odd = odd + 2
System.Console.WriteLine("odd : " & odd)
End While
End If



End Sub

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim startnum As Integer = CInt(TextBox1.Text)
Dim endnum As Integer = CInt(TextBox2.Text)

If startnum > endnum Then
MsgBox("Incorrect input, The first input must be less than the Second input"wink
Else
Call even() 'Calling the even() subroutine
Call odd() 'Calling the odd() subroutine
End If
End Sub
End Class
thanks. will reshape the code to visual basic 6 and test it. thanks
ProgrammingRe: programmers Please Help A Friend on visual basic. by Immanuelar(op): 5:24am On Aug 26, 2013
ade77ade: very simple all you do is
1 validate to check is the values in the text box is numerical or empty
2 use modulo function to check the digits in the text-boxes (determines if its even or odd number)
3 declare two variables that will hold for odd numbers and even numbers
4 a set a counter to increment whatever the first text-box hold (by 1 is odd)
b set a counter to increment whatever the first text-box hold (by 1 is even)
5 loop in the counters
6 exit the loop if the result from the variable is equal to or greater than text box 2
do u mean something like this?
Priv sub command1 cclick

dim x, y ,counter as integer
x= val(text1.text)
y,=val(text2.text)
if x>y then msgbox "incorrect"
If ((x mod 2)=0) then
Counter =x+1
debug.print counter
do until counter =val(text2.text)
loop
else if ((x mod 2)<>0) then
counter =x+1
do until counter =val(text2.text)
loop
end if
debug.print counter

end sub


Please help me check the code and tell me where am wrong. Thanks
ProgrammingRe: programmers Please Help A Friend on visual basic. by Immanuelar(op): 5:01am On Aug 26, 2013
jboy01: is the program going to print the even digit separatly from the odd?
yeah it's going to print it.
PhonesRe: Mtn Bis Working Again With Out Vpn by Immanuelar(m): 10:35am On Aug 25, 2013
what can I say to you now?

ProgrammingRe: programmers Please Help A Friend on visual basic. by Immanuelar(op): 6:31pm On Aug 24, 2013
Nobody is gonna help me sad sad huh
ProgrammingRe: programmers Please Help A Friend on visual basic. by Immanuelar(op): 11:55am On Aug 24, 2013
slikcipher: Send me a mail...... Slikcipher@gmail.com
I have sent a mail.
ProgrammingRe: programmers Please Help A Friend on visual basic. by Immanuelar(op): 11:55am On Aug 24, 2013
someone please help me. you may give me only the algorithms and I will write the program myself.
Programmingprogrammers Please Help A Friend on visual basic. by Immanuelar(op):
Please help me out of this problem. I want to write a program that generates odd and even number within a particular range that is to be entered by the user in visual basic . That's i will have 2 textbox,one for the smaller and one for the highest. I have used several loop statement in other to generate either the odd or even number but to no avail .you can help with the algorithms in any prog language and I will write the program. Thanks
ComputersRe: Post Your Computer (PC) Troubles Here. by Immanuelar(m): 3:13pm On Aug 18, 2013
onegig: am sorry no one has answered your call for help. Going through your post its an hardware problem. The right click button of your touchpad is malfunctioning. Get a usb mouse which goes for around 250 connect it to the system. Start your system. Open my computer right click and choose properties. By the left hand pane select device manager. Click on mice and other pointing device. Disable the ps2 mouse or Synaptics touch pad by right clicking and selecting disable. Try this and get back to us.

Also since it works fine in safe mode then i would advise you go to the device manager and uninstall the driver. Also go to control panel- cs touch pad and also uninstal . Restart and get back here if it does not work.
i av uninstall the synaptic touch pad many times and reinstall but still to no avail. The mouse work well on save mode which makes me think that it's not a hardware problem but am going to use a USB mouse now to test it. Thanks
ComputersRe: Post Your Computer (PC) Troubles Here. by Immanuelar(m): 3:06pm On Aug 18, 2013
KnightsTemplar: Immanuelar,i listed suggestions to follow, where u able 2 do any of these. Let me know before we proceed
thanks for your response. By doing a factory reset means I am going to wipe my entire hard disk and I don't think I can do that. I will try using a USB mouse. Thanks.
ComputersRe: Post Your Computer (PC) Troubles Here. by Immanuelar(m): 6:02am On Aug 18, 2013
Immanuelar: tech pls help me,recently something strange started happenin on my hp probook 4515s,immediatly that i enter windows the right click option will start showin continously on d screen,and the left click may not work again,if i press the ctrl+ alt+del key,it will stop for a while
and start showin d right click option again continously.i av done several system restore but still there is no solution.pls wot can i do? the computer useless.it works fine in safe mode without any problem.i have scanned d pc d virus attack but der z n virus reported.please help
some1 pls help me o.Am beggin u.
ComputersRe: Post Your Computer (PC) Troubles Here. by Immanuelar(m):
tech pls help me,recently something strange started happenin on my hp probook 4515s,immediatly that i enter windows the right click option will start showin continously on d screen,and the left click may not work again,if i press the ctrl+ alt+del key,it will stop for a while
and start showin d right click option again continously.i av done several system restore but still there is no solution.pls wot can i do? the computer useless.it works fine in safe mode without any problem.i have scanned d pc d virus attack but der z n virus reported.please help
Christianity EtcRe: Are They Really Fasting?? by Immanuelar(m): 8:46pm On Aug 04, 2013
kevoh: Are you talking of the people that tried to cause mayhem today at St.Mary's church Nyanya,Abuja? No I doubt if they are fasting. I just lost my last ounce of respect for them after today.
People who fast don't walk around with daggers.People who fast obey instructions and not cause mini-riots up and down.
i think it's a path left for them by their leader to follow. can we really blame them. a leader whose life is full of violence and hatred.
Christianity EtcRe: Are They Really Fasting?? by Immanuelar(m): 8:42pm On Aug 04, 2013
[quote author=colo$$u$]Lwkmd....And they break their fast like this
||
||
||
||
\/[/quote]abi o.
Christianity EtcRe: Are They Really Fasting?? by Immanuelar(m): 8:06pm On Aug 04, 2013
it's true oo :oit's true oo shocked
ComputersRe: Post Your Computer (PC) Troubles Here. by Immanuelar(m): 1:36pm On Jul 20, 2013
techs,i want to ask if virus or a spyware can possibly stop a laptop keyboard from working.
PhonesRe: Solution To MTN BIS Problem "Android Users Only " by Immanuelar(op): 11:54am On Jul 19, 2013
davidssk: nice job./ but hw can i Upgrade ma accounthuhhuh?
it does not require you to upgrade your account however you can do that by purchasing the advance version .

1 2 3 4 5 6 7 8 ... 29 30 31 32 33 34 35 36 37 (of 43 pages)