5,346 Posted Topics
Re: Change the order of statement [CODE=C#] objFnC.txtUserName.Text = UserName; objFnC.ShowDialog(); [/CODE] | |
Re: makymakaru, >Can I use visual c++ in creating a web proxy? --- Yes >Where do i start? i have absolutely no idea. any insight, suggestions and directives that can help me. Read MSDN online pages & Tutorials - [URL="http://msdn.microsoft.com/en-us/library/09dd1ycd(VS.80).aspx"]MFC Socket[/URL] | |
Re: muhandis>I'm having some of trouble understanding exactly how an MFC GUI works. You should read [URL="http://msdn.microsoft.com/en-us/library/dd5497wx(VS.80).aspx"]MFC Fundamental - MSDN online page[/URL] | |
Re: For example, [CODE=VB.NET] openFileDialog1.Filter = "Word (*.doc) |*.doc;*.rtf|(*.txt) |*.txt|(*.*) |*.*" [/CODE] | |
Re: Open a Windows installer database. | |
Re: Did you download common lib along with jfreechart? | |
Re: laks_samy, Use System.IO.Directory class. | |
Re: flinto, I suggest Drill down reports. | |
Re: How many records in a data file? [CODE=C] for(p = *A; p != NULL; p = p->next) { fread(&p, sizeof(celltype), 1, fp); } [/CODE] You have to test the eof(). Can fread() allocate a node? ? | |
Re: chriscross86 & Ramesh S You are requested to use BB code tag. Wrap up source code with code tag. You must read this article - [URL="http://www.daniweb.com/forums/announcement118-3.html"]How to use bb code tas?[/URL] | |
Re: skullish, Use [B]~[/B] root operator. Is your application running under IIS 5/6? If yes then set write permission to that folder for [B]Users [/B]group. 1. Create a folder in your root of web application - say 'test'. 2. Write following statements to save a file [CODE=ASP.NET] Dim filepath as String=MapPath("~/test/" … | |
Re: Due to page cache you got this problem. Remove cache using header() with options. However, I think javascript way is very handy. You may add javascript at the end of page for the same. [CODE=PHP] ... if($name9!='') { $path="$title"."/"."$name9"; $sql="insert into eventgallery values('','$title','$path')"; mysql_query($sql)or die(mysql_error()); } ?> <script type="text/javascript"> open("uploadimages.php" … | |
Re: Here is sample: [CODE=VB.NET] Dim col1 As New DataGridViewTextBoxColumn col1.DefaultCellStyle.Format = "t" 'Time format col1.DataPropertyName = "ColumnName" DataGridView1.Columns.Add(col1) DataGridView1.DataSource = dt 'Instance of DataTable [/CODE] | |
Re: mohanaraj3485, Use System.Globalization namespace classes. Which type of application are you developing - Web or Windows? | |
Re: What is a problem of your system? Edit:: Three threads for the same question started by this poster. | |
Re: What is wrong with ardav's post? 12 Hour format is 01:01:01 PM 24 Hour format is 13:01:01 | |
Re: Line #3 - DirectoryEntry provides programmatic access of directory services through LDAP. | |
Re: Welcome bubbafunk1. So you are not exeuting update query. Isn't it? Write your update statement so we can help you. | |
Re: thrusai, Error is [QUOTE]The processing instruction target matching "[xX][mM][lL]" is not allowed. [/QUOTE] Are you sure that the XSD is a valid xml document? Please post the XML and XSD document : If XSD and XML are very large (more than 20 lines) then zip it and attach with your … | |
Re: Use Data or Page Cache. | |
Re: Dear kerek. Connection opened twice - fcn.Open() [CODE=VB.NET] Dim sqlcn As SqlConnection Dim sqldr As SqlDataReader Dim sqlda As SqlDataAdapter Dim sqlcmd As SqlCommand sqlcn = New SqlConnection("server=localhost;uid=sa;pwd=admin;database=SMARTKIOSK") 'Connection to Firebird Dim fcmd As OdbcCommand Dim fcn As OdbcConnection Dim fdr As OdbcDataReader Dim fda As OdbcDataAdapter fcn = New … | |
Re: Use System.Data.SqlClient and System.Data namespace classes to connect database, execute command, and retrieve a result. After that Create an instance of treeview node - say it is a root node. Create six more treeview node instances, assigned text property of each node from a database result and add all these … | |
Re: Vizy, Do you want to show a div (UpdateProgress) first and then after show an alert? Post your code. | |
Re: [QUOTE=Debby0424;905924]I believe it is an executable program.[/QUOTE] Be sure about your question. Say something regarding to your question and your need to have a software. | |
Re: lotrsimp12345, Please find the answer at your own post - [URL="http://www.daniweb.com/forums/thread200619.html"]http://www.daniweb.com/forums/thread200619.html[/URL] | |
Re: Dear fatalbert55, Give me a reason why should I read the attached files. We are here to help somebody; not to provide a complete solution. Please post the phrase of code where you got problems. | |
Re: Welcome asw.asela, Of course we will guide you. Please show your efforts first. Read this [URL="http://www.daniweb.com/forums/announcement118-3.html"]Announcement - How to use bb code tags [/URL] and [URL="http://www.daniweb.com/forums/announcement118-2.html"]Homework rules[/URL] | |
| |
Re: TrintiyNoe, Did you work out on this problem? If yes; then show us your code, please. However I suggest: [CODE=C++] string str="This is a sentance"; istringstream iss(str); [/CODE] | |
Re: Wrap up source code with BB code tags. As per JC's suggestion; use physical path of picture file or location of both, picture and .class file must be a same (path or directory). PS: also verify the name and extension of picture file. | |
Re: >I want to reduce it so that the entire system doesn't become unresponsive. Any idea?? Think about thread. | |
Re: Use Java GUI. If you cannot use GUI then use two dimensional (jagged) character array. Fill it with blanks and '*' characters and print it. | |
Re: webish, webish says : [QUOTE]Thank you. I'm from Kenya. Still in school.. What about you? I hope this is one of the [COLOR="green"]most resourceful and friendliest [/COLOR]places. [/QUOTE] [COLOR="Green"]Yes It is.[/COLOR] | |
Re: Welcome Daniello555, You are updating $newpoints and a subtraction is assigned into $newcredits. | |
Re: Welcome Rtailor, Did you read [URL="http://www.daniweb.com/forums/announcement118-3.html"]How to post source code using bb code tags?[/URL]. Wrap up source code with code tag. Here is an example: [CODE=VB.NET] If inc <> -1 Then Dim cb As New OleDb.OleDbCommandBuilder(da) Dim dsNewRow As DataRow dsNewRow = ds.Tables("AddressBook").NewRow() dsNewRow.Item("FirstName") = txtfirstname.Text dsNewRow.Item("Surname") = txtsurname.Text ds.Tables("AddressBook").Rows.Add(dsNewRow) … | |
Re: Read this - [URL="http://swiftmailer.org/wikidocs/v3/tips/spam"]http://swiftmailer.org/wikidocs/v3/tips/spam[/URL] | |
Re: cee_karthi, This is VB.NET forum. Post your question at PHP forum. | |
Re: Dear TrinityNoe, I recommend [URL="http://www.mindview.net/Books/TICPP/ThinkingInCPP2e.html"]Thinking in C++[/URL]. | |
Re: You have to wrap up value of [B]add[/B] variable with single quote. [CODE=Java] public void show(String add) { statement.execute("select * from Staff_Details WHERE Address2='" + add + "'"); .... } [/CODE] | |
Re: First, concentrate on java language along with classes from java.lang, java.util (collection framework), java.io, java.nio, java.net, java.applet, java.awt and many more packages. Be habitual on use of java api documentation. | |
Re: ermithun, I saw this code or something like this in almost all post started by you. Try to solve your problems with single thread; especially when your program/problem definition is same or minor different. | |
Re: nirav99, Use BB code tag. Source program must be surrounded with BB code tags: See # icon at toolbar and also read [URL="http://www.daniweb.com/forums/announcement61-3.html"]How to use bb code tags?[/URL]. | |
Re: Use [CODE=C++] dynamic_cast<IB*>(pA)->B(); [/CODE] | |
| |
Re: Dave3, Read this [URL="http://www.lvr.com/parport.htm"]http://www.lvr.com/parport.htm[/URL] | |
Re: Dear babbu, Create a public boolean variable (say IsOk) in Another form (AnotherForm). Set True/False to the boolean variable. In current form [CODE=VB.NET] AnotherForm.IsOk=True AnotherForm.Show [/CODE] Now write code to enabled/disabled the control based upon the value of boolean variable. In another Form [CODE=VB.NET] If IsOK=True then ... Else .... … | |
Re: Altheriax, I read your question. I am not giving any suggestion or advice regarding to programming because your post shows that. Yes, I have to say : learn .net framework and this (vb.net) language. | |
Re: ASP.NET Controls are classes in the .NET Framework that represent visual elements on a web form. During web-form processing phases - all server controls (asp.net controls) writes the HTML output for the control based on its current state. |
The End.