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 SkipVought 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: *

  1. ikim2000

    how can i save data within the application

    the saving and retriving via registry worked out well and it suited what I was trying to do because I was only storing small amount of data and only wanted to use one file to work with, the exe file, to simplify things. thanks all, ike
  2. ikim2000

    how can i save data within the application

    ADoozer, I want to let the user save some default values when using the application so that they don't have to reenter the same values when the application is relaunched. thanx, ik.
  3. ikim2000

    how can i save data within the application

    rogerl101, would this work for any user or just the users with the admin previlages because of writing to the registry? thanx, ik.
  4. ikim2000

    how can i save data within the application

    Is there a way to save limited data in the exe file? Let say I want store something like the changing values in txtFirstName or txtLastName or chkBox values and retrieve for later use...can it be stored somewhere within the controls? If so what would be the limitation? Thanx, Ik.
  5. ikim2000

    composing new message in outlook

    Great answer paulbent about alternative answer to automating Outlook..when i use your method, i don't need to worry about the system's email client type, whether the instance already exists, it's much easier if i just want to send an email. thanx,Ike.
  6. ikim2000

    how to evaluate if Outlook is running?

    Thanks..your code worked. Ik.
  7. ikim2000

    Mouse out event?

    Manipulating the control's mouse_move event and the form's mouse_move event works and I have not experience a failure yet, but I think I will eventually use stronm suggestion. thanks, Ik.
  8. ikim2000

    Evaluating if Outlook is installed

    How can you evaluate if one has the OUTLOOK program installed? so I can know this before trying to automate the Outlook's application object. thanks, ik
  9. ikim2000

    Positioning the cursor in the Outlook automation

    Using automation I was able to create a new message, but how do I position the cursor at the beginning of the message's body? Currently, the cursor is positioned in the "To:" box. Thanks, ike
  10. ikim2000

    composing new message in outlook

    How can I automate oultlook so that I can provide the user with a new message with something like "to:abc@abc.com" and is ready for the user to just type in the body of the message? thanks, ik.
  11. ikim2000

    how to evaluate if Outlook is running?

    With VB, how can I evaluate if Outlook is already running? and if it is, how do I make it the active window? thanks, Ike
  12. ikim2000

    Mouse out event?

    I used a mouse_move event to change the fontstyle in my label control, but what event do i use to restore my orginal font when I want this to occur when I move the mouse out of the label control? thanks, ik
  13. ikim2000

    Instantiate and post to URL

    On a click event, how can launch an instance of Internet Explorer and post text input value to an ASP paged url? For example, URL is "http://www.acmecomputers/order_action.asp Input Text is "order_number" Input Text is "customer_id" Thanks, Ike.
  14. ikim2000

    insert record syntax

    I'm trying to execute the connection object string below but it fails in the ASP page that this code resides. I know it fails because no record gets added to the table. I think it has to do with the vID(the data type is integer) syntax...
  15. ikim2000

    Insert statement using variables

    Thanks, it worked. Any explanation as to why "& cost &" vs. vCost ?
  16. ikim2000

    Insert statement using variables

    I get an error when I execute the below INSERT statement. Cost and Price are money data types: sqlText = "Insert Into tblProduct(ID,Cost,Price) values ('" & vProductID &"',vCost,vPrice)" Is my syntax correct for vCost and vPrice...
  17. ikim2000

    Error accessing FrontPage web files

    I'm using Visual Interdev 6.0 SP5 on W2K Server: When I use the web project wizard to create a new web application project, during step 3 of 4 I get an error message "An unexpected error occurred accessing your FrontPage web files. Authors -contact....". Hence, I'm unable to create...
  18. ikim2000

    Declared variable in SELECT statement

    What does the select statement do below and what does the declared variable do in that statement? I seen it being used with "WHERE" as well. Thx, Ik. ======================================================== declare @vID int select @vID = CustomerID from tblCustomer
  19. ikim2000

    search records with NULL

    I'm trying to delete records with a column that has null value and I can't get the correct syntax. I tried the code below, but end up with an error. ------------------------------------------------ DELETE FROM tblOrder WHERE OrderDate = Null ------------------------------------------------ What...
  20. ikim2000

    Syntax error converting the varchar value

    When I execute the statement below, I get an error "Syntax error converting the varchar value 'Air4Wire " SELECT ID + CompanyName as Company from tblCustomer The ID column is integer type and CompanyName is char type, and Air4Wire is a company name. Thanks, Ik

Part and Inventory Search

Back
Top