由买买提看人间百态

topics

全部话题 - 话题: dialog
1 2 3 4 5 6 7 8 9 10 下页 末页 (共10页)
t********5
发帖数: 274
1
来自主题: DotNet版 - Jquery dialog问题请教
btnCreateAccount是主页面的按钮,按下之后弹出dialog子页面,子页面里有个
continue按钮,按下之后希望主页面的btnCreateAccount继续提交,按照我下边的代码
,无法继续,因为$("#<%=btnCreateAccount.ClientID %>").click(function() 里
return false了,如果不return false的话,子页面只是一闪而过,无法停留,不知如
何处理,望高人指教!
$("#<%=btnCreateAccount.ClientID %>").click(function() {
if ($("#aspnetForm").valid())
{
if( $('#<%=drpCompanyState.ClientID %>').val() =='CA' ||
$('#<%=drpCompanyState.ClientID %>').val() =='GA'){
$... 阅读全帖
t****r
发帖数: 76
2
MDI工程。
CVIEW里有个Dialog指针。构造时生成Dialog对象,OnCreate是显示该对象。
Dialog的风格为子窗口
这等同于把父窗口设为CVIEW了吗?还是ChildFrm?
还有,这个Dialog的Cpp文件里有个工作线程函数要向ChildFrm发消息,怎样找到其指针?
请指教!
c**t
发帖数: 2744
3
来自主题: DotNet版 - VS2010 Add reference Dialog, not good
I'm sure every dotnet developer hates extremely slow and annoying "add
reference dialog". VS2010 introduced asynchonous thread, which made the
dialog pops up enearly instantaneously. Yeah, the changes made a huge
difference but NOT FOR THE BETTER. Dialog updates every item found, it's
NOT really usable untill the entire list is loaded.
Could VS team "find" the entire list whenever the IDE is launched? and then
cache the list? and update if neccessary?
s*********r
发帖数: 265
4
来自主题: EE版 - breaking news: dialog收购Atmel
Dialog以总价近46亿美元的现金和股票收购Atmel。
Dialog预计收购完成以后,两年内将在成本方面节省1.5亿美元
2017年两家的营收将正式合并,这将强加Dialog的每股收益。
m******y
发帖数: 588
5
来自主题: Database版 - How to customize dialog box in MS ACCESS
hi, I am trying to build some simple user interface in MS ACCESS 2003 Project
that connects to SQL Server. I wrote a parameter stored procedure that will
pop up a Enter Parameter Dialog Box. The problem is that the dialog box is too
ugly and I can't find a way to customize it in MS ACCESS Project. Could anyone
tell me how to do it? Thanks a lot!
H***F
发帖数: 2501
6
来自主题: EE版 - breaking news: dialog收购Atmel
dialog做什么的

dialog对苹果依赖过重,现在高通一打喷嚏它赶紧批上件袄
n**********r
发帖数: 6
7
How to open a dialog or frame? You can not control the parent before closing
this child windows.
m********5
发帖数: 17667
8
几乎所有的系统dialog都没法调整大小,这是怎么一回事?
难倒以后用windows的时候必须要用放大镜?
c****s
发帖数: 2487
9
来自主题: EE版 - breaking news: dialog收购Atmel
dialog对苹果依赖过重,现在高通一打喷嚏它赶紧批上件袄
w*s
发帖数: 7227
10
Hi 大牛们,
i downloaded AdventureWorks2012_Data.mdf,
i can open it using sql server 2012 express.
Now i'm following the book trying to create a c# project connect to it,
(the book uses NorthWind db file, i cannot open it as it's not for sql 2012)
at step 9, i choosed my db file, i click "ok", but nothing happens other
than hearing a bell.
Any help appreciated !
1. Create a new console application project called BegVCSharp_24_1_
FirstLINQtoDatabaseQuery in the
directory C:BegVCSharpChapter24.
2. Pre... 阅读全帖
d*****l
发帖数: 8441
11

好像解决了,不过没有显式地用另外的线程,用的定时器和Model对话框:
final JDialog dialog = new JDialog(this, "Auto-Close Dialog");
Timer timer = new Timer(50, new ActionListener() {
public void actionPerformed(ActionEvent e) {
dialog.setVisible(false);
dialog.dispose();
}
});
timer.setRepeats(false);
timer.start();
dialog.add(new JLabel("Generating Documents ..."));
dialog.setVisible(true); // modal dialog: applicat... 阅读全帖
d****p
发帖数: 685
12
来自主题: Programming版 - 今天很郁闷
I agree with you guys about the real bug being deep, but I won't follow you
guys' suggestions trying to fix it :-) This is about corporate survival.
It is not my code so all the best I can do is as you said preventing it from
happening (for now, and for our team that is not responsible for area). I
have my own stuff to do and that is more urgent.
The function is actually windows MFC SetWindowPos - I modified its last
parameter to "hide" the problem. For unknown reason the function messed up
for ... 阅读全帖
r**u
发帖数: 1567
13
来自主题: JobHunting版 - 问个基本的design问题 (转载)
【 以下文字转载自 Programming 讨论区 】
发信人: raou (raou), 信区: Programming
标 题: 问个基本的design问题
发信站: BBS 未名空间站 (Wed Apr 10 14:28:20 2013, 美东)
我有Dialog A and Dialog B,现在我要:
1. Open A
2. Click a button in A which opens B
3. At the same time call a function of B
那种方法实现比较合理:
1. 在A里OnButtonClickedOpenB(),建立B object (objB),初始化这个B dialog,然
后call objB.function()
2. 在A里OnButtonClickedOpenB(),建立B object (objB),初始化这个B dialog,然
后send an event to B, B catches this event and call function()
3. 加一个flag toRunFunction在B,在B的初始... 阅读全帖
r**u
发帖数: 1567
14
来自主题: Programming版 - 问个基本的design问题
我有Dialog A and Dialog B,现在我要:
1. Open A
2. Click a button in A which opens B
3. At the same time call a function of B
那种方法实现比较合理:
1. 在A里OnButtonClickedOpenB(),建立B object (objB),初始化这个B dialog,然
后call objB.function()
2. 在A里OnButtonClickedOpenB(),建立B object (objB),初始化这个B dialog,然
后send an event to B, B catches this event and call function()
3. 加一个flag toRunFunction在B,在B的初始化里检查这个flag, if TRUE, call
function()。在A里OnButtonClickedOpenB(),建立B object (objB),set objB.
toRunFunction = TRUE, 初始化这个B dialog。
... 阅读全帖
i****a
发帖数: 36252
15
来自主题: TVGame版 - 古剑太像 Final Fantasy!!!
especially FF7, the way that the characters have the body expression shown
before the dialog appears. then the dialog pause for 2 seconds and the
characters do their body expression again...
it's also like watching a bad movie where the voice over is badly timed...
and the dialogs feel too much like space-filler, time waster. they could
cut some of the useless dialogs by 33% and it'll flow smoother.
and the battle animation... looks too much like FF.
then the main character... feels copied from
l*********d
发帖数: 21519
16
来自主题: gardening版 - 刚才发的一款软件被删了
估计钻风想兼职版主。大家放心,这个是一个近20年的朋友自己设计的软件。
为了方便自己奔宝,奶爸闭关一个月,写出了极为
简单实用的浏览器内置的贴图工具,具有以下独到的优点:
1. 上传图片时候自动缩图到论坛附件大小限制,上传的时间仅为原来的1/10左右。
2. 上传照片时可以给照片加上漂亮的边框,或者做其他的特效处理。
3. 快速实现多图合一。这样对一次只能上传一张照片的论坛,一样可以上传多图。
这一贴图功能集成在奶爸自创的浏览器SlimBrowser里面。无需把照片先传到别的网站
,然后再把网址贴过来。也不再需要用PS先处理照片,然后再一张一张的贴图。
浏览器下载地址:http://www.flashpeak.com/redir.php?id=sbdl_mb
mac用:http://www.slimboat.com/en/dlpage.php
希望这一贴图功能能给大家带来方便,有问题或者意见大家多多指教
刚才研究了一下,好像slimBrowser 才有这个上传图片功能,slimboat没有这个功能,
具体攻略如下:
摄影沙龙
光沙龙在SlimBrowser让你取景的照片并把它们... 阅读全帖
R*******r
发帖数: 104
17
写了半天的程序,就是游戏里显示一个纯图片的dialog,没有decoration的那种,
在local跑得好好的,扔浏览器一看,出来一个java applet window的白色底边,
平时用javaa look and feel是不觉得啥的,可是这种纯贴图游戏是不行的,
想起来这是applet security waring, 去不掉,上signed applet是不能接受的。
只好去掉jdialog,直接把panel加到applet里,这下没有modal了,想来想去,
只好把所有能交互的jcomponent都注册到一个vector里,起对话框的时候
disable, 回来的时候恢复。都干完了,发现背景上的animation会冲掉
前景这个虚假的dialog,只好把这个dialog和背景扔到applet
JLayeredPane的两层里,总算搞定。
现在唯一不像的就是起dialog的时候所有JComponent都会被disabled,
不过不算是大问题。
各位大虾要是知道更高明的方法,吱一声。
J**B
发帖数: 204
18
来自主题: Java版 - 问个swing login窗口的问题
就是user_Id 和password两个field 都吃 press enter.如果validation错了就popup
一个warning dialog。问题是这个warning dialog出来的之后,再 press enter的时候
,user_Id 和password 两个field还在吃press enter, 一旦press enter去关掉
warning dialog的时候,这个action 会又让这个warning dialog 再次popup 出来。
求思路?
h*****o
发帖数: 14
19
来自主题: Programming版 - 请教:用Visual C++写GUI 的问题
用VC++写GUI,用的是Windows FORM, 想在里面加Dialog. 我的步骤是
Resource View-> right click Dialog-> Insert Dialog->Change it to IDD_
MYPROJECT_FORM->go to styles, change it to "Child" and "None"-> Rebuild all-
>Run
但Dialog没有出现。
问题比较初等, 请朋友给些指点。
谢谢!
c*****t
发帖数: 1879
20
来自主题: Software版 - Vista 的一个问题
每次执行 admin privilege 的程序的时候,会出现个 User Account Control
的 dialog box 。我挺喜欢这个 feature 。但是,这个 dialog box 一出现,
屏幕就闪一下,将 Aero Glass 给去掉,用 Basic 显示这个 dialog box 。
这个闪一下很讨厌。能否将这个 dialog 也用 Aero glass 的 theme?
thx
w*j
发帖数: 336
21
使用的是http://jeff.doozan.com/debian/的script, 安装完debian后,在第STEP 2,运行dpkg-reconfigure locales, 但进行不下去了,说/usr/sbin/dpkg-reconfigure: locales is not installed。求解,谢谢
root@debian:~# dpkg-reconfigure locales
debconf: unable to initialize frontend: Dialog
debconf: (No usable dialog-like program is installed, so the dialog based
frontend cannot be used. at /usr/share/perl5/Debconf/FrontEnd/Dialog.pm line
75.)
debconf: falling back to frontend: Readline
debconf: unable to initialize frontend: Readline
debco... 阅读全帖
b*****n
发帖数: 2324
22
来自主题: Military版 - est