Search results for query: *

  • Users: b3jsd73jfx
  • Content: Threads
  • Order by date
  1. B

    Can't append to a string?

    Alright, I have a class I'm using (I did not create the class, one I found online), and for some reason whenever I try to append any string information to the .SongTitle string return of the class, it will not append the string. Here's the class: Imports System.IO Imports System.Text Imports...
  2. B

    Service to open Access Database?

    I need a service to run a macro from an access database every monday at 5:00 AM. I've tried using the code you'd use to open it normally but it just won't work. Any ideas?
  3. B

    Security.Permissions.FileIOPermission Error

    I'm running a program off of a network drive and receiving the following error: Request for the permission of type 'System.Security.Permissions.FileIOPermission, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed. This happens in the following code: On...
  4. B

    VB.net program won't load...

    I know the title is pretty general, but literally that's what happens. On my computer with Visual Studio 2005 installed, the program runs fine. But when I copy it to any other computer, the program attempts to load then dies. I don't even see the main form of the program. I tried making a...
  5. B

    VB.net 2003 to VB.net 2005 Access Issue....

    Ok, I have a program that compiles and runs fine under visual studio.net 2003. I have copied this program to many other computers and it works fine. I recently upgraded to visual studio.net 2005 and the program runs fine on my computer. But when I try to run the program on another computer, I...
  6. B

    Microsoft Great Plains eConnect

    Does anyone know how to make the eConnect SDK work with great plains? There is no documentation, nothing online, and I'm just completely lost. Our workplace is looking to implement this and I'm wondering if someone can give me an example of how it works...
  7. B

    Speech Recognition

    Below is the codethat I currently have to try and do some basic speech recognition, but it just won't seem to work. Does anyone have any ideas? Dim WithEvents RecoContext As SpSharedRecoContext Dim Grammar As ISpeechRecoGrammar Private Sub RecoContext_Recognition(ByVal StreamNumber...
  8. B

    Backup Service Help

    Alright, i've made a service that is supposed to check to see if a file exists and if it does, make a copy of it in a different directory. Below is the code that I currently have. As you can guess, it doesn't work properly. I used messageboxes to test it out (turned on 'interact with desktop')...
  9. B

    IME Mode?

    Ok, i'm making a program that loads an array of words from a text file (soon to be XML) and then randomly selects a word from the array. I need to display this word in hiragana or katakana (japanese language characters). But I want to display it in a label if possible, a textbox if I need to...
  10. B

    Startup Registry Problems

    Ok, I have a problem with my program running on windows startup. Normally when my program runs, the first thing it does is read from a text file and read all the lines. This works fine and gives no errors when I do it normally. But when I put the registry key in...
  11. B

    Application.DoEvents

    Alright, I have a situation that I need help with (obviously). I have a program that starts from Sub Main in Module1.vb. Here's what that subroutine looks like: Public Sub Main() Try Dim reader As IO.StreamReader = IO.File.OpenText("v.dat") checkinterval = reader.ReadLine autoupdate =...
  12. B

    Form resizing error...

    I have a program made that, when minimizes it hides the form, removes it from the taskbar. If I double click the tray icon (which is always visible), the form unhides. To make it work properly, I had to make it so that when the program minimizes, the program hides and then maximizes itself again...
  13. B

    Reading from text files...

    Alright, I've made this program that goes to a blog site and checks if any of the specified users have updated their site. The specified usernames are stored in a normal text file, one username per line. When the program loads up, it opens the text file, reads each username into an array...
Back
Top