• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EDT 07:59
CEST 13:59
KST 20:59
  • 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
TL.net Map Contest #21: Voting10[ASL20] Ro4 Preview: Descent11Team TLMC #5: Winners Announced!3[ASL20] Ro8 Preview Pt2: Holding On9Maestros of the Game: Live Finals Preview (RO4)5
Community News
Chinese SC2 server to reopen; live all-star event in Hangzhou17Weekly Cups (Oct 13-19): Clem Goes for Four2BSL Team A vs Koreans - Sat-Sun 16:00 CET7Weekly Cups (Oct 6-12): Four star herO85.0.15 Patch Balance Hotfix (2025-10-8)81
StarCraft 2
General
RotterdaM "Serral is the GOAT, and it's not close" 5.0.15 Patch Balance Hotfix (2025-10-8) Weekly Cups (Oct 13-19): Clem Goes for Four Chinese SC2 server to reopen; live all-star event in Hangzhou Weekly Cups (March 17-23): Clem Bounces Back
Tourneys
Tenacious Turtle Tussle RSL Season 3 Qualifier Links and Dates $1,200 WardiTV October (Oct 21st-31st) SC2's Safe House 2 - October 18 & 19 INu's Battles #13 - ByuN vs Zoun
Strategy
Custom Maps
Map Editor closed ?
External Content
Mutation # 496 Endless Infection Mutation # 495 Rest In Peace Mutation # 494 Unstable Environment Mutation # 493 Quick Killers
Brood War
General
BW General Discussion SnOw's Awful Building Placements vs barracks BSL Team A vs Koreans - Sat-Sun 16:00 CET Is there anyway to get a private coach? BGH Auto Balance -> http://bghmmr.eu/
Tourneys
[Megathread] Daily Proleagues 300$ 3D!Community Brood War Super Cup #4 [ASL20] Semifinal B Azhi's Colosseum - Anonymous Tournament
Strategy
Current Meta BW - ajfirecracker Strategy & Training Roaring Currents ASL final [I] Funny Protoss Builds/Strategies
Other Games
General Games
Nintendo Switch Thread Path of Exile Stormgate/Frost Giant Megathread Dawn of War IV ZeroSpace Megathread
Dota 2
Official 'what is Dota anymore' discussion LiquidDota to reintegrate into TL.net
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
TL Mafia Community Thread SPIRED by.ASL Mafia {211640}
Community
General
US Politics Mega-thread Russo-Ukrainian War Thread Things Aren’t Peaceful in Palestine The Chess Thread Men's Fashion Thread
Fan Clubs
The herO Fan Club!
Media & Entertainment
Anime Discussion Thread Series you have seen recently... [Manga] One Piece Movie Discussion!
Sports
2024 - 2026 Football Thread TeamLiquid Health and Fitness Initiative For 2023 MLB/Baseball 2023 Formula 1 Discussion NBA General Discussion
World Cup 2022
Tech Support
SC2 Client Relocalization [Change SC2 Language] Linksys AE2500 USB WIFI keeps disconnecting Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List Recent Gifted Posts
Blogs
Sabrina was soooo lame on S…
Peanutsc
Our Last Hope in th…
KrillinFromwales
Certified Crazy
Hildegard
Rocket League: Traits, Abili…
TrAiDoS
Customize Sidebar...

Website Feedback

Closed Threads



Active: 1331 users

The Big Programming Thread - Page 228

Forum Index > General Forum
Post a Reply
Prev 1 226 227 228 229 230 1032 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 States17256 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 States3702 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
Hyrule19144 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
Germany2580 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 1032 Next
Please log in or register to reply.
Live Events Refresh
The PondCast
10:00
Episode 68
Liquipedia
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
Lowko303
StarCraft: Brood War
actioN 2827
Hyuk 2071
GuemChi 1905
Bisu 862
ZerO 784
Jaedong 759
firebathero 462
Hyun 407
Mini 308
Stork 300
[ Show more ]
hero 272
BeSt 246
Light 194
Pusan 156
Last 148
ggaemo 146
EffOrt 143
Barracks 120
Larva 115
zelot 110
ToSsGirL 92
Shine 92
Rush 76
Mind 50
TY 44
Sea.KH 34
sorry 32
Free 25
Sharp 22
Shinee 19
Icarus 17
Noble 15
soO 15
Sexy 14
Terrorterran 12
HiyA 11
Sacsri 10
Dota 2
XaKoH 296
BananaSlamJamma193
Dendi160
XcaliburYe146
canceldota33
League of Legends
JimRising 435
Counter-Strike
olofmeister2749
zeus583
x6flipin468
allub210
oskar122
markeloff117
edward44
byalli26
Super Smash Bros
Westballz27
Other Games
summit1g6646
singsing1904
B2W.Neo942
crisheroes308
Mew2King48
rGuardiaN32
Trikslyr13
Organizations
StarCraft: Brood War
Kim Chul Min (afreeca) 966
Counter-Strike
PGL224
Other Games
BasetradeTV140
StarCraft 2
WardiTV88
StarCraft: Brood War
UltimateBattle 52
lovetv 10
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 16 non-featured ]
StarCraft 2
• LUISG 32
• StrangeGG 13
• AfreecaTV YouTube
• intothetv
• Kozan
• IndyKCrew
• LaughNgamezSOOP
• Migwel
• sooper7s
StarCraft: Brood War
• iopq 1
• BSLYoutube
• STPLYoutube
• ZZZeroYoutube
Dota 2
• WagamamaTV625
League of Legends
• Jankos2048
• Lourlo451
Upcoming Events
OSC
2m
WardiTV Invitational
23h 2m
Online Event
1d 4h
RSL Revival
1d 14h
RSL Revival
1d 22h
WardiTV Invitational
1d 23h
OSC
2 days
SKillous vs goblin
Spirit vs GgMaChine
ByuN vs MaxPax
Afreeca Starleague
2 days
Snow vs Soma
Sparkling Tuna Cup
2 days
WardiTV Invitational
3 days
[ Show More ]
CrankTV Team League
3 days
RSL Revival
3 days
Wardi Open
4 days
CrankTV Team League
4 days
Replay Cast
4 days
WardiTV Invitational
5 days
CrankTV Team League
5 days
Replay Cast
5 days
CrankTV Team League
6 days
Replay Cast
6 days
The PondCast
6 days
Liquipedia Results

Completed

Acropolis #4 - TS2
WardiTV TLMC #15
HCC Europe

Ongoing

BSL 21 Points
ASL Season 20
CSL 2025 AUTUMN (S18)
C-Race Season 1
IPSL Winter 2025-26
EC S1
Thunderpick World Champ.
CS Asia Championships 2025
ESL Pro League S22
StarSeries Fall 2025
FISSURE Playground #2
BLAST Open Fall 2025
BLAST Open Fall Qual
Esports World Cup 2025
BLAST Bounty Fall 2025
BLAST Bounty Fall Qual

Upcoming

SC4ALL: Brood War
BSL Season 21
BSL 21 Team A
BSL 21 Non-Korean Championship
RSL Offline Finals
RSL Revival: Season 3
Stellar Fest
SC4ALL: StarCraft II
CranK Gathers Season 2: SC II Pro Teams
eXTREMESLAND 2025
ESL Impact League Season 8
SL Budapest Major 2025
BLAST Rivals Fall 2025
IEM Chengdu 2025
PGL Masters Bucharest 2025
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.