
LittLe3Lue
Avatar/Signature-
Posts
27 -
Joined
-
Last visited
About LittLe3Lue
- Birthday 12/04/1984
Personal Information
-
Visual Studio .NET Version
Visual Studio .NET Professional
-
.NET Preferred Language
VB.NET
LittLe3Lue's Achievements
Newbie (1/14)
0
Reputation
-
Wow this will take a bit of time to read through, if it works, thanks, So i gather, it will be a visual basic/C# program to update my database in .Net then? Also, how will this output in asp?
-
Are you referign to the checklist box in the Form, i can only figure out how to make boolean expressions with that
-
thanks for the advice the first example was a little different then what i had expected, i wanted simply a way inside the database do to it, be it in table or form. Jfackler, can u expand on how to create the checklistbox, i culd not find it.
-
Can u make a feild type that allows muli selections, preferably soemthign like multi select list, or checkboxes. Or can anyone think of any alternates to making a variable number of selections, i need to make an awards list per user, and i dont want a separate record for each award under one user name, but one name, with all the awards.
-
Seeing as how no one has helped, i would Just like to ask, Is there any way to search to a specific record? I can use AddRow to make an array, but without looping thorugh it all is there an easier way
-
can u close the current window? Make every link open in a new window and close the current one, thus giving no previous document, if it is possible.
-
From Microsofts site, i figured out that the correct format is actually, Main.Find = "Wing='Alpha'" and so forth. But now i get the initial error again, does now support scrolling backwards, or what not. I confused.
-
Oh yeah, in case u dont catch the small change, its in the parenthesis of the Find. The tutorial said to use parenthesis over the whole thing, but i get an error about my parenthesis. The added ", 1" in the second find simply skips one record for next search, so i dont return same result, unless it automatically does, i will have to check once it works.
-
<table> <tr> <td colspan="11" align="center"> <font size="3"> <% response.write("Alpha") Main.Find("Wing='Alpha Leader'",1) response.write("<br>Wing Leader: " & Name.Value) 'Name.Value -> see above post for what im tryign to do here. %> </font></td></tr> <%Main.MoveFirst%> <% do until Main.EOF Main.Find("Wing='Alpha'") %> <tr> <%for each x in Main.Fields%> <td align="center"> <% if x.Name="Name" then response.write(x.Value) elseif x.Name="Games" then ... end if %> </td> <%next%> </tr> <%loop%> </table> Now here are me problems, first off, i get a: Microsoft JET Database Engine (0x80040E29) Rowset does not support scrolling backward. error at my first find. If i play aroumd, i get other errors, and finally, i came up with this, even tho it was NOT the way the tutorial said it should be written: <table> <tr> <td colspan="11" align="center"> <font size="3"> <% response.write("Alpha") Main.Find(Wing="Alpha Leader") response.write("<br>Wing Leader: " & Name.Value) 'Name.Value -> see above post for what im tryign to do here. %> </font></td></tr> <%Main.MoveFirst%> <% do until Main.EOF Call Main.Find(Wing="Alpha", 1) %> <tr> <%for each x in Main.Fields%> <td align="center"> <% if x.Name="Name" then response.write(x.Value) elseif x.Name="Games" then ... end if %> </td> <%next%> </tr> <%loop%> </table> Now in this case, all the syntax seems to be correct, but i get this error: ADODB.Recordset (0x800A0BB9) Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another. Also at the first Find. There is a wing feild with a value of Alpha Leader for sure int he database under the first record. I have set Main.MoveFirst just in case, and same error, so it should pick up the first record. I dont know how to use find and i have played aroudn with it for a while now.
-
Read a lot of tutorials, but none that i can find that tell me how to output a certain Feild from a record. I use Record.Find to find the record, and i want to get a particular feild, without looping through all checking for x.name each time. Anyway to just say, response.write(currentrecord.ThisFeild.Value) Also, i am getting errors with my Find at times, i was wondering, if i get to my last found record, and there are no more after it, will it return EOF or give me an error. For example, if i look for a company name, the 3rd last record is that, then it looks for the next matching record, and no more exist, will it just return EOF?
-
Hi, i wanted to make an ASP page that displays all files in a directory as a list. I can make the page myself, i just need help with finding The current URL/Path to store it in a variable, and to get a list of files withing a certain folder. are there any already made examples i can find around that have done something simular that i can just read. I found one file which was very poorly written and couldnt understand a few basics. Also, does anyone know the VB equivalent of: "preserve redim xxx(a,b)" etc etc, code? any help is great
-
ok ive never coded in aspx, but from what i read, i think every time you %> all your variables are fried, u have to specify them to be available for the entire site, or, for the entire user or soemthing. there was a post about keeping variables alive for pop ups, try to find that.
-
rediming an array clears it, im not sure about aspx, but preserve keyword after the the redim in vb leaves the values like, redim preserve .. etc etc as u normaly would
-
okay, well today i realized that i did not have my asp.net service running, and for a sec i thought that might have been the cause of the problem,, but alas, no, and i think that the service is just for running asp.net files, not creating them. but it got me thinking, perhaps there is soemthign that i have just not done that needs to be done in order fo the .net framework to work? i have not touched it after installation, i have not changed any setting, and i dont really know how it works - should i have?
-
Correction, i meant to say it wont let me overwrite. anyway, i sitll cant find out how to unistall it, can anyone assist me?