Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,150,305 members, 7,808,034 topics. Date: Thursday, 25 April 2024 at 04:48 AM

Dellnet's Posts

Nairaland Forum / Dellnet's Profile / Dellnet's Posts

(1) (2) (3) (4) (5) (6) (7) (8) (9) (10) (of 32 pages)

Programming / Re: Jquery Ui Widget For Asp.net by dellnet: 10:49am On Dec 02, 2014
see sample http://jqueryui.com/autocomplete/
source code available as well.
Programming / Re: [Assignment Help] A Company Selling Cds And Dvds by dellnet: 7:37pm On Dec 01, 2014
Google INVENTORY MANAGEMENT SYSTEM
Travel / Re: Nigerians In Houston Pls Where Would You Consider A Safe And Best Area To Stay. by dellnet: 10:15am On Sep 06, 2013
Hey dude just joking with ya. Thought this would be something you would look up online easily. On a serious note SW Houston is a place to check but you should also consider north Houston places like greenspoint which is a bit quiet, cleaner and more calm than SW plus all the conveniences. Other places like sugar land etc are expensive and suitable if you are looking for a home there. But don't get me wrong houses are cheap in Third Ward.
Satellite TV Technology / Re: Google Named Its Latest Android Edition After A Chocolate Snacks "Kitkat" by dellnet: 1:46am On Sep 06, 2013
Android is getting better. I was impressed with 4.2 in comparison to the popular and universally deployed 2.3 (gingerbread). There has been significant improvement on stability and functionality of apps.
Programming / Re: Voice Advertisment To Cell Phone by dellnet: 1:37am On Sep 06, 2013
I have an app that I developed for symbian os then. It works with 2nd edition or 3rd edition Nokia phones can't remember which but I think we tested on Nokia 6600. Its a demo version and I have no use for it now I can give you the program including its source code if I can still find the source code. The demo is limited to calling 5 numbers.

I do have a channel that can make calls with your custom caller ID but it ain't free and has to be for legitimate purpose. For the demo program find a Nokia 6600 and send me your email address through YM I will forward it to you.

1 Like

Programming / Re: Why Waste 4 Years On Computer Science In University? by dellnet: 1:18am On Sep 06, 2013
Hmm the work on your own part; I hope not in Nigeria coz if it ain't government its shitty which the government will not employ you unless you have a certificate and corporates need it too unless its owned by your uncle then he can give you Head I.T. and you oversee the government contracts he gets from his political friends. Sorry just the Nigerian way of doing shit.

3 Likes

Programming / Re: Error Running An ASP.NET Project In VS.NET by dellnet: 4:49pm On Jul 27, 2013

1 Like

Programming / Re: Android Application With Vb.net by dellnet: 10:44am On Jul 24, 2013
C# not vb see it http://www. mono-project.com
Programming / Re: Error Running An ASP.NET Project In VS.NET by dellnet: 10:30am On Jul 24, 2013
Can't really say what's what till you post the full error. While at it include your web.config file here.
Programming / Re: Voice To Text Software by dellnet: 3:25am On Jul 18, 2013
Programming / Re: When To Choose Btw Rdbms And Non-rdbms? by dellnet: 3:19am On Jul 18, 2013
I have not see non-rdms in a long time.
Programming / Re: A Universal Sdk For Finger Print Scanner by dellnet: 3:15am On Jul 18, 2013
Microsoft does have a generic api for fingerprint scanners. For smart card reader put it into com mode and do some serial com programming.

1. Where can I get a magnetic stripe card in Nigeria?
2. Where can I get U are U android SDK free download?
Programming / Re: Vb.net With Mysql by dellnet: 5:03pm On Jul 05, 2013
At has to throw an error somewhere. Definitely your INSERT STATEMENT is wrong
change
Catch ex As Exception
MsgBox("Your Record Added Successfully!", MsgBoxStyle.Information, "Successful!")
End Try

to

Catch ex As Exception
MsgBox(ex.Message)
End Try

post back the error
Webmasters / Re: Jqueryui.com Not Loading by dellnet: 10:23am On Feb 01, 2013
@prince What network are you using to access the net? Ive used airtel and mtn no success.
Webmasters / Re: Jqueryui.com Not Loading by dellnet: 6:03pm On Jan 31, 2013

Webmasters / Re: Jqueryui.com Not Loading by dellnet: 8:20am On Jan 31, 2013
It seems it is blocked when using Nigerian IP.
Webmasters / Jqueryui.com Not Loading by dellnet: 12:33am On Jan 30, 2013
jqueryui.com not loading on this end
Programming / Re: Pos Terminal Connectivity To Web Server by dellnet: 12:29pm On Sep 02, 2012
Programming / Re: Pos Terminal Connectivity To Web Server by dellnet: 6:10pm On Sep 01, 2012
what kind of POS?

1 Like

Programming / Re: Connecting To A Remote Database by dellnet: 12:45pm On Aug 30, 2012
Well as said earlier you need a "middle-man" that will take the request and query the database.You should look at n-tier applications.
Programming / Re: Connecting To A Remote Database by dellnet: 12:04pm On Aug 30, 2012
As you would with a login screen then save the details to a file or registry on next startup the program will read from there.
Programming / Re: Connecting To A Remote Database by dellnet: 11:08am On Aug 30, 2012
Why don't you setup a config file or registry entry to ask for the information on the fly? this way no sensitive information is stored in your code. It is bad practice to store password, username etc in your code.
Programming / Re: Redirect User To Different Pages On First Time Login by dellnet: 10:56am On Aug 30, 2012
mysql_query()will return success if the query is valid. Here is something:

$checkvisits = "SELECT firsttime FROM churchushers WHERE user=$user";
$res = mysql_query($checkvisits);
if ($res) //i.e. if the query returns success, fetch the result
{
$crude = mysql_fetch_row($res);
if($crude[0] == 1) //in this case it is "an old user"
{
//go ahead and redirect appropriately
//header("Location:blah_blah" );

}
else if ($crude[0] == 0) //in this case "new user"
{
$sqlupdate ="UPDATE churchusers SET firsttime = 1 WHERE user=".$user;
mysql_query($sqlupdate ) ;
//redirect appropriately
//header("Location:blah_blah" ) ;
}
}

The code does not check for errors for example if the query exist or is valid. For more info on php mysql functions visit http://php.net/manual/en/ref.mysql.php
Software/Programmer Market / Re: Online Software Application Testers by dellnet: 4:02pm On Aug 27, 2012
Interested.
Programming / Re: Running Software From A Server To A Local Pc by dellnet: 3:58pm On Aug 27, 2012
What language are you looking at? If you look at the banking industry they use similar to what you want to do.
Programming / Re: Running Software From A Server To A Local Pc by dellnet: 9:51am On Aug 27, 2012
If you want to have access to the application as a whole you can consider using RDP/RDC. Remote Desktop Protocol or Remote Desktop Connection gives you access to remote operating systems without concern for the connection. For example if your application is running on a linux server you can use RDP to connect to the linux server o/s and interact with the application and the whole linux server o/s regardless of your operating system.
Phones / Re: Anyone Noticed Illegal Credit Deduction From Glo? by dellnet: 11:35pm On Aug 25, 2012
I think glo is hacked because some lines can make free international calls.
Webmasters / Re: What Is Wrong With Yahoo Mail? by dellnet: 11:23pm On Aug 25, 2012
If you are on Glo Network just stay off it you will have full access to your ymail. Glo IP sucks.
Programming / Re: VB.NET Problem, Printing Receipt With Thermal Printer From Crystal Report. by dellnet: 11:10pm On Aug 25, 2012
You should look at PrintToPrinter Method
Programming / Re: Why Is This Not Working For Me by dellnet: 11:06pm On Aug 25, 2012
<input type="submit" value="Send" name="button1" id="hello" onclick="alert('hello');">

(1) (2) (3) (4) (5) (6) (7) (8) (9) (10) (of 32 pages)

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 28
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.