April 29th, 2004 08:00 PM
Ok, I just wanted to update this.
Yesterday I found a great piece of free software providing me with the CVS features I needed. It is called Subversion (SVN) and there is a really great Interface...
April 29th, 2004 07:58 PM
have you tried the Application on another machine yet?
because that doesn't seem to be an error that has anything to do with your code
greetings uNI
April 29th, 2004 07:50 PM
No.. there is no way.
In other languages like C# it is easiy, but it is simply not possible on VB. I searched long time for a solution because I had a quite big app that used a Audit Engine and I...
April 29th, 2004 07:47 PM
Use the Microsoft Winsock Control to create a TCP connection to the server and read the RFC for Telnet communications. that should enable you to send data to the telnet server.
indeed the telnet...
April 28th, 2004 05:36 PM
Use the MSCommondialog Control.
You must first add the Microsoft Visual Basic Common controls (or somehow like that) to you project and then you can use the commondialog to show the windows printer...
April 28th, 2004 05:32 PM
The form has a property called "ShowInTaskbar" and you can set that to true or false
setting it to true will hide it from the taskbar..
But I would recommend not only setting Form1.Visible =...
April 28th, 2004 05:30 PM
there is no attachmend..
but I guess your problem is here:
Shell ChosenRsPath & "ROGUESPEAR.EXE" & " -server " & RsP, vbNormalFocus
and I think I can also guess why..
You are trying to...
April 28th, 2004 05:24 PM
I had exactly the same problem and asked here for help.. just a few days before you showed up :) ..
greetings UNI
April 27th, 2004 07:27 PM
Visual Basic isn't an object oriented language.. but I know what you mean because I was programming VB6 in a OOP way (somehow)
I used one bas module for common functions I always need to call like...
April 27th, 2004 07:18 PM
You want many buttons to share the same function, and you want to identify what button was clicked isn't it so?
You simply create the buttons with the windows forms designer (you can do that by...
April 27th, 2004 07:11 PM
Consider writing your application in something else than .NET and consider using a fast database server.
I know C# is a really great language, but when executing managed code the whole thing slows...
April 27th, 2004 07:07 PM
I don't think you will do that now.. but if you are planning a re-write you should consider getting familiar with DAO and try it that way.
greetings UNI
April 27th, 2004 09:59 AM
perfect.. I love you :)
sorry.. but my deadline is 17:45 and I just had the problem how to cast a form..
god I should have listened to what the guy at university told us about Java.. it's the...
April 27th, 2004 06:01 AM
additional question.
How can I access the object that was clicked?
sender has only got the equals, gettype and tostring functions, i need to access things like height, width, text and tag of...
April 27th, 2004 05:14 AM
thanks a ton :)
greetings UNI
April 26th, 2004 06:19 PM
Hi. I have got a problem and I hoped you would help me.
I use this function to create a button within an application
private void AddButton(string Text)
{
Button cmdTest = new Button();...
April 25th, 2004 11:08 AM
You want to insert everything the user had written to a flexgrid into the datebase
start the for loop
For
execute("INSERT INTO ...")
Next
or you could do that
April 25th, 2004 05:11 AM
maybe you should try thinking about assembling strings?
The connection string is a string that can be created like we did with the app.path
strConn = "PROVIDER=Microsoft.Jet.OLEDB.3.51;Data...
April 24th, 2004 08:46 PM
Unload me isn't closing the whole app..
Add to your Exit Button the Code:
Exit() (or something like that) and your program will close without you having to think about any forms that may be...