Programming Forums
User Name Password Register
 

RSS Feed
FORUM INDEX | TODAY'S POSTS | UNANSWERED THREADS | ADVANCED SEARCH

Showing results 1 to 40 of 112
Search took 0.02 seconds; generated 3 minute(s) ago.
Search: Posts Made By: cloud-
Forum: C++ Dec 30th, 2008, 8:51 PM
Replies: 11
Views: 425
Posted By cloud-
Re: A C++ program that could modify its own code.

something similar, I used this a while back for C# and I had the link saved..
http://www.csharpfriends.com/Articles/getArticle.aspx?articleID=118
Forum: C++ May 29th, 2008, 8:20 PM
Replies: 3
Views: 361
Posted By cloud-
Re: Sending keys(presses) in Windows

yeah I already had focus and the window handle i didn't post the whole code cause it was quite big, anyway I will look up SendMessage and see if that helps, thanks ^^
Forum: C++ May 29th, 2008, 2:44 PM
Replies: 3
Views: 361
Posted By cloud-
Sending keys(presses) in Windows

I'm working on a small program that will send keys to a program.. Well whatever is active atm on a mouseclick.. But lets say the program I'm sending to has a function that is triggered when space " "...
Forum: Other Programming Languages Oct 29th, 2007, 7:51 PM
Replies: 13
Views: 780
Posted By cloud-
Re: Someone with a good graphics card...?

to join the video files together they must be the same size (frame), fps, etc, if you are using vdub, as in the guide posted previously, so it's likely that the videos differ somehow? I didn't check...
Forum: Software Design and Algorithms Jun 21st, 2007, 6:51 AM
Replies: 0
Views: 94
Posted By cloud-
Per pixel text distortion

This question is probably more about basic maths but it's still a design/method to distort text/images in a certain way so I think it belongs here, anyway..

First off the effect I'm trying to create...
Forum: C++ May 28th, 2007, 8:44 PM
Replies: 13
Views: 605
Posted By cloud-
it's working here, anyway heres a link to the...

it's working here, anyway heres a link to the files on sf -> http://sourceforge.net/project/showfiles.php?group_id=95606&package_id=101971&release_id=495439 you can change mirrors if one doesn't work...
Forum: C May 26th, 2007, 5:02 AM
Replies: 8
Views: 357
Posted By cloud-
if you were looking to start with c/c++ an easy...

if you were looking to start with c/c++ an easy place to start would be with an IDE, i use Dev C++ -> http://www.bloodshed.net/devcpp.html
though it can't harm to learn how to use the compiler...
Forum: C# May 24th, 2007, 6:05 AM
Replies: 6
Views: 201
Posted By cloud-
if by prettier you mean the XP themed look here,...

if by prettier you mean the XP themed look here, it shows how to make and embed a manifest file in your application -> http://msdn2.microsoft.com/en-us/library/aa289524(VS.71).aspx
otherwise you...
Forum: C# May 20th, 2007, 7:55 AM
Replies: 3
Views: 116
Posted By cloud-
the Sum() function or any for that matter needs...

the Sum() function or any for that matter needs to be in the Program class or a new class/struct etc. ie...


using System;
class Program
{

// ..... main block { }

static int Sum()
Forum: C++ May 20th, 2007, 6:03 AM
Replies: 13
Views: 605
Posted By cloud-
Hmm, there is wxDev C++ which is based on the Dev...

Hmm, there is wxDev C++ which is based on the Dev C++ IDE it uses wxWidgets and allows you to visually design windows, plus it's free and maybe cross platform? The only problem I've had with it is...
Forum: C# May 19th, 2007, 6:39 AM
Replies: 8
Views: 239
Posted By cloud-
textBox1.Text = string;

textBox1.Text = string;
Forum: C++ Apr 25th, 2007, 2:49 PM
Replies: 0
Views: 101
Posted By cloud-
String/Delimiter Parsing Function Help

Hi again.. long time no see :P
Ehm.. anyway I've been having some problems with creating a parsing function, I've come to a point where I just don't understand the result thats being given back.....
Forum: C# Mar 11th, 2007, 9:43 AM
Replies: 2
Views: 289
Posted By cloud-
The second link was very useful, thanks! I've got...

The second link was very useful, thanks! I've got the hang of it now.. just need to figure how to make the dll (script in this case) be able to call the exe's functions etc. Maybe I'll just make a...
Forum: C# Mar 10th, 2007, 2:17 PM
Replies: 2
Views: 289
Posted By cloud-
C# as a script engine.. System.CodeDom.Compiler

I've been using C# to automate some file editing for myself.. I've been editing my source code each time I need something different, I now want to maybe make my program public and I really need a...
Forum: C# Nov 10th, 2006, 11:51 AM
Replies: 4
Views: 428
Posted By cloud-
That's so much better! Thanks!~ :D I ran in to...

That's so much better! Thanks!~ :D
I ran in to trouble with my method, changing the child's properties didn't work as planned, this has fixed all my troubles. ^^
Forum: C# Oct 24th, 2006, 7:30 PM
Replies: 4
Views: 428
Posted By cloud-
Sorted~ If someone ever needs to know.. Calling...

Sorted~

If someone ever needs to know..

Calling parents functions from child..


ParentForm SomeName = (ParentForm)MdiParent;
SomeName.Function();
Forum: C# Oct 21st, 2006, 7:34 AM
Replies: 5
Views: 271
Posted By cloud-
Lol! My bad <_< the size should be 48x48... dunno...

Lol! My bad <_< the size should be 48x48... dunno why I thought 32x32. D:
Forum: C# Oct 20th, 2006, 6:32 PM
Replies: 5
Views: 271
Posted By cloud-
Hmm.. works.. but.. the quality is REALLY bad....

Hmm.. works.. but.. the quality is REALLY bad. <_< Anyway to make that better? :/ I've seen hundreds of programs with nice .ico's.. It's like my 32x32 icon has been resized to 16x16, then stretched...
Forum: C# Oct 20th, 2006, 12:03 PM
Replies: 4
Views: 428
Posted By cloud-
Show or hiding forms/modifying control properties ..from different a form..

Hi.
I'm having problems with accessing forms and their properties/functions from different forms, I have a menu (ToolStrip) which has a drop down list for the forms shown, so checking/unchecking the...
Forum: C# Nov 26th, 2005, 12:12 PM
Replies: 2
Views: 246
Posted By cloud-
nvm solved :) just used a normal string and split.

nvm solved :)
just used a normal string and split.
Forum: C# Nov 26th, 2005, 8:20 AM
Replies: 2
Views: 246
Posted By cloud-
array function, error in arrays.

Hey, I'm having trouble with a function, I want it to return all strings that have "Style: " at the beggining, they should return in an array. At first I was having errors because the array wasn't...
Forum: Visual Basic Oct 29th, 2005, 3:11 PM
Replies: 13
Views: 710
Posted By cloud-
hehe well dont really want to use that forms...

hehe well dont really want to use that forms stuff... lol
it would be awesome if only i could make the unicode display properly in the textbox XD.
and vb.net has better support for unicode? maybe its...
Forum: Visual Basic Oct 29th, 2005, 1:56 PM
Replies: 13
Views: 710
Posted By cloud-
Cool hey i couldnt figure out the put and get ^^;; i...

hey i couldnt figure out the put and get ^^;; i searched alot but couldnt get that working :(
could i have an example? sorry
but while looking i found this:

Visual Basic is based internally on the...
Forum: Visual Basic Oct 24th, 2005, 4:58 PM
Replies: 13
Views: 710
Posted By cloud-
I see, thanks didnt know that (about the...

I see, thanks didnt know that (about the quotes).
i tried the bite and converting but i can a type mismatch with the line input, how else can i get the text file line to the byte string or fix...
Forum: Visual Basic Oct 23rd, 2005, 5:59 PM
Replies: 13
Views: 710
Posted By cloud-
ok now that makes me think that what im doing is...

ok now that makes me think that what im doing is wrong lol.
i didnt add the binary to a byte array, or convert to unicode, i just did a string variable and added to the textbox, but it outputted to a...
Forum: Coder's Corner Lounge Oct 23rd, 2005, 12:18 PM
Replies: 1,430
Views: 26,631
Posted By cloud-
Tomomi Kahala - I Believe

Tomomi Kahala - I Believe
Forum: Visual Basic Oct 23rd, 2005, 12:06 PM
Replies: 13
Views: 710
Posted By cloud-
thankyou very much rory!!!!!!!! ^_^ i got it...

thankyou very much rory!!!!!!!! ^_^
i got it working by reading in binany. :D
now i have another question...XD
i have 2 kinds of strings in my program a japanese one and an english one.
the 2 will...
Forum: Visual Basic Sep 17th, 2005, 3:01 PM
Replies: 13
Views: 710
Posted By cloud-
Hi, I can't seem to get it to work just by...

Hi, I can't seem to get it to work just by opening the text with unicode in and adding it to a textbox. Here is the code i tried :/

Private Sub Label2_Click()
On Error GoTo...
Forum: Visual Basic Aug 29th, 2005, 8:41 AM
Replies: 13
Views: 710
Posted By cloud-
thanks ill try :D

thanks ill try :D
Forum: Visual Basic Aug 27th, 2005, 12:47 PM
Replies: 13
Views: 710
Posted By cloud-
unicode

Hey

I need to find the width/height for japenese text so I was wondering how can I make my text boxes work for unicode characters. I searched a found something about "Microsoft Forms 2.0 Library" or...
Forum: Visual Basic Aug 25th, 2005, 9:36 AM
Replies: 11
Views: 563
Posted By cloud-
okay :) heres the frmDocument...

okay :)
heres the frmDocument code..
controls:

TV1 = treeview control
cd1 = common dialog control
label1
label2
command1
command2
Forum: Visual Basic Aug 19th, 2005, 6:24 AM
Replies: 11
Views: 563
Posted By cloud-
BrianN: sorry i didn't see your code before. I...

BrianN: sorry i didn't see your code before. I still go the error message by using that :(.

Rory: I tried that and when i click on the form menu it just makkes the form visible, and always stays...
Forum: Visual Basic Aug 11th, 2005, 5:39 PM
Replies: 11
Views: 563
Posted By cloud-
hey thanks rory but could you possibly give me a...

hey thanks rory but could you possibly give me a short example of how i can get something like you mentioned before, i don't quite understand how i can do that. i tryed making a function in a...
Forum: Visual Basic Aug 11th, 2005, 3:28 PM
Replies: 11
Views: 563
Posted By cloud-
hi the error only happens when i try to change...

hi the error only happens when i try to change the main forms menu check status with one of its child forms events (unload)

and heres pictures to explain what i...
Forum: Visual Basic Aug 10th, 2005, 3:02 PM
Replies: 11
Views: 563
Posted By cloud-
MDI forms - menu trouble

well,.. I have an mdi form with a few menus...one of these menus happenes to be what forms/windows are in view. When the child forms are unloaded they obviously need to be unchecked from the view,...
Forum: Visual Basic Jul 28th, 2005, 1:47 PM
Replies: 6
Views: 407
Posted By cloud-
nope, doesnt have a timer. it doesnt flicker all...

nope, doesnt have a timer. it doesnt flicker all the time just when the form is being resized to lower than 1000, its not really a flicker just the arrow keeps dragging and u can see the window being...
Forum: Visual Basic Jul 27th, 2005, 1:02 PM
Replies: 6
Views: 407
Posted By cloud-
i did it in the resize event, but the flickering...

i did it in the resize event, but the flickering is still there o.o
any ideas?
thanks :D
Forum: Visual Basic Jul 27th, 2005, 11:01 AM
Replies: 6
Views: 407
Posted By cloud-
woo that works! thanks ^^ any way to stop the...

woo that works!
thanks ^^
any way to stop the flickering?
Forum: Visual Basic Jul 19th, 2005, 5:36 AM
Replies: 6
Views: 407
Posted By cloud-
Resizing windows problem.

Hi, I want to know how I can stop the window from being resized when the window gets too small, I don't want the window to get any smaller than the height of 1000. I tried detecting when it was 1000...
Forum: Visual Basic Jun 3rd, 2005, 3:54 PM
Replies: 7
Views: 401
Posted By cloud-
thanks rory couldnt get it working though...

thanks rory
couldnt get it working though :P
maybe ill switch to vb.net sounds alot better ^^
Showing results 1 to 40 of 112

 
Forum Jump



DaniWeb IT Discussion Community
All times are GMT -5. The time now is 2:48 AM.

Powered by vBulletin® Version 3.7.0, Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Copyright ©2007 DaniWeb® LLC