Jump to content
Xtreme .Net Talk

Robby

Moderators
  • Posts

    3848
  • Joined

  • Last visited

Everything posted by Robby

  1. Once you register, is it then free and non-trial?
  2. Didn't you know that Laura's an amin? :) ( Sorry Laura)
  3. LOL :) Not only did I get the name wrong I couldn't even spell it correctly.
  4. Were these components previous for sale? Now they're giving them out for free? Hmm...
  5. If you want help or advice on project, attach the source code, do not attach binaries. Thanks.
  6. Laura aka Lebb is, she stays mostly on our sister site extremvisualbasic.com, she's an amin as well as a guru there. She recently retired her admin status here. :(
  7. the Update should be written like this.... "UPDATE Daily SET SomeColumn = SomeValue WHERE mainid =" & intnumber
  8. In what context? VBA uses IIF as a conditional operator.
  9. Cool stuff, thanks pister.
  10. use a dynamic cursor.
  11. Hmm, oh so ready to blame MS. :):):)
  12. instead of 'Loop Until line Is Nothing" Change to "DO" part to something like "Do While sr.ReadLine"
  13. Wouldn't you rather use ADO.NET?
  14. Yeah, you can use JS to get the users' res then offset your width accordingly. you can use screen.width + screen.height also, window.screen.availWidth + window.screen.availHeight
  15. Now I feel better :)
  16. Dataview use dv.Count Dataset use ds.Tables(0).Rows.Count DataTable use dt.Rows.Count
  17. Robby

    js files

    If you want to register it on the server (side) then "<script> tags with src="myfile.js".... " is useless. You would need to read the js file as you would any other file and then use RegisterClientScriptBlock to assign the streaming string.
  18. Get rid of the 'datasource' you have within your asp tags, instead do something like this in your code-behind page... Friend Sub LoadDropDown() Dim dv As DataView With ddl_ID dv = 'get your dataview here .DataSource = dv .DataMember = "tableName" .DataValueField = "id" .DataTextField = "name" .DataBind() End With End Sub To later get the user's selection... Dim mySelectedID as integer = ddl_ID.SelectedItem.Value dim mySelectedName as string = ddl_ID.SelectedItem.Text
  19. I'd let you if you were a girl :)
  20. If you've disabled AutoPostBack, the enter that you hit is probably the button having focus.
  21. The select I used may be the same as yours (I didn't look at yours vey closely). The resultset will return one of each author for each book they wrote and one of each book with its' associated authors. It will not return any duplicate row with the same book AND author, which (I think) should be your only concern, no? If I'm off-track from what you need this for (which I probably am) let me know in greater detail of how you will display or use the resultset.
  22. Once you have spilt on brackets then check each element for spaces.
  23. Do you mean Title for page name? And do you mean screen resolution width for width?
  24. You can use RegEx (Regular Expressions) or use IndexOf,Split and SubString methods of the String object. One way to is to Split on the right bracket and if the first character of each element is not a left bracket then it wouldn't be a form. You get the idea.... if not let me know.
  25. Try Text instead of Caption.
×
×
  • Create New...