Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~2K People Reached
Favorite Tags
Member Avatar for Andy_Parr

Hi all, I'm trying to make a multi-language website that allows the user to change language by clicking on a button (a flag representing the country/language). I have been able to achieve this using locale and a combo box so far but I'm struggling to implement it using buttons. This …

0
131
Member Avatar for Andy_Parr

Hi I'm relatively new to Actionscript coding and have a small problem in Flash. I want to track the x property of a symbol (in this case a movie clip) and display the x property of that movie clip in a text field. However I want the text field to …

Member Avatar for JasonHippy
0
174
Member Avatar for Andy_Parr

I put together a custom built PC this week and had it working and booting up with no problems. However when I switched on my PSU yesterday, the motherboard would not power up and there were no lights on it and no fans/drives were spinning. Trying to solve the problem …

Member Avatar for Cross213
0
208
Member Avatar for Andy_Parr

Hi, I'm writing code for a graphical map of a shopping center. Whilst writing the code I realised it would be simpler to be able to draw objects using "names" instead of values. E.g. g.drawRect(Asda); instead of g.drawRect(100,100,40,40);. Is this possible? I have tried writing various classes but I can't …

Member Avatar for JamesCherrill
0
570
Member Avatar for Andy_Parr

[CODE] public void mouseClicked(MouseEvent e) { store clickedStore = null; for (int i = 0; i < stores.length; i++) { if (stores[i].isClicked(e.getX(), e.getY())) { clickedStore = stores[i]; break; } } } [/CODE] Is it possible to display the result of the above loop as a string? I have tried various …

Member Avatar for haranaboy
0
86
Member Avatar for Andy_Parr

Hi, I have a database linked to my VB.NET project using the data source wizard. I've created a log in form using a table in access that has the details required to log in. The code is: [CODE]Imports System.Data Public Class Form1 Dim conn As OleDb.OleDbConnection Dim strSQL As String …

Member Avatar for NoOneSpecial
0
453