- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
39 Posted Topics
Re: [CODE] If (salesOrderStage > 30 And salesOrderStage < 40) Then salesOrderStage = salesOrderStage - 30 Dim updateSQL = "UPDATE TblSalesOrder SET SalesOrderCurrDate = GETDATE(), SalesOrderCurrTime = '" & currentTime & "', SalesOrderActionName = '" & fName & "', SalesOrderStage = " & salesOrderStage & " WHERE SalesOrderID = " & … | |
Re: Rijndael algorithm is quite good and has already been shared here. Thanks though. | |
Re: In Windows XP the code is working fine. But hey mohitkhanna it's 18 days old thread and the chriswelborn might already have the solution . | |
Re: There should be 2 fields in the database. 1) Date_of_join 2) Date_of_Expiry 1 Combobox for time period 2 Datetimepickers First one for date of joining you will select Second for date of expiry (readonly) autogenrated. Suppose Combobox value is 30 Days do the following on the value change event of … | |
Re: It will save me a lot of time. Earlier I used to write name of each textbox and then set it's text to "" textbox1.text="" textbox2.text="" But I can use this instead :) Thanks. | |
Re: 26 is the answer as everyone knows. Operator precedence! you know? | |
Re: Yeah javascript is your way. Turn off the AutoPostback I.E. AutoPostback=False and write down a small snipet of JavaScript code and call it in the program. | |
Re: Your website looks good. Is this completely designed and developed by you? | |
Re: Well unique content + SEO + no spamming + website age + visitors + return visitors etc. Many many factors google see nows before updating page rank of a website. | |
Re: Review: Quite a good tool to check errors on your websites. Gives link problems, title etc. Overall a good seo tool. Thanks OP for sharing. | |
Re: Howdy steven woodman :) DW feels like second home. | |
Re: Check your page load event. Your combobox may be bound to some data source which is making your combobox get refreshed with new values every time page gets refreshed . You can use IsPostBack = False and bound the data on change event of Combo box instead of page load … | |
Re: Are you wasting our time? Your problem is not well defined. Thanks | |
I have done my homework but couldn't find any good solution so I am here asking for help. I want to make pages like the structure below. www .yoursite . com/Content.aspx?Privacy www .yoursite . com/Content.aspx?About_us www .yoursite . com/Content.aspx?Security I hope you get the problem. Any help would be greatly … ![]() | |
Re: If your problem is not currently solved then you can buy another keyboard from the nearest store and it will work fine. If nothing helps you can always find a nearest computer repair shop. | |
Re: moone009 now please mark the thread as Solved ;) | |
Re: Use the code below. [CODE]select * from Employee order by salary desc [/CODE] | |
Re: Try this [CODE]username:password@website.com[/CODE] | |
Re: Try this [CODE]If (con.State = ConnectionState.Open) Then con.Close() End If con.Open()[/CODE] | |
Re: Here you go [CODE]http://rendur.com/[/CODE] Press UP arrow key ;) | |
Re: You need to use following classs to achieve this task. Web Request [CODE] http://msdn.microsoft.com/en-us/library/system.net.httpwebrequest%28v=vs.71%29.aspx[/CODE] Web Response [CODE]http://msdn.microsoft.com/en-us/library/system.net.httpwebresponse.aspx[/CODE] | |
Re: Simplest way is [CODE] TextBox2.Text = DateTime.Parse(TextBox1.Text).Date.AddMonths(2)[/CODE] TextBox2.Text= Where you need the output TextBox1.Text= Where user enters date | |
Re: [CODE]Protected Sub ListBox1_SelectedIndexChanged(ByVal sender As Object, ByVal e As EventArgs) Handles ListBox1.SelectedIndexChanged ListBox2.databind() End sub[/CODE] Don't forget to make autopostback property of listbox1= True | |
Re: [CODE]int counter = 0; string append=""; while (counter <= 10) { if append="" append = counter.ToString(); else append =append & "," & counter.ToString(); end if counter++; } messageLabel.Text =append; [/CODE] | |
Re: Here you go [CODE]http://www.codeproject.com/KB/vb/sing_inistan.aspx [/CODE] | |
Re: There should be no problem. Create the database on the server machine(first one). Develop application with connection to the server and destribute to the remaining 3 PC's. | |
Re: Is it online on your server? Demo please so that we can see your website and suggest appropriate solution. | |
Re: Do the following DataGridView_MMArtist1 =Nothing Connection = Nothing Do not forget to set Nothing to all the constructors you have used in the program. Set forms to Nothing. Application.Exit() This will solve your problem. | |
Re: [QUOTE=Unhnd_Exception;1576359]How about F_ck. Thats probably my most frequent word in my comments. What are you talking about most frequent word? Most frequent word in the .net framework or something your working on?[/QUOTE] LMAO :D WTF? I have seen people coming here with almost no post count and ask silly questions. | |
Re: You can try something like this [CODE]command.Parameters.Add("@AccountKey", SqlDbType.Int).Value = accountKey;[/CODE] Repeat this for all of your parameters. | |
Re: I guess your current work is being done with the JavaScript and you want to do the same work with C#? If that's whats your problem is then yes you can convert your logic into similar C# source code and get the work done. | |
Re: Mr Fish first tell us about yourself. BTW this thread rocks :D | |
Re: Now when you have the basics of programming, you can go for .NET platform? or may be C++ in another case. I have seen a lot of C++ experts out there in DW like Salem, Ancient Dragon. Great guys to learn something from, Cheers! | |
Re: Dean_Grobler how is your job going on? | |
Re: How did I missed it? It's been a long time the language was released. I am keen to learn new languages. | |
Re: You can always make setup of your program so that no one can see the code :) Hint: Use Setup and Deployment Wizard. | |
Re: Click the Textbox go to --> Properties --> MaxLength --> Desired Length(5,10) Or you can set it programmatically YourtextboxName.maxlength=10 | |
Re: Can you please share how do you integrate serial key authorization within your project? Much appreciated. You can PM me if you don't mind. Thanks. |
The End.