Forum: VB.NET Apr 19th, 2006 |
| Replies: 2 Views: 4,695 vb would be fine for this i think. but you shouldnt expect very much info regarding this technology on the net as i doubt it is a very popular thing to program as open source, expecially in vb.
if i... |
Forum: VB.NET Apr 19th, 2006 |
| Replies: 3 Views: 1,601 if you want to add c# code to your vb project try this. add a new c# library project to your vb solution. so then you will have a 2 projects in the solution. then add the c# library to the reference... |
Forum: VB.NET Apr 9th, 2006 |
| Replies: 4 Views: 6,667 your code was ugly lol sorry so i wrote a new version for you. i hope you understand it. there were far to many mistakes in your code to explain what to fix, such as using a integer as the change... |
Forum: VB.NET Apr 9th, 2006 |
| Replies: 2 Views: 1,850 you probably need to build it before you debug it. you shouldnt need to but i seen the same problem happening while i was at school.
so build>build solution (ctrl+shift+b) then Debug>start (f5) |
Forum: VB.NET Feb 20th, 2006 |
| Replies: 3 Views: 2,154 ok so you want to call a managed c# dll from unmanaged c++ then you need to use a COM Interop in the c# dll.
i think this link has mostly everything you need to know ... |
Forum: VB.NET Feb 18th, 2006 |
| Replies: 3 Views: 2,154 if i understand you right you dont know how to make a vb dll?
you just need to make a 'class library' project, and that will compile as a dll |
Forum: VB.NET Feb 18th, 2006 |
| Replies: 6 Views: 4,219 check your table restraints, like the username might be need to be unique so it cant add the a duplicated key., i had this error and i think that was the problem.
if that is not what is wrong ill... |
Forum: VB.NET Feb 13th, 2006 |
| Replies: 7 Views: 10,689 ok ive found what i was looking for. heres all i needed
RichTextBox1.AppendText(newText)
RichTextBox1.SelectionStart = Len(RichTextBox1.Text)
... |
Forum: VB.NET Feb 13th, 2006 |
| Replies: 7 Views: 10,689 ive seen people saying to select the last char then unselect it, but when there gets to be a lot of text it gives a flicker effect which i wanted to avoid.
But maybe it wont be visable if its done... |
Forum: VB.NET Feb 9th, 2006 |
| Replies: 7 Views: 10,689 i guess i meant that. but i need help on making it auto scroll. because when it fills regularly, the new text is put below the old text which is out of display.
this is a windows form |
Forum: VB.NET Feb 6th, 2006 |
| Replies: 7 Views: 10,689 well i know how to write it how i want it in the rich text box. but i need it to auto scroll down. anyone??!?!? |
Forum: VB.NET Feb 5th, 2006 |
| Replies: 7 Views: 10,689 is there any simple way to do this?
im making a chat client and i want it to display text like all chat clients do, which is buttom to top.
Thanks! |
Forum: VB.NET Jan 13th, 2006 |
| Replies: 5 Views: 1,856 its strange because i ran this code without any problems
but your right that is probably the reason why it shows the error and that would account for why i didnt get the error because i never hit... |
Forum: VB.NET Jan 13th, 2006 |
| Replies: 5 Views: 1,856 no that is correct, because he should read the file until the it reaches null which is the termination for a text file |
Forum: VB.NET Jan 10th, 2006 |
| Replies: 5 Views: 1,856 try debugging with breakpoints and stepping thru the whole program.
a "System.StackOverflowException" error is trying to set a value in an array higher then its length |
Forum: VB.NET Jan 10th, 2006 |
| Replies: 2 Views: 1,914 what ".NET thing" did you just buy? a webhost?
for a website dont use access. you want to use SQL, probably mssql since its a .net host. If you want to build the data base on your desktop, use... |