No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
59 Posted Topics
Re: go to print set up >advance then set your sheets length | |
Re: youll make an inventory system using VB? just a comment, its better if you used ASP sir | |
Re: Private Sub Command1_Click() Shell "explorer.exe C:", vbMaximizedFocus End Sub If you want to open some other folder instead of "C:" just delete "C:" and write the path to the folder you want to open. Hope it helps here other ways to open msoffice for additional information just edit the path … | |
Re: reason is, there is really a prob on using Package and Development wizard it have some issue of with crystal report 8.5 u need to change.edit something with an .DLL in the system32 folder,(if what i remember is right) i would like to suggest you to use "Setup-Factory" its a … | |
Re: ei bro, i suggest u use Crystal Report than the data environment, atlist Crystal Report 8.5 will be nice , it easy to use and connect, esp on your prob | |
Re: i have a quiz project that ive finish, and its a multiple choice using radio buttons.. interested?? il post my sample here if nobody have a negative reaction cheer's | |
[QUOTE]this code is from another form before i get to the formload below xNum = 2 adminlec.show unload me [/QUOTE] [CODE]Private Sub Form_Load() lblLECNUM.Caption = xNUM '<----this is a public dim that i wrote on a module as integer Set cnn = New ADODB.connection Set rs = New ADODB.Recordset cnn.ConnectionString … | |
can any1 please help me on a step by step coding on how i can do this? i can understands the codes i see when i googled it pls help me i really need to know this within 24hrs.. also if any1 have a sample VB project can u pls … | |
hi im new to VB.net can you guys teach me about VB.net? what i need to learn first ? i have knowledge of VB6 , is the code vb.net same as vb6? thx in advance | |
Re: helo there, your connecting ur report right? hope this will help u 1st: go to components and check the crystal report control 2nd: put a command button and paste this codes [QUOTE]With CrystalReport1 Screen.MousePointer = vbHourglass .WindowBorderStyle = crptFixedSingle .WindowState = crptMaximized .WindowTitle = "Users" .ReportFileName = App.Path & "\Reports\[B]your … | |
can any1 here pls help me on how to make a data tree? i dont know where to start.. tried to google.. but i cant understand it pls help me with the basics.. and how to connect on a database thx 2 in advance.. | |
Re: try this look into ur Components in VB find "Crystal Report Control" check it then in your command button put this codes [QUOTE] With CrystalReport1 Screen.MousePointer = vbHourglass .WindowBorderStyle = crptFixedSingle .WindowState = crptMaximized .WindowTitle = "Users" .ReportFileName = App.Path & "\FOLDERNAME\YOURREPORTNAME.rpt" .WindowShowRefreshBtn = True .DiscardSavedData = False .Destination = … | |
Re: try this[QUOTE] SQLname = "Select name from Customer where telephone=' " & nameoftxtbox & "' "[/QUOTE] put this on your rs.open even or like this [QUOTE]rs.source = "Select name from Customer where telephone=' " & nameoftxtbox & "' " rs.activeconnection = CON rs.open [/QUOTE] your SQLname is a query thats … | |
Re: go to control panel/administrative tool/ data sources once you run the data sources click SYSTEM DSN click add and locate the database of your system name it EX. "MYDSN" on your VB code just do something like this conn.open "DSN=MYDSN" now all the copies of ur .exe will point to … | |
Re: can you explain further what you want to do... | |
hi im new to this thread, i wish to learn using PHP but i dont know where to start at can u guys tell me a step by step on how to use php? thx in advance | |
Re: yes it is possible, just design your sheet the you want it to be, put lines to separate them its much easier to make it using "crystal report" u might get prob when using the data env, of VB | |
Re: do you mean to preview 4 reports in a single sheet? | |
Re: try to learn how to make connection, from 1 textbox to another a calculator is a good 1 like jx_man have said i would suggest to make a simple addition 1st 3textbox and 1 command button and the event will be on the command button textbox1 + textbox2 = textbox3 | |
Re: Hi there , try this dim rs as new adodb.recordset set rs = new adodb.recordset rs.locktype = pessistimistic ' allow you to change recors | |
Re: my idea is , to declare 9 dims ex. dim UL 'upperleft dim T 'top dim UR 'upper right and so on, after doing it, put 9 txtbox declare their name as [CODE]ex. txtUL 'for dim UL txtT 'for dim T txtUR 'for dim UR and so on, [/CODE] this … | |
Re: hi there, you should do an ADODB connection to a database for the "how to generate random question" here's my code: (its from my thesis , but ur free to use it :) ) [CODE]Set conn = New ADODB.connection prov = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & App.Path & "\MAINDB2.mdb" & ";Persist Security … | |
Re: only and idea, try using a database connection, save the URL of the movieclip when stored, then do a condition that when, a single mclips has been click, load pic where URL is = 'to the played mclip' | |
im making an installation form in VB -i already made the installer/setup for my project using another installer maker im having a prob on the syntax, i just googled this and try it but have a error Dim TaskID As Long TaskID = Shell(App.Path \ CAIsetup.exe, vbNormalFocus) my only guess … | |
hi every1, another prob cnt solve even after googling how can i load a notepad file or txt file on VB, what i mean is loading the notepad.exe with the file inside example i click the cmdLoad then it will open the file (on notepad) the file i want to … | |
Re: hera a sample code for saving [QUOTE]rec.Open (esql1), conn, adOpenDynamic, adLockOptimistic rec!StudentNumber = txtSTUDID.Text [/QUOTE] rec is your dim on adodb.recordset conn if for dim on adodb.connection rec!StudentNumber = txtSTUDID.Text StudentNumber = the field name txtSTUDID.text = saving the text inside the textbox if this is not your prob then … | |
i have a problem making the code for this logic i have 5textbox ,1 label and a command button on a form and need to do this: [QUOTE]if the value of the 1st textbox is greater than the 2nd,3rd,4th,5th then label1.caption = to the value of the 1st text box … | |
my prof told me to make my thesis system encrypt all that i save on it (on the add/save part of a file maintenance) ... thats all he said, ive seen something like this, but cnt remember... can any1 help me on making a program that when ever i save … |
The End.