473,413 Members | 1,854 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,413 software developers and data experts.

ID validation

30
I have this code for Id validation. The ID is entered in a text box, and validates the entry in GotFocus event of a command button. However, it does not work when I use it for the GotFocus in a Label Object. It is giving me an error message "Run time error 3251, Operation is not supported for this type of object".in statement the: Rst.FindFirst "[CID] = " & Me.txtReps
Below is the complete GotFocus function. What should be changed to make it work? Thanks.

Expand|Select|Wrap|Line Numbers
  1. Private Sub Text21_GotFocus()
  2. Dim DB As DAO.Database
  3. Dim Rset As DAO.Recordset
  4. Set DB = CurrentDb()
  5. Set Rset = DB.OpenRecordset("TblReps")
  6. Rset.FindFirst "[CID] = " & Me.txtReps
  7. If Rset.NoMatch Then
  8.     GoTo ExitHere
  9. End If
  10. :
  11. ExitHere:
  12.     Set DB = Nothing
  13.     Rset.Close
  14.     Set Rset = Nothing
  15.  
  16. End Sub
  17.  
Dec 15 '07 #1
16 1831
missinglinq
3,532 Expert 2GB
I have to tell you, not much of what you've posted here makes any sense at all!

The ID is entered in a text box, and validates the entry in GotFocus event of a command button.
So you enter the ID in your textbox, then you validate it by placing the focus on a command button, not by clicking on the button? This makes absolutely no sense!
Validation of data is usually done in the BeforeUpdate event for the textbox (if you want immediate feedback) or in the form's BeforeUpdate event, if you only want to know when you're getting ready to save the record.

As for why you get the "Error 3251, Operation is not supported for this type of object," I'm guessing, despite the line that's hilited (Access isn't always terribly accurate with this) that's because a Label cannot receive focus! More confusing, you say this code is for a label, yet the sub is named

Sub Text21_GotFocus

which to most people would say that it's a textbox.

Linq ;0)>
Dec 15 '07 #2
Jim Doherty
897 Expert 512MB
I have this code for Id validation. The ID is entered in a text box, and validates the entry in GotFocus event of a command button. However, it does not work when I use it for the GotFocus in a Label Object. It is giving me an error message "Run time error 3251, Operation is not supported for this type of object".in statement the: Rst.FindFirst "[CID] = " & Me.txtReps
Below is the complete GotFocus function. What should be changed to make it work? Thanks.

Expand|Select|Wrap|Line Numbers
  1. Private Sub Text21_GotFocus()
  2. Dim DB As DAO.Database
  3. Dim Rset As DAO.Recordset
  4. Set DB = CurrentDb()
  5. Set Rset = DB.OpenRecordset("TblReps")
  6. Rset.FindFirst "[CID] = " & Me.txtReps
  7. If Rset.NoMatch Then
  8. GoTo ExitHere
  9. End If
  10. :
  11. ExitHere:
  12. Set DB = Nothing
  13. Rset.Close
  14. Set Rset = Nothing
  15.  
  16. End Sub
  17.  
Hi ebo,

A label doesnt have a setfocus event!

To validate the entry you could use the afterupdate event of the textbox but in order to do that when retrieving a recordset and you need to move to the first record so that the find command has a startpoint so to speak.

Expand|Select|Wrap|Line Numbers
  1.  
  2. Rst.MoveFirst
  3. Rst.FindFirst "[CID] = " & Me!txtReps
  4.  
The 'find' method has its useages but for me it is not relevant in all situations. From what I see you are doing you are simply wishing to find the CID number within the table by opening it up as a recordset and asking the FIND method to find it for you.

Now, I do not know if the CID field is your primary key in which case you 'must' have and can only have a single unique value in the table. which is fine.... but if it isnt and you think ahead you could have duplicates in which case the FIND method only finds the first occurrence of the value it is requested to find. What happens if its the second row value you wanted or maybe the eighth row value and so on if you understand me.

In addition to this you are opening a 'table' but is there any need to open all the table as it is? what happens when the table gets to thirty thousand rows or so maybe. You would have to open the entire table first before you execute the 'find' command in which case your system will grind to a halt eventually.

The more efficient way of doing this is to only open a recordset containing only the value you are wishing to retrieve, ie not the entire table and not all columns either, only the one column and the single value is necessary merely to determine if it exists. This way you limit the traffic relevant if your db is on a network.

Try this in your textbox afterupdate and see if it works the same for you. You can remove the msgboxes included for clarity rather than need.

Expand|Select|Wrap|Line Numbers
  1.  
  2.     Dim db As DAO.Database
  3.     Dim Rst As DAO.Recordset
  4.     Set db = CurrentDb()
  5.     Dim mycount As Long
  6.     Set Rst = db.OpenRecordset("SELECT [CID] FROM TblReps WHERE [CID]=" & Me!txtReps, dbOpenSnapshot)
  7.     If (Rst.BOF And Rst.EOF) Then
  8.         MsgBox "No match found on the CID field for " & Me!txtReps, vbInformation, "System Message"
  9.     Else
  10.         Rst.MoveLast
  11.         mycount = Rst.RecordCount
  12.         Select Case mycount
  13.         Case Is = 1
  14.             MsgBox "Found specific value " & mycount & " that matches", vbInformation, "System Message"
  15.         Case Is = 2
  16.             MsgBox "Found " & mycount & " value(s) that match", vbInformation, "System Message"
  17.         End Select
  18.         ''whatever you want to happen here
  19.     End If
  20. :
  21. ExitHere:
  22.     Set db = Nothing
  23.     Rst.Close
  24.     Set Rst = Nothing
  25.  
  26.  
Regards

Jim :)
Dec 15 '07 #3
ebo2006
30
I have to tell you, not much of what you've posted here makes any sense at all!



So you enter the ID in your textbox, then you validate it by placing the focus on a command button, not by clicking on the button? This makes absolutely no sense!
Validation of data is usually done in the BeforeUpdate event for the textbox (if you want immediate feedback) or in the form's BeforeUpdate event, if you only want to know when you're getting ready to save the record.

As for why you get the "Error 3251, Operation is not supported for this type of object," I'm guessing, despite the line that's hilited (Access isn't always terribly accurate with this) that's because a Label cannot receive focus! More confusing, you say this code is for a label, yet the sub is named

Sub Text21_GotFocus

which to most people would say that it's a textbox.

Linq ;0)>
Hi. Don't get confused.
You are right, the function was used as, mentioned in the original posting, for a command button. Only now I don't want the user to choose but just press enter and the focus is brought back to the Text box to enter another ID.

Labels do receive focus. In one of the other fucntions where the user enters an item number in a Combo box, the validation is done in a GotFocus event of the Label next to it. You cannot make the validation in the object where you make the entry because you cannot set focus back to itself. Text21 is just a name, sorry for the naming convention, I 'll change it to lblCommentID.

The reason why I need help is that I used the same codes, changed object names, and using a Label instead of Command button, but I am getting the error message. Maybe there is someone out there who may know how to revise the codes to make it work. But thanks anyway.
Dec 15 '07 #4
ebo2006
30
Hi ebo,

A label doesnt have a setfocus event!

To validate the entry you could use the afterupdate event of the textbox but in order to do that when retrieving a recordset and you need to move to the first record so that the find command has a startpoint so to speak.

Expand|Select|Wrap|Line Numbers
  1.  
  2. Rst.MoveFirst
  3. Rst.FindFirst "[CID] = " & Me!txtReps
  4.  
The 'find' method has its useages but for me it is not relevant in all situations. From what I see you are doing you are simply wishing to find the CID number within the table by opening it up as a recordset and asking the FIND method to find it for you.

Now, I do not know if the CID field is your primary key in which case you 'must' have and can only have a single unique value in the table. which is fine.... but if it isnt and you think ahead you could have duplicates in which case the FIND method only finds the first occurrence of the value it is requested to find. What happens if its the second row value you wanted or maybe the eighth row value and so on if you understand me.

In addition to this you are opening a 'table' but is there any need to open all the table as it is? what happens when the table gets to thirty thousand rows or so maybe. You would have to open the entire table first before you execute the 'find' command in which case your system will grind to a halt eventually.

The more efficient way of doing this is to only open in a recordset containing only the value you are wishing to retrieve, ie not the entire table and not all columns either, only the one column and the single value is necesary merely to determine if it exists. This way you limit the traffic relevant if your db is on a network.

Try this in your textbox afterupdate and see if it works the same for you. You can remove the msgboxes included for clarity rather than need.

Expand|Select|Wrap|Line Numbers
  1.  
  2.     Dim db As DAO.Database
  3.     Dim Rst As DAO.Recordset
  4.     Set db = CurrentDb()
  5.     Dim mycount As Long
  6.     Set Rst = db.OpenRecordset("SELECT [CID] FROM TblReps WHERE [CID]=" & Me!txtReps, dbOpenSnapshot)
  7.     If (Rst.BOF And Rst.EOF) Then
  8.         MsgBox "No match found on the CID field for " & Me!txtReps, vbInformation, "System Message"
  9.     Else
  10.         Rst.MoveLast
  11.         mycount = Rst.RecordCount
  12.         Select Case mycount
  13.         Case Is = 1
  14.             MsgBox "Found specific value " & mycount & " that matches", vbInformation, "System Message"
  15.         Case Is = 2
  16.             MsgBox "Found " & mycount & " value(s) that match", vbInformation, "System Message"
  17.         End Select
  18.         ''whatever you want to happen here
  19.     End If
  20. :
  21. ExitHere:
  22.     Set db = Nothing
  23.     Rst.Close
  24.     Set Rst = Nothing
  25.  
  26.  
Regards

Jim :)
Hi, Jim. I'll try this. Thanks.
Dec 15 '07 #5
ebo2006
30
My bad, Got confused myself. It is a text box not a label. LABELS DO NOT RECIEVE FOCUS !!!

Jim, I have not tried it yet. I'll let you know.


I have to tell you, not much of what you've posted here makes any sense at all!



So you enter the ID in your textbox, then you validate it by placing the focus on a command button, not by clicking on the button? This makes absolutely no sense!
Validation of data is usually done in the BeforeUpdate event for the textbox (if you want immediate feedback) or in the form's BeforeUpdate event, if you only want to know when you're getting ready to save the record.

As for why you get the "Error 3251, Operation is not supported for this type of object," I'm guessing, despite the line that's hilited (Access isn't always terribly accurate with this) that's because a Label cannot receive focus! More confusing, you say this code is for a label, yet the sub is named

Sub Text21_GotFocus

which to most people would say that it's a textbox.

Linq ;0)>
Dec 15 '07 #6
ebo2006
30
Jim, I entered the codes but I am getting a syntax error in
Expand|Select|Wrap|Line Numbers
  1. Set Rst = db.OpenRecordset("SELECT [CID] FROM TblReps WHERE [CID]=" & Me!txtReps, dbOpenSnapshot)
I can't find the syntax error (error 3075 missing operator in query expression "[CID] =". Tried to change the [CID] with tblReps.CID, same error.
Hi ebo,

A label doesnt have a setfocus event!

To validate the entry you could use the afterupdate event of the textbox but in order to do that when retrieving a recordset and you need to move to the first record so that the find command has a startpoint so to speak.

Expand|Select|Wrap|Line Numbers
  1.  
  2. Rst.MoveFirst
  3. Rst.FindFirst "[CID] = " & Me!txtReps
  4.  
The 'find' method has its useages but for me it is not relevant in all situations. From what I see you are doing you are simply wishing to find the CID number within the table by opening it up as a recordset and asking the FIND method to find it for you.

Now, I do not know if the CID field is your primary key in which case you 'must' have and can only have a single unique value in the table. which is fine.... but if it isnt and you think ahead you could have duplicates in which case the FIND method only finds the first occurrence of the value it is requested to find. What happens if its the second row value you wanted or maybe the eighth row value and so on if you understand me.

In addition to this you are opening a 'table' but is there any need to open all the table as it is? what happens when the table gets to thirty thousand rows or so maybe. You would have to open the entire table first before you execute the 'find' command in which case your system will grind to a halt eventually.

The more efficient way of doing this is to only open in a recordset containing only the value you are wishing to retrieve, ie not the entire table and not all columns either, only the one column and the single value is necesary merely to determine if it exists. This way you limit the traffic relevant if your db is on a network.

Try this in your textbox afterupdate and see if it works the same for you. You can remove the msgboxes included for clarity rather than need.

Expand|Select|Wrap|Line Numbers
  1.  
  2.     Dim db As DAO.Database
  3.     Dim Rst As DAO.Recordset
  4.     Set db = CurrentDb()
  5.     Dim mycount As Long
  6.     Set Rst = db.OpenRecordset("SELECT [CID] FROM TblReps WHERE [CID]=" & Me!txtReps, dbOpenSnapshot)
  7.     If (Rst.BOF And Rst.EOF) Then
  8.         MsgBox "No match found on the CID field for " & Me!txtReps, vbInformation, "System Message"
  9.     Else
  10.         Rst.MoveLast
  11.         mycount = Rst.RecordCount
  12.         Select Case mycount
  13.         Case Is = 1
  14.             MsgBox "Found specific value " & mycount & " that matches", vbInformation, "System Message"
  15.         Case Is = 2
  16.             MsgBox "Found " & mycount & " value(s) that match", vbInformation, "System Message"
  17.         End Select
  18.         ''whatever you want to happen here
  19.     End If
  20. :
  21. ExitHere:
  22.     Set db = Nothing
  23.     Rst.Close
  24.     Set Rst = Nothing
  25.  
  26.  
Regards

Jim :)
Dec 15 '07 #7
Jim Doherty
897 Expert 512MB
Jim, I entered the codes but I am getting a syntax error in

Set Rst = db.OpenRecordset("SELECT [CID] FROM TblReps WHERE [CID]=" & Me!txtReps, dbOpenSnapshot)

I can't find the syntax error (error 3075 missing operator in query expression "[CID] =". Tried to change the [CID] with tblReps.CID, same error.
ebo just paste everything that which I gave you into your procedure it will work. I have tested it here upteen times already and it returns exactly what I expect it to, syntactically it is correct. Let me know how you go on.

Jim :)
Dec 15 '07 #8
ebo2006
30
ebo just paste everything that which I gave you into your procedure it will work. I have tested it here upteen times already and it returns exactly what I expect it to, syntactically it is correct. Let me know how you go on.

Jim :)
Jim, Thank you for your patience. I copied your codes into the AfterUpdate event of the Text box. I am not getting in the routines, meaning I don't get the expected messages. If I press <enter> without entering any ID, the cursor goes straight to the next text box, no message. If I enter a 3 chracter ID (existing or not) it gives a "run time error 3061. Too few parameters. Expected 1." error message. Will it help to know that CID is not the primary key, but it should be uunique for the entire file. Here is the AfterUpdate procedure: I don't know what I am missing, since the procedure is tested and running at your end.

Expand|Select|Wrap|Line Numbers
  1.  Private Sub txtReps_AfterUpdate() 
  2. Dim db As DAO.Database
  3. Dim Rst As DAO.Recordset
  4. Set db = CurrentDb()
  5. Dim mycount As Long
  6. Set Rst = db.OpenRecordset("SELECT [CID] FROM TblReps WHERE [CID]='" & Me!txtReps & "'", dbOpenSnapshot)
  7. If (Rst.BOF And Rst.EOF) Then
  8. MsgBox "No match found on the CID field for " & Me!txtReps, vbInformation, "System Message"
  9. Else
  10. Rst.MoveLast
  11. mycount = Rst.RecordCount
  12. Select Case mycount
  13. Case Is = 1
  14. MsgBox "Found specific value " & mycount & " that matches", vbInformation, "System Message"
  15. Case Is = 2
  16. MsgBox "Found " & mycount & " value(s) that match", vbInformation, "System Message"
  17. End Select
  18. ''move cursor to select item from combo box
  19.  
  20. End If
  21. :
  22. ExitHere:
  23. Set db = Nothing
  24. Rst.Close
  25. Set Rst = Nothing
  26.  
  27. End Sub
  28.  
Dec 16 '07 #9
Jim Doherty
897 Expert 512MB
Jim, Thank you for your patience. I copied your codes into the AfterUpdate event of the Text box. I am not getting in the routines, meaning I don't get the expected messages. If I press <enter> without entering any ID, the cursor goes straight to the next text box, no message. If I enter a 3 chracter ID (existing or not) it gives a "run time error 3061. Too few parameters. Expected 1." error message. Will it help to know that CID is not the primary key, but it should be uunique for the entire file. Here is the AfterUpdate procedure: I don't know what I am missing, since the procedure is tested and running at your end.

Expand|Select|Wrap|Line Numbers
  1.  Private Sub txtReps_AfterUpdate() 
  2. Dim db As DAO.Database
  3. Dim Rst As DAO.Recordset
  4. Set db = CurrentDb()
  5. Dim mycount As Long
  6. Set Rst = db.OpenRecordset("SELECT [CID] FROM TblReps WHERE [CID]='" & Me!txtReps & "'", dbOpenSnapshot)
  7. If (Rst.BOF And Rst.EOF) Then
  8. MsgBox "No match found on the CID field for " & Me!txtReps, vbInformation, "System Message"
  9. Else
  10. Rst.MoveLast
  11. mycount = Rst.RecordCount
  12. Select Case mycount
  13. Case Is = 1
  14. MsgBox "Found specific value " & mycount & " that matches", vbInformation, "System Message"
  15. Case Is = 2
  16. MsgBox "Found " & mycount & " value(s) that match", vbInformation, "System Message"
  17. End Select
  18. ''move cursor to select item from combo box
  19.  
  20. End If
  21. :
  22. ExitHere:
  23. Set db = Nothing
  24. Rst.Close
  25. Set Rst = Nothing
  26.  
  27. End Sub
  28.  
Hi ebo :)

I assumed your datatype for the CID field was numeric given your first posting. I do not have your table structure :( so... the reason it will not be working your end is that your datatype will be set to TEXT in your table.

On the basis of my assumption the WHERE clause of the SQL statement will not work, because it will expect single quotes wrapped around the passed value. I have amended it now to wrap with single quotes to reflect the fact that your table data type is text not numeric.

Copy the ENTIRE revised code block above back into your
textbox afterupdate event and let me know how you go on please. You will see that I have bolded the revised line and also a slight formatting error that I saw in it.

Regards

Jim :)
Dec 16 '07 #10
ebo2006
30
Hi ebo :)

I assumed your datatype for the CID field was numeric given your first posting. I do not have your table structure :( so... the reason it will not be working your end is that your datatype will be set to TEXT in your table.

On the basis of my assumption the WHERE clause of the SQL statement will not work, because it will expect single quotes wrapped around the passed value. I have amended it now to wrap with single quotes to reflect the fact that your table data type is text not numeric.

Copy the ENTIRE revised code block above back into your
textbox afterupdate event and let me know how you go on please. You will see that I have bolded the revised line and also a slight formatting error that I saw in it.

Regards

Jim :)
Jim, you're the man. It works. Thank you so much for your patience and time. I am trying to learn access own my own. A little at a time. Your'e help is a big thing. Now I don't have to reinvent the wheel. I've learned so much from this exercise: use of double qoutes and single qoutes, remembering that labels don't recieve focus, etc. Thank you again and to you too, missinglinq.
Dec 16 '07 #11
Jim Doherty
897 Expert 512MB
Jim, you're the man. It works. Thank you so much for your patience and time. I am trying to learn access own my own. A little at a time. Your'e help is a big thing. Now I don't have to reinvent the wheel. I've learned so much from this exercise: use of double qoutes and single qoutes, remembering that labels don't recieve focus, etc. Thank you again and to you too, missinglinq.
You're welcome glad we could help

Jim :)
Dec 16 '07 #12
NeoPa
32,556 Expert Mod 16PB
Jim, you're the man. It works. Thank you so much for your patience and time. I am trying to learn access own my own. A little at a time. Your'e help is a big thing. Now I don't have to reinvent the wheel. I've learned so much from this exercise: use of double qoutes and single qoutes, remembering that labels don't recieve focus, etc. Thank you again and to you too, missinglinq.
Indeed they do a good job Ebo :)
I read this post and thought you might be interested in an article about quotes (Quotes (') and Double-Quotes (") - Where and When to use them). I hope you find it interesting.
Dec 16 '07 #13
tbeers
64
Hi,

I also use a validation for several of my programs and I don't want to be over simplistic or make a short story long, but why would you not use a dlookup or dcount? They can be used in either the before update or after update.

-Tom
Dec 17 '07 #14
NeoPa
32,556 Expert Mod 16PB
I'm not very familiar with the code in this particular thread, but the most common reason why the Domain Aggregate functions (DLookup(); DMax(); DSum(); etc) SHOULD NOT be used in situations such as you describe is because of the performance hit.
Consider that every time one of these functions is run a whole query has to be executed to get the result. If you run the whole query (albeit with a WHERE clause normally) for each record, the work done is exponentially heavier than running the query once and getting the relevant information for all records.

Clearly, it's not always possible to organise things so that they dovetail so nicely, but where possible Domain Aggregate functions should be avoided if a single query can be used in their place.
Dec 17 '07 #15
Jim Doherty
897 Expert 512MB
Hi,

I also use a validation for several of my programs and I don't want to be over simplistic or make a short story long, but why would you not use a dlookup or dcount? They can be used in either the before update or after update.

-Tom
Hi Tom,

You have a fair point MS didnt create them for no reason at all:

The posters thrust was with the recordsetobject method and given the attempt was structured around that I expanded and modified it within that methodology, my perception being that ebo was attempting to understand that way of doing it.

Domain aggregate functions certainly have purpose. For me however, they are exactly that a 'function' another level of intermediary that performs a sequence of logical code based on parameters fed to it within the boundaries of Access. You do not 'see' the routines domain functions rely on to do their bit, whereas here you have precise control over recordset behaviour.

It really boils down to a question of how 'much' control do you perceive 'necessary' am I likely to encounter performance problems if I use this particular command in favour of another.

The same 'Which is best' curiosity is valid for comparisons such as:

DoCmd.RunSql "Update tblBlah SET Myfield=2 where MyField =1"

set against the recordset object method where rows can be traversed and updated either singularly or on batch based on logic contained within an routine or simply .execute the command based on certain conditions.

You will find lots of references for benchmarking and best practice most of the time for me thought its simply a question of choosing which best suits the scope of your system. Domain aggregates may very well work fine for you. but I know some systems I have encountered crawled because of extensive use and efficient substitution rectified matters.


Regards

Jim :)
Dec 17 '07 #16
NeoPa
32,556 Expert Mod 16PB
It occurs to me that I may have been a little unclear. I'm not remotely anti-Domain Aggregate functions. I just understand that they are there for a purpose, and when they are used in place of a JOINed table in a query, that is definitely NOT the purpose.
I am happy to use them quite extensively in my code as and when they're required.
Dec 17 '07 #17

Sign in to post your reply or Sign up for a free account.

Similar topics

21
by: Stefan Richter | last post by:
Hi, after coding for days on stupid form validations - Like: strings (min / max length), numbers(min / max value), money(min / max value), postcodes(min / max value), telefon numbers, email...
2
by: wumingshi | last post by:
Hi, When validating an XML instance, sometimes the schema is not enough to expression the validation rules. Additional validation rules may be expressed in an application-specific way. For...
4
by: Tim Meagher | last post by:
I am trying to use both validation controls and to add submit button attributes, but when I add the button attributes, the javascript fpr the validation controls is no longer created for the page. ...
14
by: Matt | last post by:
I want to know if ASP.NET Web Forms Validation Controls are Server-Side or Client-Side form validation? Since I think each validator control can select either 1) JavaScript based error dialog or 2)...
6
by: Stephen | last post by:
Hi, the validation controls dont work on Netscape or Mozilla and only on Internet Explorer why? How do i correct this problem? Thanks
7
by: Ryan Ternier | last post by:
We're running a site that has required field validation on the login page. It works fine on our development / test machines. However, when I upload this site to our live server i get this error. ...
5
by: Chris | last post by:
Based upon some prevoius postings on what to do for adding a 'add' row to a datagrid I utilize the footer to create the 'add' row. The only issue is that I have it sharing the 'UpDate_Command' and...
4
by: David Colliver | last post by:
Hi all, I am having a slight problem that hopefully, someone can help me fix. I have a form on a page. Many items on the form have validation controls attached. Also on this form are...
2
by: dustbort | last post by:
I recently had a problem where my required field validator stopped working. But, the page still posted back and tried to insert a record into the database without performing server-side validation....
6
by: Jon Paal | last post by:
validation doesn't fire what's missing ????? /////// ---- code -----/////////////////////////// Sub btnSubmit_Click(sender As Object, e As System.Web.UI.ImageClickEventArgs) 'Handles...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.