- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 5
- Posts with Upvotes
- 5
- Upvoting Members
- 3
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
13 Posted Topics
I do not have much experience with rich text however this link may be of use to you: [URL="http://www.biblioscape.com/rtf15_spec.htm"]http://www.biblioscape.com/rtf15_spec.htm[/URL] Table specs specifically are here: [URL="http://www.biblioscape.com/rtf15_spec.htm#Heading40"]http://www.biblioscape.com/rtf15_spec.htm#Heading40[/URL] Kenny
This link might help you out. I believe its more of an issue with Access than VB. Since you are getting this error I would say its safe to say the .NET Framework is installed and the program is working. [URL="http://www.xtremevbtalk.com/archive/index.php/t-221944.html"]http://www.xtremevbtalk.com/archive/index.php/t-221944.html[/URL] Kenny
Are you able to share the link or any of your code? Kenny
Are you trying to actually do a JOIN with 3 tables or 2 tables? The Team table is never specified. I don't have your data or your intentions in mind but what about something like this? SELECT SubmittedTeam FROM NETT LEFT JOIN Team b ON NETT.SubmittedTeam = Team.Team LEFT JOIN …
I try to keep my splash screens on seperate threads for things like this. However you may be able to add an Application.DoEvents(); before your thread.sleep statements to allow all the events / painting to process. Kenny
This is not that difficult of a task. The first thing I would do on the page is calculate the number of "pages" you have with your data: [CODE] Dim RecordsPerPage As Integer = 10 Dim TotalPageCount As Integer = songList.Count \ RecordsPerPage If songList.Count Mod RecordsPerPage > 0 Then …
What kind of phone are you using? Can you get commands to work through hyper terminal? My code works great using the same commands however your first "AT" command doesnt appear complete and is not followed by a carriage return. Try first sending "ATZ" + vbCr. There is no need …
I am not familiar with the zip component you are using. I assume the StepEntryProgress event fires multiple times for multiple files being extracted. Is this correct? If so you are losing your TransferTotal value because it is declared within that subroutine and not globally to the form. Does the …
There are many ways to accomplish this however I'm not sure what resources you have at your disposal. You could use a central database, RSS Feeds or even an HTTP Post to obtain the desired content from a page that has the content the domains need to display. Any of …
This link may help you out. They seem to go into great detail on the percent key :) [URL="http://blogs.msdn.com/b/oldnewthing/archive/2008/01/10/7047497.aspx"]http://blogs.msdn.com/b/oldnewthing/archive/2008/01/10/7047497.aspx[/URL] Kenny
I hope I understand correcty. You want to delete all files that have an integer as the file name without the extension? If so I put this code together for you: [CODE] string[] fileList = Directory.GetFiles("C:\\Test", "*.jpg", SearchOption.TopDirectoryOnly); string fileName; int test; foreach(string file in fileList) { fileName = Path.GetFileNameWithoutExtension(file); …
You can't. You should create a seperate project to startup with the users account that has the notify icon in it. This project should communicate with the windows service in some manner. (RPC, Remoting, TCP/IP, etc). You should avoid any GUI/user interaction directly from windows services. Kenny
Here is some free code: [URL="http://wyday.com/windows-7-progress-bar"]http://wyday.com/windows-7-progress-bar[/URL]
The End.
kdion1024