Jump to content
Xtreme .Net Talk

a_jam_sandwich

Avatar/Signature
  • Posts

    371
  • Joined

  • Last visited

Everything posted by a_jam_sandwich

  1. In the propertys for the combobox set the 'DropDownStyle' to 'DropDownList' Andy
  2. In the on Scroll (VScoll) I think even just tell the for to refresh Or form.invalidate() Sorts it self out but this make scrolling slower
  3. Run a INSERT with the values before the update then run the update 2 Querys Andy
  4. I don't belive the XML class allows uploading, just saving to files Andy
  5. Sorry it was my mis understanding
  6. Make sure you USE webrequest for URI e.g. (http://HTTP://www.somewhere.com/mydoc.xml) and not filerequest Andy
  7. U could use the tag for each list item Andy
  8. Found out the last charater in the .Rtf string is a charater that stops changes on the end of the string by simply removing this charater it now works Andy
  9. Ive been messing around with it now and it seems its missing the second ' The same happens when showing it in a message box e.g msgbox("'" & MyRichTextBox.Rtf & "'") The Second ' Does no show Is it somthing to do with the encoding? or Invalid invisable charaters This is beyond a problem this is a critical part of the program Andy
  10. For Some reason I carn't insert the RichTextBox source into a Database Anyone else know of this????? Using OLE namespace Access 2002 database And the Code for insert as following SQLCommand.CommandText = "INSERT INTO DOCUMENTS (Content) VALUES ('" & p_DocumentEditor.DocumentRTF.Rtf & "')" Any Ideas? Thx Andy
  11. Cheers Will look
  12. Im using a Rich Text Box for document creation but I need to set the Margin Rules (Column Position) so pressing TAB lines up according to where I specify Whats the property any one know? Cheers Andy
  13. it looks ok to me maybe your username or password is wrong?? try Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click try Dim MyConnection As New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source= d:\DvdList.mdb;User Id=admin;") MyConnection.Open() catch msgbox(err.description) end try See what comes up as the error, bound to be simple. http://www.xtremedotnettalk.com/showthread.php?s=&threadid=69746 Check the above link for a simple ado.net tutorial Andy
  14. RE-BUILD a few times worked for me Oh and once thats done close .NET then reopen your project should work
  15. windows media player will need to be installed on the computer running your software - wmp.dll will then be installed simply distributing this DLL will not do the trick Andy
  16. Not likey since there new server software is server.net :) dot.net is likley to donimate in the next couple of years on microsoft platforms Andy
  17. When you use your select Query SELECT * FROM MyTable use for ascending order SELECT * FROM MyTable ORDER BY MyField Asc or use SELECT * FROM MyTable ORDER BY MyField Desc for descending order Hope this helps Andy
  18. When you build you SQL insert string instead of somthing like SQL = "INSERT INTO MyTable (Lastname, firstname) VALUES ('Andrew', 'Duff')" You replace the values with the following based on 2 textboxs SQL = "INSERT INTO MyTable (Lastname, firstname) VALUES ('" & Textbox1.Text & "', '" & Textbox2.Text & "')" Hope this helps Andy
  19. http://www.mysql.com/articles/dotnet/index.html this should give you some insight on how to use mySQL with vb.net Andy
  20. Send the error number to console and check there I think it is 5 though Andy
  21. I also would like a copy if at all possible - if source for class exists so I can see how it works Thx Andy
  22. Ill knock somthing up
  23. The reason for the flicker is having panels in panels any page with multiple panels suffers from this (There are a lot of pages) any idea how to fix anyone Cheers Andy
  24. Ive always found ever since I stated programming ( PASCAL :) ) that id try to work on little projects to get my understanding of what ever aspect of programming i wanted to learn. What im saying is you want to learn XML then learn it without side tracking to somthing else there are plenty of tutorials out there now so you task to learn is much in the way of being helped. The way I look at it nothing is difficult (to a point) if you understand the theory behind it. Once you know that you can break things down and go 'ARH! so thats how its done'. Andy
×
×
  • Create New...