- Upvotes Received
- 4
- Posts with Upvotes
- 3
- Upvoting Members
- 3
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
20 Posted Topics
Re: Google doesn't like it. I prefer buying a domain with a good backlink profile and DA rather than going with PBN. Personally, I never tried PBN. I did however do 301 redirecting from a good domain to a new one multiple times and I have good experience with it. | |
Hi guys, I have one question about Visual Basic and DataGridView behaviour. So, after I type all the text boxes and click on button (save data), I would like user to get focus on that new data. Now, each time button is clicked, DataGridView goes on a first row. New … | |
Re: Try to load data into DataGridView and then load them in the MySQL database. This is how I do it: Dim conn As String = System.Configuration.ConfigurationManager.ConnectionStrings("myproject.My.MySettings.mydatabaseConnectionString").ConnectionString Try mysqlconn.Open() Dim sql As String Dim cmd As New MySqlCommand For Each row As DataGridViewRow In DataGridView.Rows If IsDBNull(row.Cells(0).Value) = False Then If … | |
Re: I have wrote few steps on my blog before, you can check it out https://techreview.top/seo-and-site-speed-importance/ Another thing you should do when you're working on a WordPress site is to use server side cache, and CDN. I can recommend VPS + Varnish for caching, and CloudFlare to deal with overall trafic. | |
Hi, I have one Win Form app to load Excel data into DataGridView. I want to store DataGridView data into MS Access database. Everithing works great, but in some cases inside ExcelFile I have single quote mark, which breaks SQL Syntax. My question is, How to find & replace "'" … | |
Re: This is my last project (part of the code with query importing into MS Access). Maybe this could help you. Dim con As New OleDb.OleDbConnection("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=|DataDirectory|\data.accdb") Try con.Open() Dim sql As String Dim cmd As New OleDb.OleDbCommand For Each row2 As DataGridViewRow In DataGridView2.Rows sql = "INSERT INTO table (BR,DAT,SIF,KAT,NA,GRUP,N_GRUP,TOTAL) … | |
Re: I'm using bindingsource Private Sub Button11_Click(sender As Object, e As EventArgs) Handles Button11.Click DataGridView1.DataSource = SomeBindingSource1 TextBox1.Text = "" SomeBindingSource1.Filter = "dbrow Like'%" & TextBox1.Text & "%'" End Sub Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click UslgarBindingSource1.MoveFirst() End Sub Private Sub Button3_Click(sender As Object, e As EventArgs) … | |
Hi, I'm using WindowsForm and I want to pass throu all textboxes with Enter (like using Tab). This code do things I want Private Sub Form6_KeyDown(sender As Object, e As KeyEventArgs) Handles Me.KeyDown If e.KeyCode = Keys.Enter Then Me.SelectNextControl(Me.ActiveControl, True, True, True, False) End If End Sub However, hitting Enter, … | |
Hi, I have one form with multiple reading data (using BindingSource) and I want to store those data + some text entry to third table (also using BindingSource DataGrid) Is it possoble to do that using sql statement ? I have connection to database. Picture is to show what I … | |
Hi, I have form1, and second form2 When I call second form2, form1 is disabled for any interaction. customer.Show() Me.Enabled = False Close button on form2 code is Private Sub Closebutton_Click(sender As Object, e As EventArgs) Handles Closebutton.Click Me.Close() Form1.BringToFront() Form1.Enabled = True End Sub As you can see, I … | |
Re: You should call login form before user can actualy edit data. Maybe to use checkbox and buttons disabled on formload code example for check box If True Then Button1.Enabled = True | |
Hi, I need simple VB6 application to delete some temporary files inside specific folder. This is my code and I can't make it work for current user - please Help. Private Sub Command1_Click() Dim fso As New Scripting.FileSystemObject fso.DeleteFolder "C:\Users\user\test", True fso.DeleteFolder "C:\Users\user\test2", True fso.DeleteFolder userprofile & "\newfolder", True Unload … | |
Hi there to all I'm trying to make application which should extract certain data from XML files. I'm using form, combobox and button. If someone could guide me because I'm not so familiar with programming... here is code example To populate Combobox1 and it works fine Private Sub form1_load(sender As … | |
Hi, I have started this project and come to the point where I can't figure out how to finish it. First Want to say that I'm noob for VB6 and programming in general, but I saw some examples and make it work this part of job I need. I will … | |
Hi, I have part of code to read file and show content inside list box. I wonder if someone could help me to store data to access instead list box. I'm writing now on my cellphone and don't have source code right now, but just to see is there anyone … | |
Re: Your recovery media contains Vista or Win7 files? If you can't use those CD media I suggest you to try some other LiveCD distribution with AV scanner on it or Win7 repair tools. | |
Re: Go to the theme support forum and ask that question. If you can't then you probably using cracked theme and that's the reason for all your trouble. | |
Re: Maybe to try editing your localhost so you don't need NAT - instead use diferent IP for diferent hosting accounts, in this case apps (folders)?? I'm not so sure, just suggesting :) | |
Re: Take a look at the motherboard and see if there are blown capacitors? Maybe old psu burn some motherboard electronics. | |
Hi to all first to say I am beginner in programming so please dont mind for mistakes I could write here :) I have this problem, on the form I use one combobox with Data Bound items, Data source, Display member & Value member. Besides this combobox I have textbox … |
The End.