Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
50% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
2
0 Endorsements
Ranked #2K
~13.0K People Reached
About Me

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
Favorite Tags

36 Posted Topics

Member Avatar for Malivice26

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 …

Member Avatar for Lisa_20
0
515
Member Avatar for janicemurby

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.

Member Avatar for Galbatorix
0
173
Member Avatar for JamesCherrill

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 ...

Member Avatar for Alok_5
20
3K
Member Avatar for chaitu11
Member Avatar for createwebsiteandsellwebsite
0
252
Member Avatar for Doogledude123

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???

Member Avatar for Galbatorix
0
678
Member Avatar for Galbatorix

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 …

0
92
Member Avatar for sammygreat1234

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); } };

Member Avatar for sammygreat1234
0
2K
Member Avatar for Galbatorix

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. …

Member Avatar for Galbatorix
0
180
Member Avatar for christin_1

Remove this two properties from your #footer clear: left; padding-bottom: 74px; and you should have everything back to normal.

Member Avatar for jrewing
0
189
Member Avatar for paramesh23
Member Avatar for Trap910

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 …

Member Avatar for vegaseat
0
282
Member Avatar for Galbatorix

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 { …

Member Avatar for Galbatorix
0
151
Member Avatar for Galbatorix

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 …

Member Avatar for peter_budo
0
127
Member Avatar for happygeek
Member Avatar for sonyj

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.

Member Avatar for Galbatorix
0
76
Member Avatar for Galbatorix

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" …

Member Avatar for Galbatorix
0
803
Member Avatar for Galbatorix

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 …

Member Avatar for Galbatorix
0
160
Member Avatar for Start4me

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 …

Member Avatar for tinstaafl
0
290
Member Avatar for Galbatorix

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(" & …

Member Avatar for Galbatorix
0
154
Member Avatar for Galbatorix

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 …

Member Avatar for Khristophor
0
140
Member Avatar for Galbatorix

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 …

0
96
Member Avatar for MasterHacker110
Member Avatar for Eyeteeorg

<!doctype html> <html lang="en"> <head> <meta charset="utf-8" /> </head> <body> </body> </html>

Member Avatar for Eyeteeorg
0
124
Member Avatar for Galbatorix

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 …

Member Avatar for Galbatorix
0
97
Member Avatar for Galbatorix

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 …

Member Avatar for Galbatorix
0
285
Member Avatar for happygeek

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 …

Member Avatar for Galbatorix
0
793
Member Avatar for ayat abukhadra

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 ...

Member Avatar for TnTinMN
0
497
Member Avatar for Galbatorix

hello i am having problems installing my zte broadband in ubuntu 12.04 or even fedora 17. can anybody help out.

Member Avatar for Galbatorix
0
86
Member Avatar for Galbatorix

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

Member Avatar for diafol
0
158
Member Avatar for Galbatorix

hello guys, how do you write app.path in vb.net coz it works in vb6 but not in dotnet

Member Avatar for Pgmer
0
81
Member Avatar for Galbatorix

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 …

Member Avatar for Stefano Mtangoo
0
99
Member Avatar for Galbatorix

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? :)

Member Avatar for Galbatorix
0
125
Member Avatar for Galbatorix

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

Member Avatar for thatscrap12543
0
185
Member Avatar for Galbatorix

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

Member Avatar for debasisdas
0
88
Member Avatar for Galbatorix

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!!!

Member Avatar for Galbatorix
0
110
Member Avatar for Galbatorix

honestly, could someone come up with a simple method on how to link vs.net 2002 and ms access 2003

Member Avatar for lolafuertes
0
58

The End.