gr8coaster329
Posts
-
Custom Wizards? -
VB Integration errorreinstalling visual basic express edition solved my problem. thanks anyways for the help - Kyle
-
VB Integration errori did not enter any code for it. after adding the database to the project i tried to add a table to it by right clicking on tables under the database file in the database explorer window and selecting add new table and i get that error. - Kyle
-
VB Integration errori was not sure which forum to post this under but i hope someone can help me out. i am using microsoft visual basic express edition with sql server express edition. when the programs were first installed they worked fine, but recently i have been getting the error message: "Object reference is not set to an instance of an object", when i try to add anything to a sql database. i can create the database file but when i try to add a table or anything else to it i get that error. i tried uninstalling and reinstalling sql server express but it did not work. does anyone know how to fix this? any help is greatly appreciated. Thank you, - Kyle
-
disable historyhow can i disable the history recording feature of a web browser control? - Kyle
-
hardware monitori could not find any helpful topics for this problem on that web site. if you could point me to the one you found it would help me out. thank you - Kyle
-
hardware monitorcan anyone help me find how to write a program to read input from hardware temperature sensors and display it. - Kyle
-
directX?can anyone help me to find a good, recent directx tutorial? i am using visual studio express edition, if that makes a difference. i have looked for a little while without luck. any help provided would be greatly appreciated. - Kyle
-
DirectX problems -
DirectX problemssuchuhui wrote:
try to change the compiling version from the current into another , let see if it will work
how do i do this? - Kyle
-
DirectX problemsi have been trying to learn how to do directx programming in c++ but have not found any source code from tutorials that will compile. i am using visual studio express edition. when i try to compile the code that came with the directx 9 sdk it gives me errors for the include file 'winnt.h' such as: winnt.h(222) : error C2146: syntax error : missing ';' before identifier 'PVOID64' winnt.h(222) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int winnt.h(5940) : error C2146: syntax error : missing ';' before identifier 'Buffer' winnt.h(5940) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int winnt.h(5940) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int what is causing this and how can i fix it? the only include file that i have is d3d9.h. also if anyone can point me towards a good direct3d beginners tutorial it would be very helpful. thank you in advance for any help you can offer - Kyle
-
Limit RAM usagewhat is the best or easiest way to lower the amount of memory that a program uses? - Kyle
-
Completly close programthe command 'Application.Exit()' will completly close the program - Kyle
-
internet acceleratordoes anyone how internet accelerators work, if they do, and what it would take to make a simple program to boost internet speed? I have dsl and have seen a lot of programs that claim to speed internet speed and thought i would try to make one of my own (mostly for fun). any help, including websites tutorial or ideas would be greatly appreciated. thank you in advance for the help and happy new year! - Kyle
-
internet accelerator??does anyone how internet accelerators work, if they do, and what it would take to make a simple program to boost internet speed? I have dsl and have seen a lot of programs that claim to speed internet speed and thought i would try to make one of my own (mostly for fun). any help, includeing websites tutorial or ideas would be greatly appreciated. thank you in advance for the help and happy new year! - Kyle
-
Train free @MicrosoftThank you for the link!! - Kyle
-
a few different problemsi have microsoft visual c++ 2005 express edition beta 2 and there have not been able to find a way to build the projects to run on another computer. is this just a part that is not included in this version or have i just not been able to find it yet?? also i have used code samples from microsoft help (do not know why they call it help it hardly ever does) for their speech sdk and it had several things that gave me errors when i tried to compile it. such as "HRESULT undeclared identifier" and "cpObjectToken undeclared identifier". is there an include file that i need and the help did not tell me about or what is the problem?? the site that i got the code from is http://msdn.microsoft.com/library/default.asp?url=/library/en-us/SAPI51sr/html/Welcome.asp[^] any help with speech recognition, with microsoft speech sdk or any other speech recognition, itself would also be of great help because i have not been able to figure out any of it yet any help is greatly appreciated - Kyle -- modified at 18:02 Saturday 5th November, 2005
-
Multiple Forms in MS VC++Tom Sapp wrote:
AboutDialog::Show(); AboutDialog myDialog = new AboutDialog(); myDialog.Show();
is the name of the form you created AboutDialog? if not replace AboutDialog with the name of your form, the way that i do it is:
FormName^ myForm = gcnew FormName(); myForm->ShowDialog();
the "myForm" part can be replace with anything that you want it to be just make sure that it is the same in both lines of the code. also make sure that you include the header file of the form (#include "fileName.h") at the top of the file. i hope i worded this right, and that it helps you - Kyle -
xml in tree view controlAskQuestion wrote:
look this site http://www.codeproject.com/atl/atl\_persistxml.asp\[^\]
that is not vc++ is it?? - Kyle
-
xml in tree view controli am trying to load the data from an xml document into a treeview control. i know how to write the xml document but do not know how to load all of the data into tree control. any help would be greatly appreciated. - Kyle