Hello,
In a C# Windows Form Application .How to get and set by code the value of Scroll Bar of List View Control? I mean that for example if the scroll was in the middle of the scrollbar ; I want to get 50% and if i want to set it to the half i write set(50). Is there any way to do that ? Thanks
Hi, I have a web browser in my access form. I am embedding a gif file on it. but how ever i re size it there is a white border coming in the top and left side. The adjustments take place only at the bottom and right side. So when i embed a gif file with black background i end up getting a white background on the top and left sides, how do i make this go.
thanks
tksy
Hi. I don't have much experience with C# or VS, but I want to add a property table to a form, like this one:
So that columns are resizable, editable, of different types (e.g. checkbox for boolean) and sortable. How do I do that?
I just started playing with cpp for the first time (using VS6 C++), I created an empty win32 application, added a IDD_FORMVIEW dialog, and now I don't know how to set that dialog as the main "form" for the application. I mean I want the dialog to be the first and main window opened when executing the compiled exe.
I'm using Javawebparts Ajaxparts and would like to use one axis event multiple times in a form.
Problem is that std:InnerHTML responseHandler takes its target html tag id in axis-config.xml so it seems impossible to reuse the definition when only thing that should change is the target tag id.
Is there a way to set responseHandler parameters on the the page where it is used (in asix:event tag or someting)?
this component is : simply use and you set your e mail address. Later add on your web-site (either flash or html)
When a visitor adds name and mail the PHP form sends the info to your mail.
That's all :)
Hi, so I need the user to write a review about an article or book and send it to a DB via PHP but with some basic HTML formatting.. I mean, I have a form , when the user writes the review, the data is sent but without any kind of formatting, If the user want to write in a new line, the text is sent like plain text, I need to get also those new line breaks and simple stuff.
I know how to use PHP and DB connection, I just need to know how to get those new line breakes and stuff..
How do I make a button on a form behave like a button on a toolStrip?
I want a menu-type list to come down. I tried using a toolStripContainer but it is very hard to manipulate to get it to behave as just one button.
Is there an easier way than just putting a toolStrip with one button in a toolStripContainer?
Thanks.
I need to build an application that accepts user input data (such as name, address, amount, etc.) and then merges it with a pre-loaded document template (order form) and then prints this merged document. I can use Windows Forms or WPF for this project.
Any suggestions on how best to approach this? I'm experienced with Winforms development, but don't have any idea how to handle merging the data to the document for printing.
I was wondering in sharepoint what the difference between a forms library in sharepoint vs the central admin page under manage form templates. I am trying to upload .xsn files so that no one can access them, but I don't know if I should upload them to the central admin page or if a forms library will suffice. Any help would be greatly appreciated.
I have multiple master pages in my asp.net mvc web application... Each of the pages add,edit,view and delete functionalities.... What it does is i have to create multiple views for handling add,edit,view and delete functionalities (ie) the user has to navigate to another view to edit/view the details of a record... How to Handle Multiple Form Actions (ie) add,edit,view and delete functionalities on One View?
i am using c# with asp.net and sql 2005 as backend, i want to use dropdown list cntrl in a form and fetch a column in a textbox which is linked to that dropdown cntrl in the database, what coding should i use in c# for that?
Hi,
If I have a close button on a form, and I want them to be able to click it but affectively act as a 'Hide' button, how can this be easily done? Is there no way to abort the formclosing event from executing fully?
Cheers
My page has a form that has a text field in it. I'd like to set the focus to that text field as soon as the page loads, so that users do not have to click it to start typing. How can I do this?
I want to generate a tuple of tuple in form of ((x1,y1,x2,y2),...(x1,y1,x2,y2)) where x1,y1,x2,y2 are all in range of (0,8).
Is there any other way rather than the following?
S = list()
for x1 in range(0, 8):
for y1 in range(0, 8):
for x2 in range(0, 8):
for y2 in range(0, 8):
S.append([x1,y1,x2,y2])
S = tuple(S)
thanks
I have a bunch of characters which are encoded in the form %XX%XX. How can I display the actual characters with Javascript?
Examples of the characters are...
what I have / what I want
%C5%93 / œ
%C3%A6 / æ
%C3%9F / ß
Thanks for the help!