Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
4
Posts with Upvotes
3
Upvoting Members
3
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
1 Commented Post
1 Endorsement
Ranked #858

20 Posted Topics

Member Avatar for AndersLarsson

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.

Member Avatar for SoftBa
0
84
Member Avatar for SoftBa

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 …

Member Avatar for SoftBa
0
274
Member Avatar for Logic_Brown

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 …

Member Avatar for SoftBa
0
633
Member Avatar for Essam_4

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.

Member Avatar for SoftBa
0
282
Member Avatar for SoftBa

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 "'" …

Member Avatar for AndreRet
0
91
Member Avatar for Mike Bishop

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) …

Member Avatar for SoftBa
0
791
Member Avatar for Georgi_1

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) …

Member Avatar for SoftBa
0
406
Member Avatar for SoftBa

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, …

Member Avatar for rproffitt
0
134
Member Avatar for SoftBa

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 …

Member Avatar for SoftBa
0
280
Member Avatar for SoftBa

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 …

Member Avatar for Minimalist
0
945
Member Avatar for chris_58

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

Member Avatar for Reverend Jim
0
608
Member Avatar for SoftBa

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 …

Member Avatar for SoftBa
0
749
Member Avatar for SoftBa

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 …

Member Avatar for SoftBa
0
892
Member Avatar for SoftBa

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 …

Member Avatar for dageci
0
1K
Member Avatar for SoftBa

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 …

Member Avatar for djjeavons
0
380
Member Avatar for bikunj

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.

Member Avatar for johnruelle
0
438
Member Avatar for old_apache

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.

Member Avatar for ebutin
0
121
Member Avatar for asaidi

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 :)

Member Avatar for drownedincognac
0
135
Member Avatar for Sumit_4

Take a look at the motherboard and see if there are blown capacitors? Maybe old psu burn some motherboard electronics.

Member Avatar for mike_2000_17
0
273
Member Avatar for SoftBa

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 …

Member Avatar for SoftBa
0
1K

The End.