Search results for query: *

  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

    No one has any ideas?
  4. 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...
  5. B

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

    Well I changed the runtime policy granting assemblies from all zones the full trust option
  6. B

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

    Alright, so I found a solution but it's a crappy one. I'll also explain the situation a bit better. I designed a program in VB.net 2003. I took the program and put it on our workplaces server. Every computer in the building can access the application now (I placed the DLL's & the .ocx's in...
  7. B

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

    Upgraded the framework already
  8. 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...
  9. B

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

    Anyone have ANY ideas whatsoever?
  10. 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...
  11. 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...
  12. B

    Speech Recognition

    Thanks a lot, i'm at work now but i'll be testing this soon! I feel quite stupid for not catching that easy mistake hehe
  13. 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...
  14. B

    Writing a "Printing Service"

    You can use a timer with the interval 60000...
  15. 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')...
  16. B

    IME Mode?

    Let me rephrase to see if I can get a better answer, i'll even make the question a little easier and then work with the answer that I get... I have a textbox on a form that a user can enter a word into. I have the IMEMode of this textbox (i've also tried RTF) set to "Hiragana" (i've also tried...
  17. B

    IME Mode?

    It's a japanese word written in english characters (namae = name) and I want to display the word in japanese characters.
  18. 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...
  19. B

    Startup Registry Problems

    OH YES!! Thanks a lot, that works wonders!
  20. B

    Startup Registry Problems

    Alright, thanks for that info and here's the problem I found. My program path is C:\Documents and Settings\Owner\Desktop\Temp\Xanga Check.exe. When I put the path in the registry, the path is correct. Now when I load up my computer, the message box that pops up says that it can't find...
Back
Top