- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
34 Posted Topics
i trying to make subliminal message program so i mean i will write "I am Happy" then i should show this message for 1 frame per second. how can i use 1 frame or 1 frame time. i cant use timer couse i can see my message even i set … | |
i'm tring to make a diary. i need nice background. user could edit text anytime if he/she wants. but i cant do that, because i cant make transparent background on textbox or i cant make editable label. is there any way to do transparent background on textbox? how can i … | |
Re: u should use this code before adding any items ComboBox1.Items.Clear() | |
hello, i use a webbrowser for browse a local path like "C:\path" so i can see my files in webbrowser but when i select them i need to use their filename on my project i searched on internet but i cant find usefull thing...all about web browsing is there any … | |
i need to filter my table between 2 dates but it makes wrong filtering really i dont understand why. but it might be my wrong codes here is my codes... what should i do? Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim da As New … | |
Hello, I have 2 datatable, first table for customers personal information and second table for customers areas of interest. this two tables have same ID for same customers. So, when i want to check my some group of customers(like who intrests on sports stuffs) i need filter my first table … | |
i wanna search items like MS windows search for example if i wanna search mp4 files i should write "*.mp4" its enough my searching but if i ll use filter function i cant do this on datagridview couse when i want to search something i need to know full name … | |
i did a program in xp and when i m trying to open this program in win7 it gives an error i think i should convert this program to win7 but i dont know how to do is there any way to do it? thx for answers | |
hi, i'm trying to do some appointment book so i decided to use MonthCalendar control and date changed event for choose the date i tried dataset.table.rows.find() function on other tables which have int primary key and it works its finds my row/s i need but when i tried this func. … | |
Re: [CODE] Dim str As String = "abcd" Dim a As String = Microsoft.VisualBasic.Right(str, 3) '' its mean a = "bcd" a &= Microsoft.VisualBasic.Left(str, 1) '' its mean "bcd" & "a" MsgBox(a) [/CODE] i hope it ll help :) if u have question u can ask | |
I want to open some files using my program. and I decided to use a shell command. but when i use shell it gives "file not found error" for example Shell("C:\Documents and Settings\ÖnerYavuz\Desktop\aa.txt") ==> it gives error but Shell("C:\Documents and Settings\ÖnerYavuz\Desktop\warkey.exe")==> its work and i thought it opens only exes. … | |
hi i have a program and i need to take some images and add some points lines or something with layer system and i wanna save my picture and layers couse i can delete my lines or points. so i have some questions for my program thx for read and … | |
i have a form and i need to use mouse scroll for moving my panel. so i need to create event ( :) ok ok im not sure ) and No matter where the selected i need to use this event when i use mousescroll :) I hope i was … | |
i need to add explanation to my file i have a little filesystem in my program (so i dont want to use database for files) how can i add and call explanation to myfile i have some ideas but thats last resort couse its not not efficient and hard to … | |
i need to use copy clipboard for copying files for example i ll copy some file then i need to save this somewhere in my program how can i do that? i searched little but i just can find copying strings. :S I need more than that :) Thx for … | |
i have a reminder section in program and I want to see some icon when 2 days before to remind so i need to sort dates and i need to measure the time interval :) how can i do this thx for Answers :) | |
did someone know Ms-Dos's dir command i need to take all contets of any folder for using my praggram how can i do that is any one knows? thx for replys | |
i searched a bit but i cant find something useful. i need to take my files to filestream (i can do this with file paths) and i wanna save this files to somewhere else on my program. Is it possible that with the using FileStream? THX for Replys ^^ | |
Re: yea its possible and i dont know to do this but ill search for us couse i need to manuplate copyclipboard | |
i have 1 old and 1 new pc and i want to use old pcs processor :D (it need for my experiments :icon_evil: lol just joking ) i know i dont need this pcs power but i dont want to junk my other pc is there any way to do … | |
Re: try panel1.visible = false , true :D and be careful mybe panel2 panel is member of panel1 panel or its opposite u should check this look them locations. for example panel1 and panel 2 is same place panel1 location is 10; 10 and if panel2 location is 0; 0 its … | |
i have a control dll and i use this control in my project then i change this controls codes after i do it . appears some error on this lines in form1[designer] [ICODE] Me.Dentisyon1 = New WindowsControlLibrary1.dentisyon Friend WithEvents Dentisyon1 As WindowsControlLibrary1.dentisyon [/ICODE] what should i do? thx for answers | |
i for example i save ppt in OLEDB OLE Object :-/ and i need to open this powerpoint file in my program how can i do that :| thx for answers :| | |
i have a table and oleobj column in this table. i save some files to oleobj. and i need to open them how i can do that. for example i save ppt in oleobj and ineed to open this powerpoint file how can i do .. 2nd question. can i … | |
for example i have 2000 picture box and i have a array the lenght of 2000. and my picturebox names is like pb1,pb2 .... pb1999, pb2000 so if my arrays 1393th item is not null i want to change 1393th pictureboxs color. is there any easy way? i know i … | |
i have some usercontrols in a dll and i need to use them on my other project i try to add reference method but its useless... icant see my controls on toolbox what should i do ? | |
Re: [CODE] dim str as string = "a_b_c_d" dim justc as string justc = str.split("_")(2) [/CODE] i hope this ll help | |
i have a problem when i want to use my 2nd table i see "there is no row at position 0" and when i look my projects folder i see my database's backup file and i was opened it then i cant see my 2.nd table in backup file. what … | |
[CODE] Public Sub imageload(ByVal index As Integer, ByRef imagedescription() As String) Dim da As New OleDbDataAdapter("Select Foto From Images where Photoindex = " & index & ";", Form1.baglanti) Dim dt As New DataTable Dim ms As New MemoryStream da.Fill(dt) If dt.Rows.Count > 0 Then Dim arrimage() As Byte = dt.Rows(0).Item(0) … | |
Re: u need to ID Column and when u want to see next register You choose a next ID and hence the new record will be selected :) i hope you know how to select if u dont know just write here :) | |
Re: :D dude dont u use functions the project to the need to simplify with func. but then some1 reads the this long codes without getting bored and they can help u. but just w8 ill trying to understand 156line :D i think u r new in software world :) | |
Re: hmm maybe u can use [CODE]me.rwindex = e.rowindex[/CODE] try this it must be your answer couse i was try. | |
i was trying to learn unity and i wanna write c# scripts but when i write unity functions its color turns to cyan and when i move mouse on this cyan words it writes in tooltip for example (class UnityEngine.transform) the vs2008 recognize but cant use :D i used vb … | |
Now i have some images and i have a database (MS Access) i need to convert all images to !one byte array!(couse i have 1 column for images) and i save this array. Then when i need a picture i should take some pic on this byte array. umm i … |
The End.