Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
close
- Page 1
Cloudflare Argo Smart Routing
Programming
Web Development
1 Month Ago
by Dani
Probably a silly question, but is Argo Smart Routing (the usage-based product) only applicable to content served at the origin? Otherwise, does it makes sense to be spending money to find a more efficient path between the end-user and the edge? Isn't the edge already pretty darn
close
?
Re: Cannot run exe from asp.net
Programming
Web Development
2 Months Ago
by lennyli
…text = command.split(' ', 1) pyautogui.typewrite(text) conn.
close
() server_socket.
close
() if __name__ == "__main__": main() ``` ### Step…-8')) break client_socket.send(command.encode('utf-8')) client_socket.
close
() if __name__ == "__main__": main() ``` …
Re: Are we being played by AI? Let's Discuss!
Community Center
Meta DaniWeb
2 Months Ago
by Reverend Jim
I've had
close
relatives who had that but I don't recall headaches as a symptom. I hope I never get it (I can't get the vaccine because it's a live vaccine). Good luck with recovery now that you have a diagnosis.
Re: Question/Answering over SQL Data Using LangGraph Framework
Programming
Computer Science
2 Months Ago
by Pelorus_1
Through its combination of natural language processing and structured query generation, LangGraph makes interfacing with databases and extracting insights over SQL data easier than ever.
Close call ...
Community Center
Meta DaniWeb
22 Years Ago
by Dani
There was a
close
call tonight! We almost lost most of our entire database! Luckily (after a few hours on edge) I was able to restore a back-up of a MySQL dump.
Re: Close form, open a new one
Programming
Software Development
14 Years Ago
by Jazerix
…it in the wrong order. Instead of using:[CODE]this.
close
(); new form3().Show();[/CODE]Try using:[CODE]new form3().…Show(); this.
close
();[/CODE]If you
close
the only active form prior to opening a …Also i was kinda thinking, if you could edit the
close
button so it would send "Application.Exit();" The…
Close a window - should require one word answer :)
Programming
Software Development
15 Years Ago
by Aiban
…) .. click it .. it tell you things .... it has a
close
button ... if you use the same code .. and you click…that .. so i change the code aquit = Button(awin, text = '
Close
', command = awin.quit) but but .. the whole program still closes… about windows in tkinter and it had some type of
close
button, i mean every program i've ever used .....…
close button on popover
Programming
Web Development
6 Years Ago
by erum
…-sm" style="background-color:maroon !important">
Close
</button> <button class="btn-save btn…-sm" style="background-color:maroon !important">
Close
</button> </div> </div> <…
Close javax.jms.XAConnection and XASession
Programming
Software Development
16 Years Ago
by amjad277
[B]- I try here to
close
the XAConnection and XASession session.
close
() connection .
close
() - but the server shows me this Exception:[/B] 2008-07… any one know why ? And what should I do to
close
the session and the connection correctly?[/B]
close window of Java Program
Programming
Software Development
14 Years Ago
by musikluver4
…WindowEvent e) { System.exit(0); } } );[/CODE] So once I
close
the Calculator program that I loaded within another java program…, both programs
close
, acting like one program, clicking the
close
button on the window closes everything.…(exiting) should not let the main program I load
close
as well?
Re: close two forms at once
Programming
Software Development
14 Years Ago
by Mitja Bonca
…Form1 is closed, that means that whole application will
close
. Are we clear now? About your third form… big difference?). You can loop through Opened forms, and
close
them all (except Form1): [CODE] //on form3: …(form.Name != "Form1") form.
Close
(); } } [/CODE] This code will
close
so far Opened forms (except Form1). I …
Re: Close form using another form
Programming
Software Development
14 Years Ago
by Mitja Bonca
…(login.ShowDialog() == DialogResult.OK) { //when login form will
close
the code will come in here //and login form will…
close
it self! } } //on login form: //when … = DialogResult.OK; //then the login form will
close
automatically when it will execute that code to the end…
Close Excel after finished
Programming
Software Development
13 Years Ago
by bklynman01
… it this way. My software will
close
the workbook with [ICODE]Me.exApp.Workbooks.
Close
()[/ICODE], but if you have the…would like to save changes. One instance of Excel will
close
when the program is exited, but the user normally …. If 8 instances of Excel exist, only one will
close
with the program. Any ideas? Anything would help! Thanks!
Close button and MDI container
Programming
Software Development
13 Years Ago
by Iamateur
…got many forms and MDI container. There is
close
button on all the forms.One of the …is Homepage. 2]Whenever the user clicks on
close
button,i.e.the cross button with minimize …and maximize box, The form will
close
but at the same time it should redirect …. 4]What can be done with this cross
close
button? How to code for this? Should the…
Re: Close javax.jms.XAConnection and XASession
Programming
Software Development
16 Years Ago
by peter_budo
… data processing } } catch (XAException e) { e.printStackTrace(); } finally { stmt.
close
(); con.
close
(); xaCon.
close
(); }[/code] If you have in above manner then please…
Re: Close javax.jms.XAConnection and XASession
Programming
Software Development
16 Years Ago
by amjad277
… = cnn.createXASession(); connection.start(); } catch (JMSException e) { } [/code] [B]and
close
it using: [/B] [code]@PreDestroy public void myDestroy() { session…
Re: Close form, open a new one
Programming
Software Development
14 Years Ago
by Lusiphur
… it in the wrong order. Instead of using:[CODE]this.
close
(); new form3().Show();[/CODE]Try using:[CODE]new form3().Show…(); this.
close
();[/CODE]If you
close
the only active form prior to opening a new…
Re: Close form, open a new one
Programming
Software Development
14 Years Ago
by Geekitygeek
… new one. The text portion also outlines how you can
close
the first form instead of showing it. When you open…, but it works). The problem occurs when the form you
close
is the applications [B]main[/B] form (the one called… file as [iCODE]Application.Run(new Form1());[/iCODE]). If you
close
the main form the application loop will exit and your…
Re: Close form, open a new one
Programming
Software Development
14 Years Ago
by Geekitygeek
It certainly does matter. When you
close
Form2 you
close
your application. Did you have a look at the code? … instance of a form, attaches an event handler to its
close
event, then hides the current form when it is shown… old form reappear. If you replace it with "this.
Close
()" the old form will be closed at the same…
Re: Close form, open a new one
Programming
Software Development
14 Years Ago
by Ketsuekiame
…the application, all you need to do is
close
that form, this is great in terms of…how you do it in your application, will
close
the entire application. There are only two ways…1. Only hide the form. This doesn't
close
it and hence your application will stay running. …would need to manage how to open and
close
your forms and keep track of everything. …
close button code in VC GUI
Programming
Software Development
16 Years Ago
by abhi.nalluri
… tabbed gui.I need to do some operations when the
CLOSE
button in the GUI is issued.I have removed OK… can execute it when the user tries to
close
the GUI using the
CLOSE
button in the GUI 's SYSTEM MENU. Here…
Close any specific Page
Programming
Web Development
15 Years Ago
by Pankaj18
Hi, I am using this code '[B][I]Response.Write("<script>window.
close
()</script>")[/I][/B];' to
close
current form in Asp.net . but if i want to
close
any specific form as "[B][I]employee.aspx[/I][/B]" then what is the code of it. please help me Thanks ! Pankaj Singh
Close form, open a new one
Programming
Software Development
14 Years Ago
by Jazerix
… problem. Well, I got this form that i want to
close
when i click the button and then open a new…'t want it to. then I tried this [CODE]this.
close
(); new form3().Show();[/CODE] but then I ran into another… exit the whole application. So what should I do to
close
that form at the beginning so it doesn't have…
close parent window
Programming
Web Development
14 Years Ago
by rejishaa
Hi all, While trying to
close
parent window after loading the child is not working in ….appName=='Microsoft Internet Explorer') { this.focus(); self.opener = this; self.
close
(); } else window.open('','_parent',''); theChild.
close
(); } thanks in advance... rejisha
Close (x) Button Question?
Programming
Software Development
14 Years Ago
by shabadoo
…. Everything works great except that if the user clicks the
Close
(x) button included in the title bar of the userform… any code snippet that will cause the project to
close
completely if the
Close
(X) Button is clicked to prevent entry into…
Close a form without disposing resources?
Programming
Software Development
14 Years Ago
by jpaterson2525
… calls it's Show() method, and i need it to
close
it but be available for reuse and i need the… they were before it was closed. I was using the
Close
() method but when i try to reuse one of the… you can't use a disposed object? How can i
close
the child form without disposing the controls?
Re: Close a Form
Programming
Software Development
14 Years Ago
by Juan Menendez
… is different but I also had an issue with this.
Close
() that was solved with the this.Dispose(false) solution. … say I launch diagnostic A which opens a form window,
close
the form clicking the "cancel" button, and …. If inside the cancel button event handler I use this.
Close
(), the form closes but clicking on the "run diagnostic…
close a form - but not quite that simple
Programming
Software Development
14 Years Ago
by liam0014
… FROM priority"; cmd.Connection.Open(); cmd.ExecuteNonQuery(); cmd.Connection.
Close
(); } catch { MessageBox.Show("An error occured when the …", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); this.
Close
(); fcaller.Show(); //this will just cause the parent form to…
Close form using another form
Programming
Software Development
14 Years Ago
by elshan0011
… { Main frmMain = new Main(); frmMain.Show(); this.
Close
(); } else { MessageBox.Show("Invalid Username or Password&…}[/CODE] But My mainForm also
close
in this code.what i do now?
Re: Close form using another form
Programming
Software Development
13 Years Ago
by walid86
…] Main frmMain = new Main(); frmMain.Show(); this.
Close
();[/CODE] try... [CODE] this.
Close
(); Main frmMain = new Main(); frmMain.Show();[/CODE] … uses the same type of format, and using this.
Close
(); before calling another form, closes the current form, …
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
Backlink Auditor
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC