Posts by Josias Matheus • 111 points
7 posts
-
2
votes1
answer69
viewsQ: How to align elements side by side?
How can I align the div’s so that the white part is filled with the elements below it (5,6,7)? main { width: 200px; display: flex; flex-wrap: wrap; text-align: center; line-height: 50px; font-size:…
cssasked Josias Matheus 111 -
0
votes1
answer42
viewsQ: How to make a slider?
How can I make the squares stay in one line, generating one scroll horizontal, where I can navigate to the other blocks by sliding left or right. .box{ width: 100px; height: 100px; display:…
-
1
votes0
answers31
viewsQ: How to separate a string when a given word is started?
String: string str = "1234 5678 9012 ID: 123456789" How can I separate the string when the word "ID" is found? Ex: string[] formatted = {"1234 5678 9012", "ID: 123456789"}…
c#asked Josias Matheus 111 -
-1
votes1
answer31
viewsQ: C# Spire.Xls set list of workbooks
How can I create a list of workbooks Example of workbooks created to add the list: private static void Merge() { Workbook workbook = new Workbook(); workbook.LoadFromFile(@"merge1.xlsx"); Workbook…
-
2
votes1
answer177
viewsQ: How to put a char variable in a string through the keys { }?
I’m doing an old-fashioned game, where there’s a function that prints it, and another that contains the 9 playable positions, I simplified the code so it doesn’t get too big and I just put a…
-
2
votes0
answers57
viewsQ: How to select options in java console application?
There is the possibility for the user to select menu options by navigating with the arrow keys up and down, then pressing enter? public static void menu() { print("=====MENU====="); print("|Novo…
-
-1
votes1
answer79
viewsQ: How to close an Excel application in C #
I have this c# function that converts an excel file into another excel format, the problem is that when the application runs it does not end with the _app quit function.(); The excel application is…