Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~3K People Reached
Favorite Forums
Favorite Tags
Member Avatar for darkseid

hello. i got a project to do using oracle pl/sql and i want to add a interface (preferably, web) so there aren't just some plain sql scripts. some text boxes, buttons, etc. so it looks nice :D. any suggestions? thank you.

Member Avatar for ackness
0
188
Member Avatar for darkseid

hello, i'm making a random graph generator the coordonates are loaded from a file i've managed to draw the points but can't manage to draw the lines between these points here's the code [CODE] private void button2_Click(object sender, EventArgs e) { pictureBox1.Refresh(); gr = pictureBox1.CreateGraphics(); SolidBrush redBrush = new SolidBrush(Color.Red); …

Member Avatar for ddanbe
0
204
Member Avatar for darkseid

[CODE]FileSystem.CopyFile(fSource, fTarget, UIOption.AllDialogs, UICancelOption.DoNothing); foreach (ListViewItem checkItem in listView_left.Items) { if (checkItem.Text == lItem.Text) { listView_left.Items.Remove(checkItem); } } listView_left.Items.Add((ListViewItem)lItem.Clone()); reload(lItem, fSource);[/CODE] how can i return the UIOption.AllDialogs value so if it's cancel it doesnt do the code after the first line?

Member Avatar for mcriscolo
0
138
Member Avatar for MrCapuchino

Hello, I have a Text file containing the english dictionary, it is 237,000 words long and in each line of the text file there is a word. What I want to do is obtain a word from the textfile randomly. I don't think reading the text file to end and …

Member Avatar for MrCapuchino
0
2K
Member Avatar for darkseid

hi. i'm trying to convert a value from an array to a value from another array based on the index ex: string[] abc = {"a", "b", "c"}; string[] xyz = {"1", "2", "3"}; so let's say a have a text "aabbcc" .. and where the items from string abc are …

Member Avatar for darkseid
0
147
Member Avatar for darkseid

[code]#include <iostream> #include <string.h> #include <fstream> #include "class.h" using namespace std; translator a[100]; int d,b,c; int n; int m; int x; int z; void translator::add() { ofstream iFile("singular.bin", ios::binary | ios::app); ofstream dFile("definition.bin", ios::binary | ios::app); ofstream pFile("plural.bin", ios::binary | ios::app); ofstream aFile("articol.bin", ios::binary | ios::app); ifstream gFile("nr.bin", ios::binary); gFile …

Member Avatar for nbaztec
0
109
Member Avatar for darkseid

[code]Public Sub PasteFile() For Each Me.lItem In leftListView.Items If lItem.Selected = True Then If File.Exists(lItem.Text) Then lItem.ToString() fSource = leftCBselect.Text & lItem.Text Me.fTarget = rightCBselect.Text & lItem.Text FileCopy(fSource, Me.fTarget) rightListView.Items.Add(lItem.Clone) 'MsgBox("You have copied " & lItem.Text & " succesfully!", MsgBoxStyle.Information, "Information") ElseIf Directory.Exists(lItem.Text) Then fSource = leftCBselect.Text & lItem.Text Me.fTarget …

Member Avatar for farooqaaa
0
211