Search Result
Collapse
20 results in 0.0048 seconds.
Keywords
Members
Tags
-
Outlook locking file from being edited after saving attachment
One of my users is having a problem when saving attachments from her email. If she right clicks on the attachment, chooses Save As... and then picks a location to save the file, when she goes to edit that file name or make changes and save it or move it, she receives a message saying that the file is locked and currently in use even though she has closed the email that she got the attachment from. She has to close out of outlook completely in order... -
Prevent saving when switching between subforms
Hi again guys. I have a series of tables linked together with 1:1 relationships to a unique key with referential integrity enabled on the relationships. My data entry form is made up of 7 subforms. Because of the field limitation I cannot house all my entries on one form.
My problem is that when my user switches to another subform access tries to save the record. Access cannot save the record because there are required fields in some... -
Saving of html form to server rather than locally
I recently inherited some code that I need to adapt and I am just not a java or asp coder so need some assistance.
I have a web form created by converting an excel spreadsheet to html with several onClick events, specifically "Clear" (clears data), "Submit" (emails data) and "Save Draft" (saves draft lcoally). Customers input their data, the from works its magic and is then sent off per the clicks. User... -
Where do settings get saved once the application is running?
Hello
I would like to find out where (in what file) do settings get saved when my application runs (made with windows forms - after i publish my application, not when i debug it). All my settings are saved with the Scope being "User" and the default value being 0.
For example i got this code
Code:int x; x = Properties.Settings.Default.xSetting; private void buttonAdd_Click(object sender, EventArgs e)
-
How to save data in a file?
Hello
For my project, I made a program that computes for FG (Final Grade) of a student, and lists the students who receive awards.
How do I save these data? (the values of the variable FG and the contents of the listboxes) I'm thinking of having a save button, and I really need the code for it, but I can't find a working one anywhere. Also, is it better to save as a text file or as a database? (I'm a moderate beginner, so I... -
How to saving Form data into an unlinked table as a new record?
hello,
right, i have a form (currently form1) and this is a data entry form where users write in details about borrowing a book, when i click a save button, i need this data to be saved into a unlinked table (called Loan) as a new record, under the correct field names, e.g. "loan date" on the form to be saved under the "loan date" heading in the table.
is there a way to do this?
thanks.... -
Saving a Draw made by the user.
Hi All,
I have made a small app that allows the user to draw.
Code:createEmptyMovieClip("terrain", 1); terrain.lineStyle(3, 0x000000, 100); imdrawing = false; onMouseDown = function () { if (imdrawing == false) { terrain.moveTo(_xmouse, _ymouse); imdrawing = true; } if (imdrawing == true) { onEnterFrame = function
-
JavaScript App which allow the user to paint and save
Hi All,
I have been trying to make an JavaScript application which allow the user to paint (draw) a small picture.
When the done the draw will be placed as picture into a Crystal Report (.Net) by pressing a button.
Cheers -
Why is my C# generated html file being saved?
Hello,
I am writing to an Html file using C#. but I dont want that file saved. I just want the user to see it, and then when they close it, to dissappear. Why is this html file still being saved on my desktop?? The C# code is behind my infopath form. any help is appreciated. -
How to save the default value of a textbox
I have a textbox which the user can change the value of. This textbox is used in some of the calculations.
How do i save the value of a textbox so that the next time the form opens the text box holds that value.
For example the textbox default is 1.5. The user changes it to 5 and then closes the form. The next time the user opens the form the textbox default is now 5 not 1.5
I dont have a data source... -
My Method on Paint drastically effects my program GUI's performance
Hello everyone,
I would like to ask for your help, guys. For some reasons, if i include the following lines in my paint event handler of my picture box, the GUI acts very weird (as if it cannot "draw" all the controls, some of them are invisible or the program acts as if there is no threading). The reason is because I include those lines of code. But what is the real reason behind it? Is it because Paint event handler tries to re-paint... -
How do you save a record in ms access using vb
I want to save the record on a form before creating a report.
Shit+Enter could do it but I would like to add a "save record" to a click event of a button that creates the report.
Can anyone please help.
David -
How can I save a file from the internet using csharp?
I am writing a program, and i would like to save an xml file that is on the internet now, to my computer in this csharp program. Something else that might help is if i could get the csharp xml reader to work on files on the internet. I would like to read the attributes of xml files and for some reason that is only working when i read the files on my local drive. I am fairly new to csharp and all that i know i have tought myself through the internet.... -
save picturebox graphics drawn by two different objects
Hi,
I have a picturebox with graphics drawn from different objects. In one object I used
Code:Pen P1; P1 = new Pen(Color.Blue, 3); Graphics g = null; g = Graphics.FromImage(image.Image); g.DrawPath(P1, Wirepath[j-1]); P1.Dispose(); g.Dispose();
Code:protected override void
-
Save and Retrive Image
Hi, Guys, am trying this program where I used openDialog to allow the user to select an image. This image is load into a pictureBox called MemberPics. After that, I want to save the selected image with its file name and retrieve(load into another pictureBox called display) it in another form. In this case, i want to use the image filename for the retrieval so that different user can use different images. Please help me.