• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 03:48
CEST 09:48
KST 16:48
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
Maestros of the Game: Week 1/Play-in Preview12[ASL20] Ro24 Preview Pt2: Take-Off7[ASL20] Ro24 Preview Pt1: Runway132v2 & SC: Evo Complete: Weekend Double Feature4Team Liquid Map Contest #21 - Presented by Monster Energy13
Community News
LiuLi Cup - September 2025 Tournaments2Weekly Cups (August 25-31): Clem's Last Straw?39Weekly Cups (Aug 18-24): herO dethrones MaxPax6Maestros of The Game—$20k event w/ live finals in Paris53Weekly Cups (Aug 11-17): MaxPax triples again!15
StarCraft 2
General
#1: Maru - Greatest Players of All Time Hire a professional forensic recovery experts Geoff 'iNcontroL' Robinson has passed away Production Quality - Maestros of the Game Vs RSL 2 Heaven's Balance Suggestions (roast me)
Tourneys
Maestros of The Game—$20k event w/ live finals in Paris RSL: Revival, a new crowdfunded tournament series LiuLi Cup - September 2025 Tournaments Sea Duckling Open (Global, Bronze-Diamond) Sparkling Tuna Cup - Weekly Open Tournament
Strategy
Custom Maps
External Content
Mutation # 489 Bannable Offense Mutation # 488 What Goes Around Mutation # 487 Think Fast Mutation # 486 Watch the Skies
Brood War
General
ASL20 General Discussion Victoria gamers Pros React To: herO's Baffling Game BGH Auto Balance -> http://bghmmr.eu/ BW General Discussion
Tourneys
[IPSL] ISPL Season 1 Winter Qualis and Info! [Megathread] Daily Proleagues Is there English video for group selection for ASL Small VOD Thread 2.0
Strategy
Simple Questions, Simple Answers Muta micro map competition Fighting Spirit mining rates [G] Mineral Boosting
Other Games
General Games
Stormgate/Frost Giant Megathread General RTS Discussion Thread Nintendo Switch Thread Path of Exile Warcraft III: The Frozen Throne
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread Vanilla Mini Mafia
Community
General
Things Aren’t Peaceful in Palestine US Politics Mega-thread Russo-Ukrainian War Thread Canadian Politics Mega-thread YouTube Thread
Fan Clubs
The Happy Fan Club!
Media & Entertainment
[Manga] One Piece Anime Discussion Thread Movie Discussion! [\m/] Heavy Metal Thread
Sports
MLB/Baseball 2023 2024 - 2026 Football Thread Formula 1 Discussion TeamLiquid Health and Fitness Initiative For 2023
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread High temperatures on bridge(s)
TL Community
The Automated Ban List TeamLiquid Team Shirt On Sale
Blogs
Collective Intelligence: Tea…
TrAiDoS
A very expensive lesson on ma…
Garnet
hello world
radishsoup
Lemme tell you a thing o…
JoinTheRain
RTS Design in Hypercoven
a11
Evil Gacha Games and the…
ffswowsucks
INDEPENDIENTE LA CTM
XenOsky
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1085 users

The Big Programming Thread - Page 228

Forum Index > General Forum
Post a Reply
Prev 1 226 227 228 229 230 1031 Next
Thread Rules
1. This is not a "do my homework for me" thread. If you have specific questions, ask, but don't post an assignment or homework problem and expect an exact solution.
2. No recruiting for your cockamamie projects (you won't replace facebook with 3 dudes you found on the internet and $20)
3. If you can't articulate why a language is bad, don't start slinging shit about it. Just remember that nothing is worse than making CSS IE6 compatible.
4. Use [code] tags to format code blocks.
DEN1ED
Profile Joined December 2009
United States1087 Posts
January 09 2013 03:29 GMT
#4541
Just had my first day of my first programming class today. Loved it and already did the assignment that is due next week and I kinda want to keep going and doing more. It was just the most basic assignment to print text. Is there a good place that has tutorials and stuff to keep learning more? A lot of the links of the front page seem broken. Learning java fyi.
nunez
Profile Blog Joined February 2011
Norway4003 Posts
January 09 2013 03:37 GMT
#4542
On January 09 2013 08:51 NukeTheBunnys wrote:
Im looking to do some c++\openGL game related programming. Does anyone have any suggestions for a cross platform library (or libraries) that can do windowing, input, and sound. And before someone says I should use an engine like Unity, or a different language - half the point of doing this is I'm interested in the low level game systems like managing the input/threading/audio streams

Windows APIs (not multi-platform, but oh well - I can encapsulate the code anddeal with porting the code if I ever want to port it)
SDL - started working with it but had some troubles getting it set up on windows and visual studio, but otherwise it looks like it would meet all my desires.
Allegro - can be used with openGL, but the documentation of using allegro with openGL (2d or 3d) is pretty sparse

I have also considered using openAL for 3d positional sound, but that will likely come after I get some of the other systems working

Anyone have other suggestions, or experience with the mentioned libraries.


i know Qt provides what you are looking for.
conspired against by a confederacy of dunces.
Craton
Profile Blog Joined December 2009
United States17250 Posts
January 09 2013 04:03 GMT
#4543
On January 09 2013 12:29 DEN1ED wrote:
Just had my first day of my first programming class today. Loved it and already did the assignment that is due next week and I kinda want to keep going and doing more. It was just the most basic assignment to print text. Is there a good place that has tutorials and stuff to keep learning more? A lot of the links of the front page seem broken. Learning java fyi.

System.out.println("Hello World");


Pick something you want to accomplish and keep throwing code at it till you figure it out. Then look up how to do it better. I don't keep track of tutorial sites for Java.
twitch.tv/cratonz
Pigsquirrel
Profile Joined August 2009
United States615 Posts
January 09 2013 04:32 GMT
#4544
On January 09 2013 12:37 nunez wrote:
Show nested quote +
On January 09 2013 08:51 NukeTheBunnys wrote:
Im looking to do some c++\openGL game related programming. Does anyone have any suggestions for a cross platform library (or libraries) that can do windowing, input, and sound. And before someone says I should use an engine like Unity, or a different language - half the point of doing this is I'm interested in the low level game systems like managing the input/threading/audio streams

Windows APIs (not multi-platform, but oh well - I can encapsulate the code anddeal with porting the code if I ever want to port it)
SDL - started working with it but had some troubles getting it set up on windows and visual studio, but otherwise it looks like it would meet all my desires.
Allegro - can be used with openGL, but the documentation of using allegro with openGL (2d or 3d) is pretty sparse

I have also considered using openAL for 3d positional sound, but that will likely come after I get some of the other systems working

Anyone have other suggestions, or experience with the mentioned libraries.


i know Qt provides what you are looking for.


Not quite. Qt is a widget framework (and a lot of other crap). It's really meant for developing desktop applications. Skype, for example, was done in Qt, and Every Kapplication in KDE uses QT.

If developing desktop apps is your goal, then a widget framework is for you, though I'd recommend GTK2 because it's the One True Framework.

Back to game development. I just started a project in C++ using SDL to teach myself 2D graphics in SDL. I'm on Linux using Eclipse and Autotools, but the philosophy is much the same with Visual Studio - All you need are the SDL libraries and headers and you're good to go.

Raw, straight-up, unadulterated SDL really seems like what you want right now. It's very basic - it just gives you access to a screen to draw on and input sources. Everything else - threading, object management, datastructs - is up to you. I'd recommend starting with 2D at first.

As a note, I'm using normal C SDL not SDLmm, which is a C++ified glue. It works perfectly fine.

I'm using http://lazyfoo.net/SDL_tutorials/index.php as my main guide and the official SDL docs for reference.
DumJumJmyWum
Profile Joined March 2011
United States75 Posts
January 09 2013 04:35 GMT
#4545
On January 09 2013 12:29 DEN1ED wrote:
Just had my first day of my first programming class today. Loved it and already did the assignment that is due next week and I kinda want to keep going and doing more. It was just the most basic assignment to print text. Is there a good place that has tutorials and stuff to keep learning more? A lot of the links of the front page seem broken. Learning java fyi.


Glad to hear you're loving programming.

Go through the java tutorials and start with the "getting started" - http://docs.oracle.com/javase/tutorial/. I would just recommend doing the stuff in the trails covering the basics. The rest depend if you want to work in the java Enterprise Edition version for large corporations.

Also, I would recommend reading "Java a Beginner's Guide Fifth Edition" by Herbert Schildt. I've gone through it myself recently to refresh my Java a while ago and I think it does a good job especially since it covers Java 1.7.

In addition, www.udacity.com has a good introductory classes to programming that you can do at your own pace even though they use python.






tec27
Profile Blog Joined June 2004
United States3701 Posts
January 09 2013 05:06 GMT
#4546
On January 09 2013 13:32 Pigsquirrel wrote:
Show nested quote +
On January 09 2013 12:37 nunez wrote:
On January 09 2013 08:51 NukeTheBunnys wrote:
Im looking to do some c++\openGL game related programming. Does anyone have any suggestions for a cross platform library (or libraries) that can do windowing, input, and sound. And before someone says I should use an engine like Unity, or a different language - half the point of doing this is I'm interested in the low level game systems like managing the input/threading/audio streams

Windows APIs (not multi-platform, but oh well - I can encapsulate the code anddeal with porting the code if I ever want to port it)
SDL - started working with it but had some troubles getting it set up on windows and visual studio, but otherwise it looks like it would meet all my desires.
Allegro - can be used with openGL, but the documentation of using allegro with openGL (2d or 3d) is pretty sparse

I have also considered using openAL for 3d positional sound, but that will likely come after I get some of the other systems working

Anyone have other suggestions, or experience with the mentioned libraries.


i know Qt provides what you are looking for.


Not quite. Qt is a widget framework (and a lot of other crap). It's really meant for developing desktop applications. Skype, for example, was done in Qt, and Every Kapplication in KDE uses QT.

If developing desktop apps is your goal, then a widget framework is for you, though I'd recommend GTK2 because it's the One True Framework.

That's not really true any more. The version of Qt that just came out (5.0) is very intended for embedded and mobile application development, and has very heavy integration with OpenGL to accomplish that. The widget framework in it is only a very small part (and a quickly diminishing part) of the library. It could definitely accomplish what NukeTheBunnys wants, but I think it might abstract too many of the lower level details that he'd like to work on himself.
Can you jam with the console cowboys in cyberspace?
nunez
Profile Blog Joined February 2011
Norway4003 Posts
January 09 2013 05:42 GMT
#4547
On January 09 2013 14:06 tec27 wrote:
Show nested quote +
On January 09 2013 13:32 Pigsquirrel wrote:
On January 09 2013 12:37 nunez wrote:
On January 09 2013 08:51 NukeTheBunnys wrote:
Im looking to do some c++\openGL game related programming. Does anyone have any suggestions for a cross platform library (or libraries) that can do windowing, input, and sound. And before someone says I should use an engine like Unity, or a different language - half the point of doing this is I'm interested in the low level game systems like managing the input/threading/audio streams

Windows APIs (not multi-platform, but oh well - I can encapsulate the code anddeal with porting the code if I ever want to port it)
SDL - started working with it but had some troubles getting it set up on windows and visual studio, but otherwise it looks like it would meet all my desires.
Allegro - can be used with openGL, but the documentation of using allegro with openGL (2d or 3d) is pretty sparse

I have also considered using openAL for 3d positional sound, but that will likely come after I get some of the other systems working

Anyone have other suggestions, or experience with the mentioned libraries.


i know Qt provides what you are looking for.


Not quite. Qt is a widget framework (and a lot of other crap). It's really meant for developing desktop applications. Skype, for example, was done in Qt, and Every Kapplication in KDE uses QT.

If developing desktop apps is your goal, then a widget framework is for you, though I'd recommend GTK2 because it's the One True Framework.

That's not really true any more. The version of Qt that just came out (5.0) is very intended for embedded and mobile application development, and has very heavy integration with OpenGL to accomplish that. The widget framework in it is only a very small part (and a quickly diminishing part) of the library. It could definitely accomplish what NukeTheBunnys wants, but I think it might abstract too many of the lower level details that he'd like to work on himself.


i worded myself sparsely because it has been a while since i worked with it, but i felt it was worthy of a mention (even though the level of abstraction might be too high for what he's looking for, but i couldn't tell) and it definitely covers what he is looking for. in addition i would think that cross platform is ambiguous in this context unless i missed something, not that it matters in relation to Qt.
conspired against by a confederacy of dunces.
fabiano
Profile Blog Joined August 2009
Brazil4644 Posts
January 09 2013 14:28 GMT
#4548
Hello, I've found myself coding a lot of PHP lately and I've been wondering what is a better practice:

[1] Leave all the PHP processing code before the <html> and postpone the print/echo of the results of that processing
+ Show Spoiler +
[image loading]

or
[2] Leave the PHP processing entangled in the html as needed
+ Show Spoiler +
[image loading]


Note that the example code is simple, but I mean what would be preffered when we are dealing with much larger scripts?

Personally I find [1] to be much more readable, while theorically [2] should be more efficient. Is there a coding standard or do programmers just code as they please?

R1CH, by your wizardry powers, if you are reading this, what do you recommend?
"When the geyser died, a probe came out" - SirJolt
tofucake
Profile Blog Joined October 2009
Hyrule19083 Posts
January 09 2013 14:40 GMT
#4549
Well first, your <?php $variable; ?> statements don't do anything. They should either be <?=$variable;> or <?php echo $variable; ?>

Second, neither. PHP should be in its own place and you should use a templating system (like Smarty) to spit out all of your HTML.
Liquipediaasante sana squash banana
AmericanUmlaut
Profile Blog Joined November 2010
Germany2577 Posts
January 09 2013 14:49 GMT
#4550
I disagree about needing a templating system. PHP was designed as a templating language, and it works quite well. I've never seen a big advantage to be had by using something like Smarty or twig.

Fabiano, I strongly suggest that you use variant 1. Separating logic from display is a very common best practice. You can read up on MVC (model view control) for more information on the philosophy behind that, but basically you end up with much more readable and maintainable code if you don't mix business logic in with your layout. It's very common to do logic in a different file and then inject the results as variables into a template, though I worked at a big company for a few years where the standard was for template-specific logic to come in a block at the beginning of the template file. I actually find that system quite nice, but it's less flexible.
The frumious Bandersnatch
waxypants
Profile Blog Joined September 2009
United States479 Posts
January 09 2013 15:05 GMT
#4551
On January 09 2013 12:29 DEN1ED wrote:
Just had my first day of my first programming class today. Loved it and already did the assignment that is due next week and I kinda want to keep going and doing more. It was just the most basic assignment to print text. Is there a good place that has tutorials and stuff to keep learning more? A lot of the links of the front page seem broken. Learning java fyi.


You can look for or ask your TAs/professors for previous semesters' assignment or more practice problems.
uZr
Profile Joined April 2011
20 Posts
Last Edited: 2013-01-09 15:09:33
January 09 2013 15:07 GMT
#4552
On January 09 2013 13:32 Pigsquirrel wrote:
Raw, straight-up, unadulterated SDL really seems like what you want right now. It's very basic - it just gives you access to a screen to draw on and input sources. Everything else - threading, object management, datastructs - is up to you. I'd recommend starting with 2D at first.

If you really want lower access to inputs/… you might also take a look at GLUT (http://www.opengl.org/resources/libraries/glut/) or its free software counterpart freeglut (http://freeglut.sourceforge.net/)
The library in itself is much smaller than sdl and does … well less than sdl.
Both are different and in the end don't matter that much:
as soon as your window context is done you're nearly only playing with your own structures, logics, … (and OpenGL calls) than with those libs anyway.
Zeke50100
Profile Blog Joined February 2010
United States2220 Posts
January 09 2013 16:25 GMT
#4553
On January 09 2013 14:06 tec27 wrote:
Show nested quote +
On January 09 2013 13:32 Pigsquirrel wrote:
On January 09 2013 12:37 nunez wrote:
On January 09 2013 08:51 NukeTheBunnys wrote:
Im looking to do some c++\openGL game related programming. Does anyone have any suggestions for a cross platform library (or libraries) that can do windowing, input, and sound. And before someone says I should use an engine like Unity, or a different language - half the point of doing this is I'm interested in the low level game systems like managing the input/threading/audio streams

Windows APIs (not multi-platform, but oh well - I can encapsulate the code anddeal with porting the code if I ever want to port it)
SDL - started working with it but had some troubles getting it set up on windows and visual studio, but otherwise it looks like it would meet all my desires.
Allegro - can be used with openGL, but the documentation of using allegro with openGL (2d or 3d) is pretty sparse

I have also considered using openAL for 3d positional sound, but that will likely come after I get some of the other systems working

Anyone have other suggestions, or experience with the mentioned libraries.


i know Qt provides what you are looking for.


Not quite. Qt is a widget framework (and a lot of other crap). It's really meant for developing desktop applications. Skype, for example, was done in Qt, and Every Kapplication in KDE uses QT.

If developing desktop apps is your goal, then a widget framework is for you, though I'd recommend GTK2 because it's the One True Framework.

That's not really true any more. The version of Qt that just came out (5.0) is very intended for embedded and mobile application development, and has very heavy integration with OpenGL to accomplish that. The widget framework in it is only a very small part (and a quickly diminishing part) of the library. It could definitely accomplish what NukeTheBunnys wants, but I think it might abstract too many of the lower level details that he'd like to work on himself.


Please, PLEASE do not use Qt to create games. Qt has a ridiculously heavy overhead for anything that requires frame-by-frame logic updating and rendering such as a game - not to mention, your game now has a reliance on all kinds of structures provided by Qt, and it's likely that you wouldn't even use Qt for too much besides the signals and slots and OpenGL integration. Signals and slots is a fantastic mechanism for static user interfaces, but it is much less suited for the frame-by-frame polling games generally imply (in games, you generally want to pass a pointer to your input subsystem so you can quickly access input calls that will end up effecting imperative aspects of your game; a messaging system is overkill and actually worse for such a thing),

You can write games using any kind of GUI framework, but you shouldn't. Qt should primarily be used for applications outside the realm of games (for example, a toolset written using Qt is a great idea). If you're writing a game, using something that has much less of a heavy overhead (in terms of games) like SDL is much more well-advised.
FFGenerations
Profile Blog Joined April 2011
7088 Posts
Last Edited: 2013-01-10 00:04:45
January 09 2013 22:10 GMT
#4554
Can someone please have a quick look at my VERY SIMPLE Access database?

I was really close at one point but now it just looks royally screwed and I don't know why.

I have a Person table and 3 separate MobileNumber, HomeNumber and Email tables.

It should be a One to Many relationship between Person and those other tables. There is a primary PersonID autonumber in Person table and I put a PersonID number field in each of the other 3 tables. But when I add data using my Input form, the PersonID fields in the other tables simply remain blank, like they're not connected.

I had it working at one point seemingly but now its not. Infact I royally fucked everything up somehow and my Main form was just complete blank, so I've gone back to a backup copy and putting it here...

It looks like whatever I done in my first table fields worked (and is displayed on the Main form fine) but the rest is broke..

I'll keep trying. It looks weird when I look at how the Association lookup/table is joined to Person, as its joined using AssociationID, but its a Many to One lookup type thing and I done that bit a few weeks ago so don't quite remember what I done there but its not menna be the same.

access file:
http://www.sendspace.com/file/g5xney

ps remember you have to Enable Content (the warning) for stuff to work afaik



Edit:

Okay I might have figured it out...

PersonID in the Email, Mobile, Home tables needs to be updated automatically with a correct PersonID when we input a new person in the New Person Form. Otherwise nothing works, forms are just invisible without this value in those tables.

So I need to find how to capture the automated new person ID that is created when a new person is added to the database and insert that

Is there a code for that? Maybe something like "insert (number of records in database +1)"...
IDK why it doesnt do it automatically if its set in a relationships...


Edit:
I got lucky and found this
http://stackoverflow.com/questions/4320183/ms-access-why-isnt-this-relationship-not-working
Cool BW Music Vid - youtube.com/watch?v=W54nlqJ-Nx8 ~~~~~ ᕤ OYSTERS ᕤ CLAMS ᕤ AND ᕤ CUCKOLDS ᕤ ~~~~~~ ༼ ᕤ◕◡◕ ༽ᕤ PUNCH HIM ༼ ᕤ◕◡◕ ༽ᕤ
enigmaticcam
Profile Blog Joined October 2010
United States280 Posts
Last Edited: 2013-01-10 00:04:45
January 09 2013 23:57 GMT
#4555
Is there a code for that? Maybe something like "insert (number of records in database +1)"...
IDK why it doesnt do it automatically if its set in a relationships...

Relationship or not, it won't automatically ascribe the primary key value to the child tables.

The simplest way to do what you want would be to return the max value of the PersonID field and set it for each child table insert you perform. Assuming it's an auto increment, and assuming it's not accessing a shared table where other people might be inserting rows at the same time, it will return the id of the last person you entered in the table. You can do this just after inserting the Person.

Dim PersonID As Integer
PersonID = DMax("[PersonID]", "Person")

With rs
.AddNew
.Fields!PersonID = PersonID
.Fields!Email = Email
.Update
End With
...
FFGenerations
Profile Blog Joined April 2011
7088 Posts
Last Edited: 2013-01-10 00:27:20
January 10 2013 00:10 GMT
#4556
I got lucky and found this, where he explains what you said. No one (not tutors) had any idea about this shit.

http://stackoverflow.com/questions/4320183/ms-access-why-isnt-this-relationship-not-working

Man, will that work!? I'll try it out. If not, subform. If not, I'm not even supposed to bother with a relational database anyway -_-
Thanks so much



Ahahaha well it works! Just I have to have an entry already existing in the database otherwise it won't accept NULL.
And the first entry accepted has the same ID as the previous initial one. but maybe i can add a +1 somewhere
Cool BW Music Vid - youtube.com/watch?v=W54nlqJ-Nx8 ~~~~~ ᕤ OYSTERS ᕤ CLAMS ᕤ AND ᕤ CUCKOLDS ᕤ ~~~~~~ ༼ ᕤ◕◡◕ ༽ᕤ PUNCH HIM ༼ ᕤ◕◡◕ ༽ᕤ
enigmaticcam
Profile Blog Joined October 2010
United States280 Posts
January 10 2013 00:12 GMT
#4557
You can do it in the immediate window and see for yourself.

?DMax("[PersonID]", "Person")
enigmaticcam
Profile Blog Joined October 2010
United States280 Posts
Last Edited: 2013-01-10 00:37:39
January 10 2013 00:36 GMT
#4558
Ahahaha well it works! Just I have to have an entry already existing in the database otherwise it won't accept NULL.
And the first entry accepted has the same ID as the previous initial one. but maybe i can add a +1 somewhere

It sounds like you're grabbing the max value before you're inserting the new Person. If that's not the case, then there's something you're doing wrong that you'll want to try to find. You don't want to do a +1, because should you delete the latest Person and add another, the PersonID will be +2 more than the last. Here's an example of how your code would look using this logic:

+ Show Spoiler +


' Set the current Database
Set db = CurrentDb
Set rs = db.OpenRecordset("Person", dbOpenDynaset)


'tell it where to put what
With rs
.AddNew

.Fields!FirstName = FirstName
.Fields!Surname = Surname
.Fields!AssociationID = Association


.Update
End With

'Now that we've created the person, get the PersonID (should always be the last Person entry)
Dim PersonID As Integer
PersonID = DMax("[PersonID]", "Person")


'Insert rows for each child table
Set rs = db.OpenRecordset("Email", dbOpenDynaset)

With rs
.AddNew
.Fields!PersonID = PersonID
.Fields!Email = Email
.Update
End With

Set rs = db.OpenRecordset("HomeNumber", dbOpenDynaset)

With rs
.AddNew
.Fields!PersonID = PersonID
.Fields!HomeNumber = HomeNumber
.Update
End With

Set rs = db.OpenRecordset("MobileNumber", dbOpenDynaset)

With rs
.AddNew
.Fields!PersonID = PersonID
.Fields!MobileNumber = MobileNumber
.Update
End With

FFGenerations
Profile Blog Joined April 2011
7088 Posts
Last Edited: 2013-01-10 00:53:46
January 10 2013 00:49 GMT
#4559
Wow okay. I think I did try putting it in another place to begin with and it bugged so I tried it how I done it and thought that was it! Well that is amazing thankyou so much. Can't believe how long it took just to figure out what was even wrong with it in the first place (started again/went to backups so many times, crappy youtube tutorials which didn't show what I wanted, had resigned to thinking I had a bugged version of the program when my forms started appearing completely blank like they did when I tried weeks ago (and had no idea how I overcame that back then).

Now I just have to get the other 85% of grade which involves making it look pretty, some design documents, and a letter to the end user explaining the important decisions that I made (posting on TLnet?). Oh, college..

Ps I didnt have to do a relational database in the first place (since apparently no1 knows how to make a relational one here) so I kinda dug my own grave
Cool BW Music Vid - youtube.com/watch?v=W54nlqJ-Nx8 ~~~~~ ᕤ OYSTERS ᕤ CLAMS ᕤ AND ᕤ CUCKOLDS ᕤ ~~~~~~ ༼ ᕤ◕◡◕ ༽ᕤ PUNCH HIM ༼ ᕤ◕◡◕ ༽ᕤ
enigmaticcam
Profile Blog Joined October 2010
United States280 Posts
January 10 2013 01:17 GMT
#4560
No problem, happy to help
Prev 1 226 227 228 229 230 1031 Next
Please log in or register to reply.
Live Events Refresh
Next event in 2h 12m
[ Submit Event ]
Live Streams
Refresh
StarCraft: Brood War
Leta 906
actioN 606
Larva 542
PianO 334
Pusan 198
Zeus 183
Noble 44
yabsab 24
Purpose 19
sSak 17
[ Show more ]
Sacsri 9
zelot 3
Dota 2
The International15001
NeuroSwarm119
XcaliburYe102
Fuzer 87
League of Legends
Reynor50
Heroes of the Storm
Khaldor110
Other Games
summit1g2420
singsing562
JimRising 480
C9.Mang0267
Hui .191
Maynarde190
Mew2King25
Organizations
StarCraft: Brood War
lovetv 531
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 11 non-featured ]
StarCraft 2
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
League of Legends
• Stunt802
Upcoming Events
CranKy Ducklings
2h 12m
RSL Revival
2h 12m
GuMiho vs Cham
ByuN vs TriGGeR
Cosmonarchy
6h 12m
TriGGeR vs YoungYakov
YoungYakov vs HonMonO
HonMonO vs TriGGeR
Maestros of the Game
9h 12m
Solar vs Bunny
Clem vs Rogue
[BSL 2025] Weekly
10h 12m
OSC
14h 12m
RSL Revival
1d 2h
Cure vs Bunny
Creator vs Zoun
Maestros of the Game
1d 9h
Maru vs Lambo
herO vs ShoWTimE
BSL Team Wars
1d 11h
Team Hawk vs Team Sziky
Sparkling Tuna Cup
2 days
[ Show More ]
Monday Night Weeklies
2 days
The PondCast
5 days
Online Event
6 days
BSL Team Wars
6 days
Team Bonyth vs Team Dewalt
BSL Team Wars
6 days
Liquipedia Results

Completed

Proleague 2025-09-02
SEL Season 2 Championship
HCC Europe

Ongoing

Copa Latinoamericana 4
BSL 20 Team Wars
KCM Race Survival 2025 Season 3
BSL 21 Qualifiers
ASL Season 20
CSL 2025 AUTUMN (S18)
LASL Season 20
RSL Revival: Season 2
Maestros of the Game
Chzzk MurlocKing SC1 vs SC2 Cup #2
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual
IEM Cologne 2025
FISSURE Playground #1

Upcoming

2025 Chongqing Offline CUP
BSL Polish World Championship 2025: Warsaw LAN
BSL Season 21
BSL 21 Team A
EC S1
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
Thunderpick World Champ.
MESA Nomadic Masters Fall
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2025 TLnet. All Rights Reserved.