Posts
 
Reputation
Joined
Last Seen
Ranked #2K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
80% Quality Score
Upvotes Received
5
Posts with Upvotes
5
Upvoting Members
3
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
2 Commented Posts
0 Endorsements
Ranked #1K
~7K People Reached

13 Posted Topics

Member Avatar for sunilkumarmano

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

Member Avatar for Rajeev_7
0
2K
Member Avatar for jzlonely

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

Member Avatar for jzlonely
0
4K
Member Avatar for m-lamaa
Member Avatar for HUPextreme

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 …

Member Avatar for kdion1024
0
170
Member Avatar for Duki

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

Member Avatar for kdion1024
0
163
Member Avatar for ajwei810192

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 …

Member Avatar for kvprajapati
1
162
Member Avatar for Extremist-smj

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 …

Member Avatar for Extremist-smj
0
179
Member Avatar for madlan

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 …

Member Avatar for kdion1024
0
193
Member Avatar for Muad Dib

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 …

Member Avatar for Muad Dib
0
187
Member Avatar for Dcurvez

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

Member Avatar for Dcurvez
0
132
Member Avatar for bruno386

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); …

Member Avatar for kdion1024
0
304
Member Avatar for mojtaba1984

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

Member Avatar for kdion1024
0
128
Member Avatar for madlan

Here is some free code: [URL="http://wyday.com/windows-7-progress-bar"]http://wyday.com/windows-7-progress-bar[/URL]

Member Avatar for kdion1024
0
74

The End.