Software developer with five years experience in developing web based applications with PHP. I have also developed applications with C# and trained users on how to leverage Microsoft technologies in their day to day businesses having been a Microsoft…
- Interests
- vb.net, php, android, javascript
- PC Specs
- Toshiba Satellite c660 Core i3
36 Posted Topics
Re: You are just experiencing the same thing we have. It's never about how many sleepless nights but the what you can show at the end of it all. The fact that you have a passion for something means that you might after all, be cut out for it. Computer science … | |
Re: Do you want to save the data to the db or query it. Please repost the code with the sql code where its supposed to be. | |
Re: I love the initiaion here and i am anxiously waiting for the simple vending machine tutorial. I am one of those guys who were in a class where the lecturer started by Java can do everything but i am yet to accomplish something ... | |
Re: There is already free code that you can use: http://sourceforge.net/projects/phplivestream/ | |
Re: Its clear from the source code: https://raw.githubusercontent.com/libgdx/libgdx/master/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/Label.java labels do not have a select method on them that means you were actually creating your own. I noticed that the ui package has a button class. Could you try making the MenuItem extend the Button class and probably tweak its look??? | |
Hi, I am currently porting one of my apps to the windows phone. I have issues with the design I see in blender and the design I see when I run my app. It seems that the fonts work work in design mode but not in preview. This is what … | |
Re: I think the best way to insert would be to insert it as a background image. JtextArea textArea = new JtextArea(){ public void paintComponent(Graphics g){ // the image variable should be replaced with your image g.drawImage(image, 0, 0, (int)getSize().getWidth(), (int)getSize().getHeight(), this); super.paintComponent(g); } }; | |
I have a class which connects to the db(sql server). I have a login class which authenticates the user away from the frmLogin form. Each time i click login, i get an error Executereader requires an open connection. I tried reversing the order of some variables but to no success. … | |
Re: Remove this two properties from your #footer clear: left; padding-bottom: 74px; and you should have everything back to normal. | |
Re: Depends highly on the direction you are planning to take. Java is powerful but takes time to understand it (to guru level) compared to python. You have to remember that Java is widely used around the world, from set top boxes to phones. You should consider python if you want … | |
Hi, I have ben having problems making an instance of sqldatareader. I keep getting a squigly line under my datareader object with a message saying that unreachable code detected. Here is my code: using System; using System.Windows.Forms; using System.Collections.Generic; using System.Data.SqlClient; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Albergo.Classes { … | |
I have a list of titles i want to display to the main activity so that each time the user starts the app, they can select an option from the data they gave previously. My problem is converting the cursor to array successfully so that i can maintain the ids … | |
Re: After all this, i cant believe that Microsoft has the nerve to exist ... nkt!!! ![]() | |
Re: Have you tried placing the access db file in a different path from the specific program file ? You can also give your user an option of backing up the db, this action maybe copying it to the desktop or drive C. | |
hello guys, i have an sql statement that is supposed to be returning data from two tables that i have joined. Here is the code below: sql = "SELECT rooms.roomID, rooms.roomNumber, rooms.roomStatus, " & _ "roomType.roomType, roomType.adultRate, roomType.childrenRate, roomType.roomTypeID FROM rooms " & _ "JOIN roomType on rooms.roomType = roomType.roomTypeID" … | |
hi, I have two sql strings being executed at the same time one of which is an update statement and the other a save statement. The save statement works but the update statement does not. Here is the error i am receiving System.NullReferenceException: Object reference not set to an instance … | |
Re: I dont know about text boxes but i managed to pull it off using a list view Public Class Form1 Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load ListView1.Columns.Add("Dates", 100, HorizontalAlignment.Center) ListView1.View = View.Details ListView1.GridLines = True ListView1.FullRowSelect = True End Sub Private Sub Button1_Click(ByVal sender … | |
hi, I am using an access database and i have a form with a text box for entering the email address. I keep on getting errors each time i save to the database, below is the code i use Try sql = "INSERT INTO customers (fname,lname,mobileNo,email,countryID,IDTypeID,identification,roomNo,dateIn,daysIn,dateOut,noOfAdults,noOfChildren,adultTotal,childrenTotal,Total)" & _ "VALUES(" & … | |
Hi, I have an error with this function at runtime Private Sub adultPay() sql = "SELECT adultRate FROM roomType WHERE roomType = " & rumType.ToString & "" connectDatabase() Using da As New OleDb.OleDbDataAdapter(sql, con) Using ds As New DataSet Try da.Fill(ds, "AdultRate") 'error here Dim adultRate As String = ds.Tables("AdultRate").Rows(0).Item(0).ToString … | |
i have a code that creates a login password for a user in my android app. The code first of all compares the setPass and the confirmation pass then saves it in the db. My problem is that its doing the checking on the first part of the if function … | |
Re: <!doctype html> <html lang="en"> <head> <meta charset="utf-8" /> </head> <body> </body> </html> | |
Hello guys, I am a dude who used to work with vb.net until i joined college where Java rules the day. I have a project in which i have a database in sqllite and i want the db to be in the same folder as the executable file(jar in this … | |
Hi guys, I normally package a dotnet installer and my software installer for my client and he normally has to install each seperately. Is there a way i can add dotnet installer to my project installer... I do not want to use third party apps like install shield wizard... You … | |
Re: Whether android is here or iOS was there, i have to say that HTML5 has proven itself to be the bull with the bell. Firefox os is also on the rise since the mozilla community is one of the largest open source families... Doubt if microsoft will have a space … | |
Re: PLease don't rely on the project converters as they do more harm than good. You will start soling unncessary bugs. Try to just do the projects all over again in vb.net, who knows you might find better ways of solving some of your functions ... | |
hello i am having problems installing my zte broadband in ubuntu 12.04 or even fedora 17. can anybody help out. | |
hi guys, i have a database which has employee records for a hrms system. i would like to be able to print payslips of all employees without having to open every record and use the javascript window.print() function. Please help ![]() | |
hello guys, how do you write app.path in vb.net coz it works in vb6 but not in dotnet | |
Hallo guys, i am new to php. i would like to create a php page that would allow the contents of a folder (word documents) to be displayed on my web page ready for download. i have one end where the files are uploaded from but this other end is … | |
a friend of mine told me that there are websites that are designed using css only, no html or div involved. does anyone here know about it. if so, could u direct me to a site that would be helpful in my learning? :) | |
hi guys, am pretty new to socket programming in vb.net . i am used to the winsock control in vb6 but it seems that vb.net has a difft approach as i could not find the control. Could someone please explain to me about sockets | |
Hello, i am developing a bidding system that will be used across a network. Could someone please help me on the network code to interconnect the server and the clients from each end and also the code for sending the data across the network | |
Hi, I am using vb.net 2008. Each time i run my project, i get an error message that the assembly could not be loaded and that i need an assembly manifest HELP!!! | |
honestly, could someone come up with a simple method on how to link vs.net 2002 and ms access 2003 |
The End.