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
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.
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.
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.
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.
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
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
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.
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
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.
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...
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...
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...
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
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...
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
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.