Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: MrKovacic
  • Content: Threads
  • Order by date
  1. MrKovacic

    VP Windows APP go to web page and fill out form ( HALP! )

    hi all.. me again I am so close with this one.. and i know its simple, but i am a n00b. Here is the code I have so far... Public Class Form1 Private Sub submit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles submit.Click WebBrowser1.Navigate("http:my...
  2. MrKovacic

    create file / write to file / save file ( not working )

    Hello all I am trying to make a module that creates a file ,and I have collected sample script, but it does not appear to be working, but looking at the code, you would think it would work.. Heres the code Dim oFile As System.IO.File Dim oWrite As System.IO.StreamWriter Dim oRead As...
  3. MrKovacic

    Push a button to launch vbs.. I am a newb.. HALP!!

    Hello all, i bet this is simple, but after over a week, i still cant to it.. I am using Microsoft visual basic 2005 express, and I am trying to make a simple program that has buttons, and at the push of a button, will execute a .vbs script i have embedded. I tried the shell command, but it...
  4. MrKovacic

    Newb question

    Hello all, i bet this is simple, but after over a week, i still cant to it.. I am using Microsoft visual basic 2005 express, and I am trying to make a simple program that has buttons, and at the push of a button, will execute a .vbs script i have embedded. I tried the shell command, but it...
  5. MrKovacic

    launch VBScript from button (micros. visua. bas. 2005 exp.)

    I am working in Microsoft VB express 2005, and want to launch a vbs file included in the program just by pressing a button.. Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click End Sub End Class as you...
  6. MrKovacic

    Create attachment and make task: shortcut vs copy of file

    Hello all! Currently, I have a working script for a help desk that asks for a ticket number, subject, and how long until it should remind you. When it attaches the ticket to the task, it attaches a shortcut, as opposed to a copy of the file. Can anyone tell me how to make it copy the file, so...
  7. MrKovacic

    script attaching files in outlook task, shortcut / actual file

    Hello... I have been able to assemble a script that attaches a file sitting on the C:\temp directory into a task. The only problem is, it is attaching a shortcut instead of the actual file. I was hoping to change that to the actual file.. here is the code im using.. Set OlApp =...
  8. MrKovacic

    Formatting code for creating tasks in outlook.

    Hello all! I was given this code to create tasks in outlook, but I am not sure how to add an attachment.. Here is the code.. Set OlApp = CreateObject("Outlook.Application") Set nsNameSpace = OlApp.GetNamespace("MAPI") Set olFolderCalendar = nsNameSpace.GetDefaultFolder(9) 'olFolderCalendar...
  9. MrKovacic

    Create outlook task using standalone .vbs file

    We use Remedy Corporation: Action Request System, and I am trying to create an add-on, or a separate program, that will create a reminder in outlook to address remedy tickets. I want to be able to put in the remedy number, and when to remind me, or even a pull down to says 24 hours - 48 hours -...
  10. MrKovacic

    WinXP Pro > Promting for credentials for Domain logon...

    I work on a domain server, so we log on to a domain, which is connected to certain intranet web services, and the exchange servers... What I have noticed is, users who used to be able to access protected resources are now being prompted for their network password, even though it has not...
  11. MrKovacic

    OUTLOOK 2003 > new meetings, reminders not working

    Outlook 2003, using an exchange server, when someone sends me a meeting request, everyone in the meeting gets their reminders except for me. I searched every setting I could find, and still cant solve the problem.. Any ideas? Thanks!!!!!!! Thank you!!! Mike Kovacic
  12. MrKovacic

    Send Mail Code, /r /n what does it mean???

    Ok, I have created a credit app form, that once submitted, will get sent out to an email. I would like the e-mail portion formatted, so it prints nice, but putting HTML in the $message = " Here is my <b> EMAIL FORM </b>, I hope you like it" dosent work. Here is the processing script I...
  13. MrKovacic

    2 Internet connections for one network

    Hello all, I have Comcast High speed internet and Verizon FIOS. I would like to set up my home network with both connections for extra broadband. I will be working on a radio station from my home, and at times streaming audio out. I also want one to serve as a failsafe connection, where the...
  14. MrKovacic

    Check my syntax please!

    Hello! I am trying to bind 2 systems, Mambo and XMB Forums. Below, I am trying to make a chunk of code to put after the registration to mambo (content management website (website-in-a-box)) thats sole dudy is to place new registration data into the XMB (message-forum-in-a-box) tables to...
  15. MrKovacic

    Mambo &amp; XMB, syncing 2 MySQLs

    This is prob. easy, but seeing that I am somewhat of a newb, anything is difficult for me.. I am runing Mambo for my website, and XMB for my forum, and I would like to make a script that registers the user in the forum when they register with the site, and create the sessions when they are...
  16. MrKovacic

    ERROR: User '***' has exceeded the 'max_questions' resource

    out of nowhere, i started getting this error this morning on my site... Forumuniversal.com I get it every other time a page loads... Is someone trying to brute force my SQL??? ERROR: MySQL encountered the following error: User 'SQL2' has exceeded the 'max_questions' resource (current value...
  17. MrKovacic

    Error.. AM I being hacked?

    out of nowhere, i started getting this error this morning on my site... Forumuniversal.com I get it every other time a page loads... Is someone trying to brute force my SQL??? ERROR: MySQL encountered the following error: User 'SQL2' has exceeded the 'max_questions' resource (current value...
  18. MrKovacic

    Frontpage 2000 links as file:///

    One of my users is working in front page, and alot of his links keep turning from <a href="pageIwannagoto.htm"> CLick Here </a> to <a href="file:///F:\websites\mywebsitedir\pageIwannagoto.htm"> CLick Here </a> This is driving me insane because it did that to over 100 pages. Is there a...
  19. MrKovacic

    Odd Error

    One of my users is getting an error: "Errors in background synchronization. In most cases, further information is available in a synchronization log in the Deleted Items folder." Is anyone farmiliar with this? Thanks in advance! Thank you!!! Mike Kovacic &quot;&quot;&quot...
  20. MrKovacic

    FLASH 5, Reading main site cookies, HOW?

    I hope this is an easy one, but here it goes.. I have a website called forumuniversal.com Once you are logged in, you have a username that is stored as a cookie, along with tones of other crap. I want this flash chat to read the cookie, get only the username, and assign it to the variable that...

Part and Inventory Search

Back
Top